Bug triage/2008-10-01

From Second Life Wiki
Jump to navigation Jump to search


Next meeting: 2008-10-01 at 3pm PST at Bridie Linden's house.

Import? 1.21 RC3

  • VWR-9317 - Votes: 2 - Viewer will not start with ATI Radeon x850 AGP using Catalyst 8.9 - Adeon Writer
    • Resolved - Needs more info
  • VWR-9056 - Votes: 1 - Client Frame Rate drops to 3 fps (or similar) on opening map - Jahdo Ohtobide
    • Last Triaged
  • VWR-9330 - Votes: 1 - IM windows say "typing..." even when the other person is not. - Khyota Wulluf
  • VWR-9377 - Votes: 1 - Mapping will default to leave exact sim name listing first. (Searching Gar forces Gar to come up and not Garden of Dreams) - Corsi Mousehold
    • Imported - Rx
  • VWR-8850 - Votes: 0 - typing override missing - Tayra Dagostino
    • Resolved - Not a bug
  • VWR-8919 - Votes: 0 - call to llLoadURL causes SL window to minimize when web page loads - Simone Gateaux
    • Resolved - Can't Reproduce
  • VWR-8872 - Votes: 0 - Return in 1.21 RC: Linux 1.20 RC7 libexpat.so.1 not found, exit on load - Qie Niangao
    • Resolved - Won't finish
  • VWR-8926 - Votes: 0 - Moving camera stops av from following mouse movement - Be Holder
    • Resolved - Misfiled
  • VWR-8813 - Votes: 0 - Installation Error - static_index.db2 - Error opening file for writing during installation - Veyron Supercharge
    • Resolved - Needs more info
  • VWR-8941 - Votes: 0 - Recompile mono via Tool Menu Freezes on sculpts or many scripts - Xoza Tyron
    • Resolved - Needs more info
  • VWR-8953 - Votes: 0 - Release Candidate 1.21 - Compile to Mono - UThread injection failed. - Ebene Nitely
    • Resolved - Needs more info
  • VWR-8963 - Votes: 0 - Multiple crashes related to rapid LM traveling and walking cross sim boundaries - Release Candidate 1.21 - Jasmine Chemistry
    • Resolved - Needs more info
  • VWR-8970 - Votes: 0 - Viewer crashes on Alt-click - gil druart
    • Resolved - Dup of VWR-8717

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-10-02/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.