Bug triage/2007-10-22

From Second Life Wiki
< Bug triage
Revision as of 02:16, 19 October 2007 by Gigs Taggart (talk | contribs) (agendaized)
Jump to navigation Jump to search


Next meeting: 2007-10-22 at 3pm SLT in Hippotropolis. See Bug triage for details.

This week's theme... Old bugs. Bugs only live for a short time, but they reproduce quickly. Some of these ancient bugs have withstood the test of time, some haven't. Your mission is to figure out which have and which haven't. (OK so I checked them all by hand and all these look still valid)

Unlike a normal triage, I won't be too broken up if these bugs are passed over without action, since they aren't part of the standard query. :)

Hot by Vote and Patches are the normal queries, so we don't miss anything urgent.

Gigs Taggart

Fast Track Import

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

  • WEB-179 - Votes: 0 - Mailing list page still has paragraph about and link to defunct software update list - Jayden Emmons


Hot by Vote

Patches

The Y2K+38 bug!


Misc Pool

  • WEB-166 - Votes: 4 - Land Store map is extremely difficult to read - Steve Mahfouz
  • SVC-120 - Votes: 0 - Objects -> Permissions -> Modify Rights -> affects Return ability - Gigs Taggart
  • WEB-86 - Votes: 3 - Transaction History Total Bug when paying self owned object - Gypsy Paz
  • VWR-2426 - Votes: 1 - Missing character in email sent with llEmail - Simil Miles
  • SVC-128 - Votes: 1 - automatic deletion of group leaves any owned property in "limbo" - Ahzzmandius Werribee
  • MISC-150 - Votes: 3 - When a child prim moves with llSetPos, any avatar sitting on it does not move. - Gigs Taggart
  • SVC-141 - Votes: 1 - Restrict Pushing disallows pushes from objects set to group - Lex Neva
  • VWR-558 - Votes: 0 - Bulk upload crashes viewer if you do not choose the upload files within the first minute - Christos Atlantis
  • SVC-145 - Votes: 6 - Existing Hollow Box Prims Have Changed from 95% Hollow to 94.9% Hollow - Gatz Morang
  • SVC-148 - Votes: 1 - Teleport into full region no longer displays error message 'region is full' but instead 'teleport fail' - Drew Dwi
  • VWR-582 - Votes: 0 - Sims that meet at a corner briefly show up after teleport from one to another - Daedalus Young

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