Bug triage/2009-08-31

From Second Life Wiki
Jump to navigation Jump to search



Next meeting: 2009-08-31 at 12:00 NOON SLT 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-1271 - Votes: 13 - New Account Summary webpage has usability issues on devices with small screens (e.g. Netbooks) - Peter Stindberg

Misc Pool

Misc Pool

  • VWR-15307 - Votes: 4 - Top of the screen looks lightened-up horizontally in OSX 10.6 Snow Leopard - Meg Ronmark
  • SVC-1944 - Votes: 7 - Movelock HUDs make Avatar bounce around on Havok 4 Sims - Zi Ree
  • WEB-821 - Votes: 7 - SL Website forces users to use the website fitting their browsers language settings. - BlckCobra Shikami
  • MISC-1540 - Votes: 6 - Unable to join land plots for clients on estates i have EM perms on after a recent purchase by the client (when i normally need to most) - Sal Salubrius
  • SVC-2048 - Votes: 6 - "physics weapons no longer seem to work in smoky or baileya, due to recent havok4 rollout?" - Fred Huffhines
  • SVC-2061 - Votes: 6 - ll SetTextureAnimation - Texture Animation adding abnormal load to sim latency - Bid Messmer
  • SVC-2142 - Votes: 6 - Automated assembly of sculpties via primscript no longer functions properly - Chosen Few
  • SVC-481 - Votes: 6 - permission sharing between scripts has been broken - Drew Dwi
  • SVC-810 - Votes: 6 - Mail to IM gateway fails if nonstandard ascii characters used - Seamus Vella
  • VWR-13259 - Votes: 6 - Some prims exhibit different phases of texture animation without former consistency - bau ur
  • VWR-2944 - Votes: 6 - Selecting Audio device for voicechat output fails if device description name longer than 31 characters - reverts to default device - tonio roffo
  • VWR-4515 - Votes: 6 - "Friends dissappaer from list - no, the other one has NOT deleted me" - Rita Munro
  • WEB-1027 - Votes: 6 - Second life grid status page should be a priority for reporting when the grid is in difficulty - ewan mureaux

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/2009-08-31/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.