Bug triage/2008-04-07

From Second Life Wiki
< Bug triage
Revision as of 08:44, 8 April 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-03-31 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)

  • VWR-5697 - Votes: 0 - RC 1.19.1 crash on startup with Vista UAC enabled - Thraxis Epsilon
    • Imported - Assigned to Aric Linden
  • SVC-2036 - Votes: 5 - llSetPrimitiveParams miss-applies textures when the number of faces increases. - Pale Spectre
    • Imported - Assigned to Sidewinder Linden
    • This appears to be the same as SVC-1146 and possibly SVC-38, but SVC-1146 was fixed in Havok4 Beta 1.19 Servers and SVC-2036 did not occur on the Beta grid before it was updated to 1.20

Hot by Vote

High Voted Bugs

  • SVC-1910 - Votes: 31 - Rotation Scripts (llTargetOmega) not working - miranda Ashby
    • Imported - Assigned to Sidewinder Linden
  • SVC-1980 - Votes: 20 - In Havok 4 server 1.20 (maingrid): physical hover height is lower than in Havok 1 - paulie Femto
    • Imported - Assigned to Sidewinder Linden
  • SVC-2006 - Votes: 31 - Spheres bounce when rolling over flat seams in Havok 4. - ZATZAi Asturias
    • Imported - Assigned to Sidewinder Linden

Patches

Patches

  • VWR-5946 - Votes: 0 - Hungarian localization files for Second Life Client - Dunno Vanalten
    • Imported - Assigned to Ramzi Linden
  • VWR-5733 - Votes: 0 - Hungarian language pack is ready for downloading - princess niven
    • Imported - Assigned to Ramzi Linden

Misc Pool

Misc Pool

  • SVC-1975 - Votes: 1 - Havok 4: Avatar jump height is greatly lessened - WarKirby Magojiro
    • needs more information - Requested comparative metrics

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-04-07/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.