Bug triage/2009-06-17

From Second Life Wiki
Jump to navigation Jump to search



Next meeting: 2009-06-17 at 2:00 PM SLT at Bambers' Office at Denby. See Bug triage for details.

1.23 Bugs

  • VWR-13388 - 0 votes - SL RC viewer not handling age verification for avatar A and does handle age verification for avatar B - aaron23 decuir
  • VWR-13995 - 8 votes - After Inventory search, target item is selected but focus is lost when search is cancelled. - Shale Nightfire
  • VWR-13523 - 0 votes - Sulpted Primitives go alpha/transparent randomly without script or any alpha texture. (Both Oblongs and normal RGB mapped sculpted prims) - BJ Mayer
  • VWR-13882 - 1 votes - Change in in Release Candidate has cut FPS to 25-50% of previous releases and alternate viewers on some cards - Lyssa Varun
  • VWR-13449 - 1 votes - Turning on Basic shaders has same effect as turning on atmoshperic shaders in previous versions. - Hardrock1a Camel
  • VWR-13319 - 0 votes - Default Cache Location Moved to C:\Documents and Settings\*NAME*\Local Settings\Application Data\SecondLife - bitova loon

Transcript

Transcript is/will be at Bug triage/2009-06-17/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.