Bug triage/2008-06-25

From Second Life Wiki
Jump to navigation Jump to search


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

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-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)

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