Difference between revisions of "Bug triage/2010-03-29"

From Second Life Wiki
Jump to navigation Jump to search
Line 26: Line 26:


* {{jira|VWR-5976}} - Votes: 12 - "Waiting for region handshake,connection problem" - {{User|Alen Hian}}
* {{jira|VWR-5976}} - Votes: 12 - "Waiting for region handshake,connection problem" - {{User|Alen Hian}}
* {{jira|VWR-14094}} - Votes: 11 - Group Chat busy message - {{User|Steve Fallingbridge}} - Last Triaged: 10/12/2009 1:48 PM
** Resolved - Support
* {{jira|VWR-14094}} - Votes: 11 - Group Chat busy message - {{User|Steve Fallingbridge}}  
** Resolved - Needs more info


== Misc Pool ==
== Misc Pool ==

Revision as of 10:13, 30 March 2010



Next meeting: 2010-03-29 at 12:00 NOON PDT at Hippotropolis Meeting area.. See Bug triage for details.

Fast Track Import

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

  • Solid repros
  • SVC-5511 - 0 Votes - llTakeControls Traps repeating event when controls are changed or permission revoked - Void Singer
    • Imported
  • VWR-16872 - 2 Votes - Build Tools: Local Ruler Rotation is Inconsistent - Void Singer
    • Imported
  • SVC-4518 - 0 Votes - Hollow Shape Setting Reverts To Default on Hollow Percentage 0.0 - Void Singer
    • Imported
  • VWR-14555 - 0 Votes - taking an object to inventory (inconsistently) replaces a null description "" with "(No Description)" - Void Singer
    • Imported

Hot by Vote

High Voted Bugs

Misc Pool

Misc Pool

  • MISC-4063 - Votes: 4 - ToS: The text of section 2.2 of the ToS needs changing to reflect the fact that teens and adults are now sharing the official forums. - spinster Voom
  • SVC-1139 - Votes: 4 - Phantom Physics Bug: Physical objects are seperated by an invisible barrier, cannot directly touch or rest on surfaces - Neotoy Story
  • VWR-739 - Votes: 4 - Client->Rendering->Types->Character (CTRL-ALT-SHIFT-4) does not function properly - Harleen Gretzky
  • WEB-1323 - Votes: 4 - """Ran Alert Lock old Closed tickets"" generates confusing email to submitter" - Qie Niangao
  • MISC-2623 - Votes: 3 - Muted residents can continue to communicate and harrass via the SL Exchange (XStreet) message system - Charity Colville

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/2010-03-29/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.