Difference between revisions of "Bug triage/2007-09-19"

From Second Life Wiki
Jump to navigation Jump to search
Line 6: Line 6:


(Move bugs here that have solid repros, or valid patches that you have reviewed)
(Move bugs here that have solid repros, or valid patches that you have reviewed)
==== Not new in RC 1.18.3, NOT Imported ====
* {{jira|VWR-2302}} - Votes: 0 - Problem between Starting Second Life and NVIDIA GeForce FX 5600 - {{User|Oberon Pessoa}}
* {{jira|VWR-2421}} - Votes: 0 - Adv. graphics: Vertex Ripple water grayed out & Avatar rendering: only normal on ATI Radeon HD 2900 XT - {{User|khamien mills}}
* {{jira|VWR-1303}} - Votes: 5 - Make Chat/IM typing responsive under all circumstances in-world - {{User|Coyote Pace}}
* {{jira|VWR-2471}} - Votes: 0 - SL-viewer chrashes after opening the 10th group-info-window - {{User|Dildo Spitz}}
* {{jira|VWR-2086}} - Votes: 8 - Alt key no longer shows "physical" when pressed. - {{User|Cliff Commons}}
* {{jira|VWR-692}} - Votes: 7 - Group sessions do not remained closed - {{User|Keiki Lemieux}}
* {{jira|VWR-2462}} - Votes: 0 - crash in std::_Rb_tree / lower_bound(LLImageGL* const&) - {{User|bushing Spatula}}
* {{jira|VWR-505}} - Votes: 5 - Alpha-sorting of prims reversed, causing 'solid, non-alpha' prims to disappear. - {{User|beatfox xevious}}
* {{jira|VWR-2266}} - Votes: 2 - Friends list in Communicate window still shows (waiting) after 20 mins online - {{User|elmo dynamo}}
* {{jira|VWR-1678}} - Votes: 9 - Friends list cannot be separated from communicate window - {{User|Feynt Mistral}}
* {{jira|VWR-2490}} - Votes: 0 - "BAD_OSS" in startup script makes login hang - {{User|Boroondas Gupte}}
* {{jira|VWR-2474}} - Votes: 0 - Viewer crashes after reading 4 - 5 offline received notices - {{User|Big Enigma}}
* {{jira|VWR-2305}} - Votes: 1 - Avatar eyes display Missing Texture - {{User|Steve Mahfouz}}
* {{jira|VWR-2463}} - Votes: 0 - crash in LLViewerImageList::updateImagesFetchTextures(float) - {{User|bushing Spatula}}
* {{jira|VWR-2496}} - Votes: 1 - Linking 255 or 256 prims results in two linksets - {{User|Ochi Wolfe}}
* {{jira|VWR-2497}} - Votes: 0 - String "!=" comparison evaluates incorrectly - {{User|Ochi Wolfe}}
* {{jira|VWR-2437}} - Votes: 0 - Minor glitches using ATIs Beta 8.41 driver for Linux - {{User|Sariel Villota}}


== Hot by Vote ==
== Hot by Vote ==

Revision as of 14:53, 17 September 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)

Not new in RC 1.18.3, NOT Imported

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-09-19/Transcript

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.