Difference between revisions of "Bug triage/2008-06-25"
Jump to navigation
Jump to search
Alexa Linden (talk | contribs) |
Alexa Linden (talk | contribs) |
||
Line 8: | Line 8: | ||
* {{jira|VWR-7816}} - Votes: 11 - Individual IM's not being sent to email - {{User|Violet Faulds}} | * {{jira|VWR-7816}} - Votes: 11 - Individual IM's not being sent to email - {{User|Violet Faulds}} | ||
** Moved to SVC - Imported - Assigned to Triage | ** Moved to SVC - Imported - Assigned to Triage | ||
* {{jira|VWR-7178}} - Votes: 3 - 'Upload a snapshot' can no longer take full screen snapshot ... limited to square images - ((User| Neferon Nevadan)) | |||
** Imported - Assigned to Triage | |||
* {{jira|VWR-7722}} - Votes: 1 - Objects become phantom to avatar - {{User|Karandas Banjo}} | * {{jira|VWR-7722}} - Votes: 1 - Objects become phantom to avatar - {{User|Karandas Banjo}} | ||
** Moved to SVC - Imported - Assigned to Triage | ** Moved to SVC - Imported - Assigned to Triage |
Revision as of 10:55, 26 June 2008
Next meeting: 2008-06-25 at 3pm PST at Bridie Linden's house.
Import?
(Bugs reported in 1.20 Release Candidate — consider for import?, sorted by votes)
- VWR-7816 - Votes: 11 - Individual IM's not being sent to email - Violet Faulds
- Moved to SVC - Imported - Assigned to Triage
- VWR-7178 - Votes: 3 - 'Upload a snapshot' can no longer take full screen snapshot ... limited to square images - ((User| Neferon Nevadan))
- Imported - Assigned to Triage
- VWR-7722 - Votes: 1 - Objects become phantom to avatar - Karandas Banjo
- Moved to SVC - Imported - Assigned to Triage
- VWR-7566 - Votes: 1 - Poorly worded message: Edit->Preferences->Voice Chat: "Voice chat is not available" - Argent Stonecutter
- Marked Last Triaged
- VWR-7809 - Votes: 1 - When quitting Second Life, the program crashes. - pulseburst flow
- VWR-7132 - Votes: 1 - Voice Chat problems in RC .6 - Cummere Mayo
- Please install the latest RC
- VWR-7868 - Votes: 1 - Snapshot to disk with any level of antialiasing returns a black image. - Zion Tristan
- Resolved - Dup of VWR-7812
- VWR-7926 - Votes: 1 - No longer possible to sort Search -> Group results by number of group members or alphabetically - astryd moore
- Imported - Assigned to James Linden
- VWR-7845 - Votes: 1 - second life makes vista hang randomly - danana dodonpa
- Marked Last Triaged
- VWR-7929 - Votes: 1 - Map images show grassy sims as desert - Wellington Beam
- Imworld Maps update approx. once a month
- VWR-7831 - Votes: 1 - 1.20.10 fails to compile with gcc 4.1 - Reginard Maktoum
- Imported - Assigned to Soft Linden
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/2008-06-25/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