Bug triage/2008-01-16

From Second Life Wiki
Jump to navigation Jump to search


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

Import?

(Bugs reported in 1.18.6.4 Release Candidate — consider for import?, sorted by votes)

  • VWR-4181 - Votes: 2 - ObjectData.PathShearX and ObjectData.PathShearY are U8, should be S8 - Eddy Stryker
    • Leaving as-is
  • VWR-4158 - Votes: 1 - The prim is draggable like Ctrl-Drag when state changing in touch/touch_start event and next state do not have touch_start/touch/touch_end event. - Fake Fitzgerald
    • Imported - Assigned to Triage
  • VWR-4216 - Votes: 0 - Mac Pro (early 2008) crashes Windlight & regular viewer - Zyzzy Zarf
    • Needs More Info - Questions asked to reporter
  • VWR-3850 - Votes: 0 - nvlddmkm Graphic Failure Error with SL Only - Azildin Furst
    • Needs More Info - Questions asked to reporter

Fast Track Import

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

Hot by Vote

  • SVC-1166 - Votes: 12 - Temp prims are erroneously counting against sim total prim count - Ms Fortitude
    • Leaving as-is

High Voted Bugs

Patches

Patches

Misc Pool

  • VWR-2680 - Votes: 7 - Problem between Starting Second Life and NVIDIA GeForce 7600GS, 7800GS - Bonca Chikuwa
    • Needs More Info
  • SVC-126 - Votes: 7 - In world map image is not updating - Gigs Taggart
    • Resolved - Working On It
  • SVC-200 - Votes: 5 - Prim Animation and llMessageLinked - Heather Goodliffe
    • Resolved - Fixed
  • SVC-166 - Votes: 4 - Land adjacent to SIM boundary makes avatars ""sink"" and objects act like phantom - Nicaine Salome
    • Imported - Assigned to Sidewinder Linden

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-01-17-/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.