Bug triage/2009-09-03

From Second Life Wiki
Jump to navigation Jump to search




  Please Note: No Public Bug Triage on Thursday September 17th  


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

1.23 RC/PN by vote

  • VWR-15301 - 0 votes - Login screen unable to display at 2560x1600 resolution - Norman Tisch
    • Mark last triaged
  • WEB-1278 - 0 votes - Currency Charts - Division by zero error when requesting chart display for specific time period - BeatricelW001 Whybrow
    • Import
  • WEB-1277 - 0 votes - Second Life web search omits some classified listings - miles beck
    • Already imported
  • SVC-4753 - 0 votes - mailglue stop to work - Tayra Dagostino
    • Import
  • SVC-4751 - 0 votes - Door rotation Presets no longer work when transfered from one sim to another - bella bertone
    • NMI
  • VWR-15280 - 0 votes - Moving a prim numerically does not sync with seated avatar - Blueman Steele
    • Import
  • VWR-15279 - 0 votes - Avatar texture corrupted when viewer window is at its smallest size. - Blueman Steele
    • Import
  • VWR-15278 - 0 votes - Shortcut for Right Clicking does not match system standard. - Blueman Steele
    • Feature Request
  • VWR-15275 - 1 votes - Uploaded clothing texture(s) look completely terrible on clothing yet the textures look fine when viewed on a prim - Clinton Bulan
    • NMI
  • WEB-1269 - 1 votes - Did not receive verification email after registering for a new account via web - h311raz3r Fang
    • Cannot Repro
  • VWR-15266 - 0 votes - Win7, ATI Raedon1650, viewer installs but won't run due to apparent "out of date drivers" - Cat Later
    • Mark last triaged
  • VWR-15265 - 0 votes - In-Client Browser Rendering Issue - Gord Carter
    • NMI
  • VWR-15264 - 0 votes - Hair will not render for over a minute after teleporting - h311raz3r Fang
    • Identify duplicate / Import
  • VWR-15259 - 1 votes - Teleport history does not update when teleporting within a region. - Blueman Steele
    • Feature request
  • VWR-15257 - 0 votes - Using the word "Reset" in an llDialog button causes the menu to silently fail in rare cases. - Tryptofaa Sands
    • NMI

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.

Covered in Wednesday triage

Imported

Resolved

Transcript

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