Difference between revisions of "Bug triage/2008-09-17"

From Second Life Wiki
Jump to navigation Jump to search
 
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
#REDIRECT [[Bug triage/2008-09-10]]
<!-- Edit below to add or change issues.  To update the future formatting and text of this page, change [[Template:Triage Template]] instead. -->{{Bug triage}}
 
Next meeting: 2008-09-17 at 3pm PST at {{User|Bridie Linden}}'s house.
 
== Import? 1.21 RC1 ==
* {{jira|VWR-8814}} - Votes: 8 - Camera focuses ahead of avatar when view reset - {{User|Feynt Mistral}}
* {{jira|VWR-8852}} - Votes: 6 - RC 1.21 - Crashing to desktop after new windows are opened - {{User|Eyana Yohkoh}}
* {{jira|VWR-8841}} - Votes: 3 - Memory usage goes to 2gig, graphics frame rate tanks, crash dump taken, viewer not responding - {{User|Maggie Darwin}}
* {{jira|VWR-9065}} - Votes: 2 - Right Click >profile on avatar does not display profile - {{User|DanOfWA Flanagan}}
* {{jira|VWR-8999}} - Votes: 2 - Revert increased spacing between chat lines in the main viewer window - {{User|Latif Khalifa}}
* {{jira|VWR-8924}} - Votes: 1 - When Buying object (sculpted prims only) via left clicking client crashes. - {{User|Oracle Weatherwax}}
* {{jira|VWR-8935}} - Votes: 1 - Snapshot bigger than screen: not all prims are rendered in saved file - {{User|Tillie Ariantho}}
* {{jira|VWR-8875}} - Votes: 1 - Title of Region Statistics window disappears after minimizing window - {{User|Dilbert Dilweg}}
* {{jira|VWR-8883}} - Votes: 1 - Buffer trouble - {{User|Tayra Dagostino}}
* {{jira|VWR-9056}} - Votes: 1 - Client Frame Rate drops to 3 fps (or similar) on opening map - {{User|Jahdo Ohtobide}}
 
== Fast Track Import ==
 
(Move bugs here that have solid repros, or valid patches that you have reviewed)
 
== Hot by Vote ==
 
[http://www.sljirastats.com/jira_search.php?search=33&output=wiki High Voted Bugs]
 
== Patches ==
[http://www.sljirastats.com/jira_search.php?search=34&output=wiki Patches]
 
== Misc Pool ==
[http://www.sljirastats.com/jira_search.php?search=35&output=wiki 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-09-17/Transcript]]
 
== Creating An Agenda ==
{{Bug List Instructions}}

Latest revision as of 17:08, 23 September 2008


Next meeting: 2008-09-17 at 3pm PST at Bridie Linden's house.

Import? 1.21 RC1

Fast Track Import

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

Hot by Vote

High Voted Bugs

Patches

Patches

Misc Pool

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-09-17/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.