Difference between revisions of "Bug triage/2008-06-11"

From Second Life Wiki
Jump to navigation Jump to search
Line 6: Line 6:
(Bugs reported in 1.20 Release Candidate — consider for import?, sorted by votes)
(Bugs reported in 1.20 Release Candidate — consider for import?, sorted by votes)
* {{jira|VWR-6852}} - Votes: 3 - Render Axes renders at the Sim corner - {{User|Luke Poplin}}
* {{jira|VWR-6852}} - Votes: 3 - Render Axes renders at the Sim corner - {{User|Luke Poplin}}
* {{jira|VWR-6702}} - Votes: 3 - Severe SL memory leak - {{User|eren padar}}
* {{jira|VWR-6984}} - Votes: 2 - Corrupt fonts - {{User|Michelle2 Zenovka}}
* {{jira|VWR-6984}} - Votes: 2 - Corrupt fonts - {{User|Michelle2 Zenovka}}
* {{jira|VWR-7600}} - Votes: 2 - mini-map not remembering status - {{User|Frank Skosh}}
* {{jira|VWR-7600}} - Votes: 2 - mini-map not remembering status - {{User|Frank Skosh}}
* {{jira|VWR-7483}} - Votes: 2 - Leg clothing layer meshes sometimes become stuck as "flared", erroneously full-length pants - {{User|Laila Kumaki}}
* {{jira|VWR-7483}} - Votes: 2 - Leg clothing layer meshes sometimes become stuck as "flared", erroneously full-length pants - {{User|Laila Kumaki}}
* {{jira|VWR-6702}} - Votes: 2 - Severe SL memory leak - {{User|eren padar}}
* {{jira|VWR-7489}} - Votes: 2 - Vertical Black Line on Snapshot to Hard Drive - {{User|Pituca FairChang}}
* {{jira|VWR-7489}} - Votes: 2 - Vertical Black Line on Snapshot to Hard Drive - {{User|Pituca FairChang}}
* {{jira|VWR-7264}} - Votes: 2 - Viewer crash (no error message) when attempting ANY asset upload - {{User|jo earp}}
* {{jira|VWR-7264}} - Votes: 2 - Viewer crash (no error message) when attempting ANY asset upload - {{User|jo earp}}
Line 201: Line 201:
* {{jira|VWR-7369}} - Votes: 0 - 1.20rc7 Viewer hangs with "LogLock::LogLock: failed to get mutex for log", 40 second watchdog timer fails to crash, - {{User|Allen Kerensky}}
* {{jira|VWR-7369}} - Votes: 0 - 1.20rc7 Viewer hangs with "LogLock::LogLock: failed to get mutex for log", 40 second watchdog timer fails to crash, - {{User|Allen Kerensky}}
* {{jira|VWR-7334}} - Votes: 0 - New "cloud-ruth" avatar does not show with 0 particle count. - {{User|Jessicka Graves}}
* {{jira|VWR-7334}} - Votes: 0 - New "cloud-ruth" avatar does not show with 0 particle count. - {{User|Jessicka Graves}}


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

Revision as of 12:27, 11 June 2008


Next meeting: 2008-06-11 at 3pm PST at Bridie Linden's house.

Import?

(Bugs reported in 1.20 Release Candidate — consider for import?, sorted by votes)

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

  • VWR-7584 - Votes: 4 - Sculpties deform after zooming and then deformation sticks forever - Ann Otoole
    • Waiting for more info for repro from Ann

Transcript

Transcript is/will be at Bug triage/2008-06-11/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.