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

From Second Life Wiki
Jump to navigation Jump to search
Line 15: Line 15:
* {{jira|VWR-8841}} - Votes: 2 - Memory usage goes to 2gig, graphics frame rate tanks, crash dump taken, viewer not responding - {{User|Maggie Darwin}}
* {{jira|VWR-8841}} - Votes: 2 - Memory usage goes to 2gig, graphics frame rate tanks, crash dump taken, viewer not responding - {{User|Maggie Darwin}}
* {{jira|VWR-8836}} - Votes: 1 - New default text chat colours may cause confusion - {{User|James Benedek}}
* {{jira|VWR-8836}} - Votes: 1 - New default text chat colours may cause confusion - {{User|James Benedek}}
* {{jira|VWR-8814}} - Votes: 1 - Camera focuses ahead of avatar when view reset - {{User|Feynt Mistral}}
* {{jira|VWR-8871}} - Votes: 1 - Crash Crash Crash trying to do anything while build window open - {{User|JubJub Forder}}
* {{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-8999}} - Votes: 1 - Revert increased spacing between chat lines in the main viewer window - {{User|Latif Khalifa}}
* {{jira|VWR-8883}} - Votes: 1 - Buffer trouble - {{User|Tayra Dagostino}}
* {{jira|VWR-9069}} - Votes: 1 - Region variable says 'Region Name' in AR with no object selected - {{User|Garn Conover}}
* {{jira|VWR-9056}} - Votes: 1 - Client Frame Rate drops to 3 fps (or similar) on opening map - {{User|Jahdo Ohtobide}}
* {{jira|VWR-8823}} - Votes: 1 - Username links broken - Cannot right click or drag items on Avatar Name Tag - {{User|Saiki Spirt}}
* {{jira|VWR-9065}} - Votes: 1 - Right Click >profile on avatar does not display profile - {{User|DanOfWA Flanagan}}
* {{jira|VWR-9074}} - Votes: 1 - When using a wide screen, the pulldown menus of the Inventory Window do not align under the "File" "Create" and "Sort" menus when the Inventory Window is positioned to the right side of the screen - {{User|JeanPaul Mureaux}}


== Fast Track Import ==
== Fast Track Import ==

Revision as of 11:14, 11 September 2008


Next meeting: 2008-09-10 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-10/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.