Bug triage/2009-09-24

From Second Life Wiki
< Bug triage
Revision as of 14:43, 14 October 2009 by Davy Linden (talk | contribs)
Jump to navigation Jump to search




  Please Note: No Public Bug Triage on Thursday October 15th  

Next meeting: 2009-09-24 at 2:30 AM SLT at Louise's Office in Cirano. See Bug triage for details.


Misc Pool

  • VWR-14377 - Votes: 3 - Run Multiple Threads on Apple causes texture loading delay or failure - Seric Serupta
    • Import
  • VWR-14044 - Votes: 3 - Show Updates followed by turning off the Volume rendering crashes the viewer - SLB Wirefly
    • CNR
  • VWR-15563 - Votes: 2 - Client gives up before finishing to load full inventory due to packet loss - TigroSpottystripes Katsu
    • NMI
  • VWR-14162 - Votes: 2 - Camera sliders gone - No camera transition time - Paulo Dielli
    • Feature Request
  • VWR-14091 - Votes: 2 - Camera View Angle slider is not reset by cancel button. - Khyota Wulluf
    • Import
  • VWR-15604 - Votes: 1 - Viewer can receive extra root folders as inventory transfer - Adeon Writer
    • NMI
  • VWR-15207 - Votes: 1 - Canceling Snapshot to Disk still triggers snapshot sound and animation. - wyrd Derryth
    • Import
  • VWR-15168 - Votes: 1 - HUD prim changes sometimes not shown if avatar is not in view - Lex Neva
    • Import
  • VWR-14915 - Votes: 1 - People Picker (Group Invites, Bans etc) doesn't work for all Names - Lionheart Milena
    • Import
  • VWR-14926 - Votes: 1 - Avatar attachments are visible in mouselook when viewed through the water plane - Nadnerb Tebaldi
    • Link to existing internal issue
  • VWR-14549 - Votes: 1 - Script-state reverts when changing running-bit before save is complete - Moon Metty
    • Import
  • VWR-14353 - Votes: 1 - llStopSound restart the sound if using llSetSoundQueueing(TRUE) - Ales Beaumont
    • Import
  • VWR-14266 - Votes: 1 - Debug Setting RenderAvatarMaxVisible not working - SLB Wirefly
    • Determine expected behaviour
  • VWR-14236 - Votes: 1 - Gecko didn't render HTML <select> tag at correct position - tx Oh
    • NMI
  • VWR-14208 - Votes: 1 - 1.23 - New camera preference "Camera view angle" affects scripted camera control. - Moon Metty
    • Import
  • VWR-14158 - Votes: 1 - rendervolumeLODFactor not staying changed - quentin foulsbane
    • Determine expected behaviour

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