Difference between revisions of "Bug triage/2007-10-29"

From Second Life Wiki
Jump to navigation Jump to search
(agenda for now....feel free to edit/replace, but please do so by 2:45pm)
Line 29: Line 29:
* {{jira|VWR-582}} - 0 votes - Sims that meet at a corner briefly show up after teleport from one to another - [[User:Daedalus Young|Daedalus Young]]
* {{jira|VWR-582}} - 0 votes - Sims that meet at a corner briefly show up after teleport from one to another - [[User:Daedalus Young|Daedalus Young]]
* {{jira|VWR-583}} - 1 votes - Texture upload preview no longer displays alpha-only targas properly on body part selections (since 1.15) - [[User:arkesh baral|arkesh baral]]
* {{jira|VWR-583}} - 1 votes - Texture upload preview no longer displays alpha-only targas properly on body part selections (since 1.15) - [[User:arkesh baral|arkesh baral]]
* {{jira|VWR-586}} - 0 votes - crash in LLRenderPass::pushBatch - [[User:dan linden|dan linden]]
* {{jira|VWR-588}} - 0 votes - crash in LLInventoryItem::setCreationDate - [[User:dan linden|dan linden]]
* {{jira|VWR-589}} - 0 votes - crash in LLFace::setSize - [[User:dan linden|dan linden]]
* {{jira|VWR-590}} - 0 votes - crash in LLWindowWin32::close - [[User:dan linden|dan linden]]
* {{jira|VWR-591}} - 0 votes - crash in LLVLComposition::generateHeights - [[User:dan linden|dan linden]]
* {{jira|VWR-592}} - 0 votes - crash in LLTemplateMessageBuilder::addString - [[User:dan linden|dan linden]]
* {{jira|VWR-594}} - 1 votes - crash in LLError::crashAndLoop - [[User:dan linden|dan linden]]
* {{jira|VWR-595}} - 0 votes - crash in LLViewBorder::drawOnePixelLines - [[User:dan linden|dan linden]]
* {{jira|VWR-596}} - 0 votes - crash in LLTextureFetchWorker::clearPackets - [[User:dan linden|dan linden]]
* {{jira|VWR-600}} - 1 votes - Intermittent Mute - [[User:Jimmi Stapleton|Jimmi Stapleton]]
* {{jira|VWR-600}} - 1 votes - Intermittent Mute - [[User:Jimmi Stapleton|Jimmi Stapleton]]
* {{jira|VWR-601}} - 1 votes - High pitched "create prim" and "collision" sounds - [[User:Simil Miles|Simil Miles]]
* {{jira|VWR-601}} - 1 votes - High pitched "create prim" and "collision" sounds - [[User:Simil Miles|Simil Miles]]
Line 44: Line 35:
* {{jira|SVC-156}} - 0 votes - Groups Listing Last Login In Reverse Chronological Order - [[User:Dirk Talamasca|Dirk Talamasca]]
* {{jira|SVC-156}} - 0 votes - Groups Listing Last Login In Reverse Chronological Order - [[User:Dirk Talamasca|Dirk Talamasca]]
* {{jira|WEB-102}} - 1 votes - Cannot post events with unicode characters in event description - [[User:Leila Carroll|Leila Carroll]]
* {{jira|WEB-102}} - 1 votes - Cannot post events with unicode characters in event description - [[User:Leila Carroll|Leila Carroll]]
* {{jira|VWR-615}} - 0 votes - crash in LLViewerImageList::updateImagesFetchTextures: out of memory - [[User:dan linden|dan linden]]
* {{jira|VWR-617}} - 0 votes - crash in LLPipeline::updateMove() - [[User:dan linden|dan linden]]
* {{jira|VWR-619}} - 0 votes - crash in LLFace::setTEOffset - [[User:dan linden|dan linden]]
* {{jira|VWR-620}} - 0 votes - crash in LLImageJ2C::updateData - [[User:dan linden|dan linden]]
* {{jira|VWR-623}} - 1 votes - Ending a script in a comment crashes the viewer - [[User:Gigs Taggart|Gigs Taggart]]
* {{jira|VWR-623}} - 1 votes - Ending a script in a comment crashes the viewer - [[User:Gigs Taggart|Gigs Taggart]]
* {{jira|MISC-182}} - 1 votes - win_crash_logger compile error - [[User:yukiko omegamu|yukiko omegamu]]
* {{jira|MISC-182}} - 1 votes - win_crash_logger compile error - [[User:yukiko omegamu|yukiko omegamu]]

Revision as of 15:01, 29 October 2007


Next meeting: 2007-XX-XX at TIME and PLACE (FIXME). See Bug triage for details.

Fast Track Import

(Move bugs here that have solid repros, or valid patches that you have reviewed)

Hot by Vote

Patches

Misc Pool

Pre-meeting activity

Some issues will be resolved in the course of building this agenda. Rather than deleting them from the proposed agenda, move the issue and associated discussion into the appropriate section below.

Imported

Resolved

Transcript

Transcript is/will be at Bug triage/2007-10-29/Transcript

Creating An Agenda

Community members generally collaborate on the agenda for bug triage meetings. Here's how you can quickly fill in an otherwise blank agenda:


Setting up

  • Go to Bug_Triage/YYYY-MM-DD where YYYY is the four digit year code, MM is the two digit month code, and DD is the day code
  • Write and save {{subst:Triage Template}} as the only content of your new page. This will copy the complete markup from Template:Triage Template as a starting point for your agenda.
  • Fill in the relevant time, date, and location info for the upcoming meeting. The easiest way to do this is to copy the entire block of information from an earlier meeting of the same type (RC, regular, etc...) and modify the date and time as needed.

Populating the issue listings section(s)

<perl>

  1. !/usr/bin/env perl

use XML::Simple;

my $bugs = XMLin($ARGV[0]);

foreach my $item (@{$bugs->{channel}->{item}}) {

 $title = $item->{title};
 $title =~ s/^\^\*\] //;
 $key = $item->{key}->{content};
 $votes = $item->{votes};
 $reporter = $item->{reporter}->{username};
 print "* $key - Votes: $votes - $title - $reporter\n";

}


</perl>

  • Pick a reasonable cutoff point, and copy the output into the appropriate section of your newly created page.