Bug triage/2008-09-24

From Second Life Wiki
Jump to navigation Jump to search


Next meeting: 2008-09-24 at 3pm PST at Bridie Linden's house.

Import? 1.21 RC1

  • VWR-8852 - Votes: 8 - RC 1.21 - Crashing to desktop after new windows are opened - Eyana Yohkoh
    • Can't Repro - requested more logs
  • VWR-8924 - Votes: 1 - When Buying object (sculpted prims only) via left clicking client crashes. - Oracle Weatherwax
    • Resolved - Can't Reproduce
  • VWR-9136 - Votes: 1 - Non-mono script fails on user interaction (pop-up menu) - Ecchin Melson
    • Still a problem with the latest RC? Requested script
  • VWR-9056 - Votes: 1 - Client Frame Rate drops to 3 fps (or similar) on opening map - Jahdo Ohtobide
    • Last Triaged
  • VWR-5457 - Votes: 31 - Region/Estate - Manually entering an email address in the ""abuse report email address"" field does not work (reopened) - mathieu basiat
    • Tracking down status

Import? 1.21 RC1 + previous versions

  • VWR-8900 - Votes: 5 - Avatar Impostors not working - Trans Meili
    • Comments added
  • VWR-9034 - Votes: 3 - "Avatar Cloth" graphics preference (RenderAvatarCloth) grayed out on Mac viewers that support it - Davey Callisto
    • Comments added
  • VWR-7021 - Votes: 2 - Disable scripts from region/estate tab does not work - Daten Thielt
    • Comments added
  • VWR-8944 - Votes: 2 - Second Life Client crashes on logout. - norritt Xi
    • Requested crash logs
  • VWR-9277 - Votes: 2 - No sound in any other programs when runing the viewer on linux. - Khyota Wulluf
    • Requested more information
  • VWR-9267 - Votes: 1 - "Save Object Back to My Inventory" always enabled, even for prims not rezed from inventory - McCabe Maxsted
    • Imported - Assigned to Rx

Fast Track Import

(Move bugs here that have solid repros, or valid patches that you have reviewed)

Hot by Vote

High Voted Bugs

Patches

Patches

Misc Pool

Misc Pool

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-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.