Bug triage/2007-10-17

From Second Life Wiki
< Bug triage
Revision as of 16:35, 18 October 2007 by Torley Linden (talk | contribs) (New page: {{Bug triage}} Next meeting: 2007-10-17 at 3pm at [http://slurl.com/secondlife/Levenhall/152/40/30 Bridie's Place] in Linden Village. Aric and Torley are guest-hosting while Bridie is "Ou...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Next meeting: 2007-10-17 at 3pm at Bridie's Place in Linden Village. Aric and Torley are guest-hosting while Bridie is "Out Of Office". See Bug triage for details.

Fast Track Import

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

New in 1.18.3.5 or RC 1.18.3?, NOT Imported

  • VWR-1146 - Votes: 6 - Closed Group Proposals NOT SHOWING in Group Voting History - Lecalat Starbrook
    • IMPORTED
  • VWR-2680 - Votes: 4 - Problem between Starting Second Life and NVIDIA GeForce 7600GS - Bonca Chikuwa
    • NEEDS MORE INFO - international drivers?
  • VWR-1630 - Votes: 3 - Cannot stop flying - Dark Otsuzum
    • CANNOT REPRODUCE
  • VWR-2559 - Votes: 1 - inventory multi-preview windows can be scaled too small - Dildo Spitz
    • ALREADY IMPORTED
  • VWR-2518 - Votes: 1 - Performance degrades quickly in release candidate viewers - Synack Fitzgerald
    • RE-RESOLVED, see comments
  • VWR-1081 - Votes: 1 - crash in LLViewerImageList::updateImagesFetchTextures(float) - dan linden
    • GET HELP from Open Source contributors, bring it up @ Monday triage
  • VWR-2726 - Votes: 0 - all inventory folders open - vida nemeth
    • NEEDS MORE INFO

Not new in 1.18.3.5 or RC 1.18.3, NOT Imported

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-10-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.