Bug triage/2007-10-22

From Second Life Wiki
< Bug triage
Revision as of 15:40, 23 October 2007 by Alexa Linden (talk | contribs) (→‎Misc Pool)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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
    • Imported - Assigned to Aric Linden

Hot by Vote

  • VWR-786 - Votes: 16 - IM does not respect "allow user to see my online status" flag in friends list - astryd moore
    • Leave As-is
  • WEB-331 - Votes: 12 - slurl.com incorrectly clamps z axis to 128m - DanielFox Abernathy
    • Imported - Assigned to Aric Linden
  • VWR-2388 - Votes: 11 - Object Chat/IMs are untraceable - Dale Innis
    • Imported - Assigned to Aric Linden. Waiting for patch
  • VWR-996 - Votes: 8 - wrong visualisation of animations - Doris Haller
    • Imported - Assigned to Aric Linden

Patches

The Y2K+38 bug!
    • Imported - Assigned to Soft Linden who will change the description

Misc Pool

  • WEB-166 - Votes: 4 - Land Store map is extremely difficult to read - Steve Mahfouz
    • Imported - Assigned to WorkingOnIt Linden
  • SVC-120 - Votes: 0 - Objects -> Permissions -> Modify Rights -> affects Return ability - Gigs Taggart
    • Imported - Assigned to Aric Linden who will assign to RX team
  • WEB-86 - Votes: 3 - Transaction History Total Bug when paying self owned object - {{User|Gypsy Paz})
    • Imported - Assigned to Aric Linden
  • VWR-2426 - Votes: 1 - Missing character in email sent with llEmail - Simil Miles
    • Imported - Assigned to Aric Linden
  • SVC-128 - Votes: 1 - automatic deletion of group leaves any owned property in "limbo" - Ahzzmandius Werribee
    • Imported - Assigned to Aric Linden
  • MISC-150 - Votes: 3 - When a child prim moves with llSetPos, any avatar sitting on it does not move. - Gigs Taggart
    • Closed. Duplicate of SL-22956
  • SVC-141 - Votes: 1 - Restrict Pushing disallows pushes from objects set to group - Lex Neva
    • Imported - Assigned to Triage
  • VWR-558 - Votes: 0 - Bulk upload crashes viewer if you do not choose the upload files within the first minute - Christos Atlantis
    • Imported - Assigned to Aric Linden who will assign to RX team
  • 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.