Difference between revisions of "Bug triage/2007-10-22"

From Second Life Wiki
Jump to navigation Jump to search
(New page: {{subst:Triage Template}})
 
Line 1: Line 1:
{{Bug triage}}
{{Bug triage}}


Next meeting: 2007-XX-XX at TIME and PLACE (FIXME).  See [[Bug triage]] for details.
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.


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


(Move bugs here that have solid repros, or valid patches that you have reviewed)
(Move bugs here that have solid repros, or valid patches that you have reviewed)
* {{jira|WEB-179}} - Votes: 0 - Mailing list page still has paragraph about and link to defunct software update list - {{User|Jayden Emmons}}


== Hot by Vote ==
== Hot by Vote ==
Line 12: Line 16:


== Misc Pool ==
== Misc Pool ==
 
* {{jira|WEB-166}} - Votes: 4 - Land Store map is extremely difficult to read - {{User|Steve Mahfouz}}
* {{jira|SVC-120}} - Votes: 0 - Objects -> Permissions -> Modify Rights -> affects Return ability - {{User|Gigs Taggart}}
* {{jira|WEB-86}} - Votes: 3 - Transaction History Total Bug when paying self owned object - {{User|Gypsy Paz}}
* {{jira|VWR-2426}} - Votes: 1 - Missing character in email sent with llEmail - {{User|Simil Miles}}
* {{jira|SVC-128}} - Votes: 1 - automatic deletion of group leaves any owned property in "limbo" - {{User|Ahzzmandius Werribee}}
* {{jira|MISC-150}} - Votes: 3 - When a child prim moves with llSetPos, any avatar sitting on it does not move. - {{User|Gigs Taggart}}
* {{jira|SVC-141}} - Votes: 1 - Restrict Pushing disallows pushes from objects set to group - {{User|Lex Neva}}


== Pre-meeting activity ==
== Pre-meeting activity ==

Revision as of 02:01, 19 October 2007


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.

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

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