Bug triage/2007-11-12
Jump to navigation
Jump to search
Next meeting: 2007-11-12 at 3pm and Hippotropolis. 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
- VWR-2977 - Votes: 2 - LlMozLib use standalone system xulrunner and create shared library - Michelle2 Zenovka
- Imported - Assigned to Callum Linden
- VWR-2965 - Votes: 0 - gpulist.txt does not classify NVIDIA GeForce Go 7700 as type 3 videocard. - Iskar Ariantho
- Imported - Assigned to Triage
- VWR-2410 - Votes: 5 - noise dot appear in chat window when clien running long with chatting. - march Korda
- Imported - Assigned to Triage
Misc Pool
- VWR-1015 - Votes: 0 - User of Cloaking Non-physical vehicles in many situations cannot communicate with attachments - Han Sontse
- Closed - Won't fix
- WEB-140 - Votes: 1 - Credit Card not Approved - Ephraim Mathilde
- Closed - misfiled. Posted Support page information
- VWR-997 - Votes: 3 - Framerate decreases when many avatars present, even when offscreen or occluded - Colin Kiernan
- Cross referenced with SL-9932 and marked with Last Triage date
- VWR-990 - Votes: 0 - SL Streaming Audio Trashes my Sound System - Nefertiti Nefarious
- Closed - Referred to a Linux Forum
- VWR-965 - Votes: 0 - Bumpiness disappears if a texture is rotated towards 90/270 degrees - Dytska Vieria
- Closed - This was not a bug
- VWR-954 - Votes: 7 - Objects flash changing every texture I have....sometimes all trees, sometimes walls, sometimes avatars...never know what. - lauren weyland
- VWR-895 - Votes: 8 - Texture latency - texturing all sides of a prim at once results in one side not being textured, has to be selected individually - Cory Edo
- Imported - Assigned to Traige
- SVC-245 - Votes: 1 - Math Error on derez. - Gigs Taggart
- Imported - Assigned to Traige
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-11-12/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)
- Look at the results of one of these queries
- General triage: "Viewer 2 Bug Triage" (sorted by LL ID, Created, Last Triaged):
- UI triage:
- https://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=10470 (The selected filter with id '10470' does not exist.)
- (Note: there's no hard and fast rule that says these are the only valid queries. If you feel there's a better query one particular week, use that.)
- Save a copy of the XML version of the query
- Run this perl script on the xml file
<perl>
- !/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.
- if you do not have access to a perl interpreter. There is a ported version of the script on PHP, located here: http://jirafiller.technokittydevelopment.com/ made by roberto salubrius