Bug triage/2008-09-15

From Second Life Wiki
< Bug triage
Revision as of 10:30, 16 September 2008 by Alexa Linden (talk | contribs) (→‎Misc Pool)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Next meeting: 2008-09-15 at 12 PM 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

  • VWR-2756 - Votes: 12 - Attachments showing to owner but not to others - {{User|Solomon Draken}
    • Resolved - Dup of SVC-2743
  • SVC-2934 - Votes: 13 - Group Chat messages failing, being delivered MINUTES later, and multiple lines often delivered out of order, if ever. - BackHome Soon
    • Resolved - Dup of VWR-1298
  • VWR-1402 - Votes: 12 - Avatar eye's turn Black - lucian overlord
    • Last Triaged date added
  • VWR-5949 - Votes: 28 - Out of Memory Error - alan edelman
    • Is this still a problem with updated drivers and the latest Release Candidate?

Patches

Patches

  • VWR-2710 - Votes: 2 - Turkish Beta Language Pack For Second Life Viewer - Vixen Heron
    • Resolved - Needs More Info. Asked to have it re-opened once the newest translation has been attached.
  • VWR-8049 - Votes: 16 - User-settable default permissions on creation of objects, clothing, scripts, notecards, etc. - seshat czeret
    • Imported - Assigned to Rx

Misc Pool

Misc Pool

  • VWR-7011 - Votes: 0 - Camera locks into top of head view - WarKirby Magojiro
    • Still a problem in the latest RC?
  • SVC-1847 - Votes: 0 - llStringLength won't diferentiate between single and multiple byte characters, while the cap for chat will - TigroSpottystripes Katsu
    • Imported - Viewer
  • SVC-1685 - Votes: 0 - Teens unable to use the beta grid. - Liny Odell
    • Imported - Assigned to Sidewinder Linden
  • VWR-7132 - Votes: 2 - Voice Chat problems in 1.20 viewer - Cummere Mayo
    • Resolved - Needs more info
  • SVC-996 - Votes: 0 - Five minute wait due to ""System Logging You Out"" happens everytime when wearing scripted HUD - Chase Marellan
    • Resolved - Needs more info
  • WEB-600 - Votes: 0 - When event fails to submit and needs corrections, Location select box does not remember initial choice - Blue Revolution
    • Resolved - Needs more info. Is this still a problem?
  • VWR-5773 - Votes: 0 - When Basic Shaders is selected in Graphics settings, it causes a fog bar along the right side of the screen also visible in photos. In viewer 1.19.1 - cherie parker

Resolved - Dup of VWR-7439

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/2008-09-15/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.