Difference between revisions of "Bug triage/2010-04-26"

From Second Life Wiki
Jump to navigation Jump to search
(Added Hot by Vote and Misc Pool)
Line 25: Line 25:
* {{jira|SVC-5707}} - Votes: 2 - Scripted vendors that change root prim (payed enable prim) not refresh correctly - {{User|hart larsson}}
* {{jira|SVC-5707}} - Votes: 2 - Scripted vendors that change root prim (payed enable prim) not refresh correctly - {{User|hart larsson}}
* {{jira|SVC-5607}} - Votes: 0 - llRequestUrl(); fails to start on region restart - {{User|Revolution Perenti}}
* {{jira|SVC-5607}} - Votes: 0 - llRequestUrl(); fails to start on region restart - {{User|Revolution Perenti}}
* {{jira|VWR-18929}} - Votes: 0 - Lag Meter Client Frame below 10 Connection ping time is above 600 - {{User|Night Msarko}}
* {{jira|VWR-18924}} - Votes: 9 - Ctrl Z has stopped working when editing several prims - {{User|Amaranthim Talon}}
* {{jira|VWR-18924}} - Votes: 9 - Ctrl Z has stopped working when editing several prims - {{User|Amaranthim Talon}}
* {{jira|SVC-5583}} - Votes: 6 - Scripts fail to compile,run, delete, and randomly appear as "Old Script" in inventory - {{User|Kora Zenovka}} - Last Triaged: 4/19/2010 8:21 AM
* {{jira|SVC-5583}} - Votes: 6 - Scripts fail to compile,run, delete, and randomly appear as "Old Script" in inventory - {{User|Kora Zenovka}} - Last Triaged: 4/19/2010 8:21 AM
Line 45: Line 44:
* {{jira|VWR-11250}} - Votes: 6 - Tooltip no longer closes when typing - {{User|imnotgoing sideways}}
* {{jira|VWR-11250}} - Votes: 6 - Tooltip no longer closes when typing - {{User|imnotgoing sideways}}
* {{jira|MISC-3451}} - Votes: 3 - Messed up textures on Korea1 Welcome Area benches - {{User|Adeon Writer}}
* {{jira|MISC-3451}} - Votes: 3 - Messed up textures on Korea1 Welcome Area benches - {{User|Adeon Writer}}


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

Revision as of 06:45, 26 April 2010



Next meeting: 2010-04-26 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)

Hot by Vote

High Voted Bugs

  • WEB-1611 - Votes: 57 - Profile picks shown inworld do not show up on the web search even with show in search checked. - Talisien Llewellyn
  • SVC-5727 - Votes: 15 - Sim Stability Post 1.38.1 for High Volume Sims - Suzanna Soyinka
  • VWR-19060 - Votes: 12 - When I purchase Linden Dollars, I have to close the viewer and restart it in order for the Lindens to appear in my account. - Ashley Shi

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/2010-04-26/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.