Difference between revisions of "Bug triage/2008-01-16"

From Second Life Wiki
Jump to navigation Jump to search
Line 25: Line 25:
== Patches ==
== Patches ==
* {{jira|VWR-1286}} - Votes: 21 - alt-zooming on hollow face mishandled - {{User|Lex Neva}}
* {{jira|VWR-1286}} - Votes: 21 - alt-zooming on hollow face mishandled - {{User|Lex Neva}}
** Has new comments since last triage, but looks like Gigs put development of the patch on hold
** Leaving as-is
* {{jira|SVC-1171}} - Votes: 0 - LSL Unsigned Right Shift Operator (>>>) - {{User|Strife Onizuka}}
* {{jira|SVC-1171}} - Votes: 0 - LSL Unsigned Right Shift Operator (>>>) - {{User|Strife Onizuka}}
** Imported - Assigned to Triage
* {{jira|WEB-456}} - Votes: 2 - Enable interwiki linking - {{User|SignpostMarv Martin}}
* {{jira|WEB-456}} - Votes: 2 - Enable interwiki linking - {{User|SignpostMarv Martin}}
** Imported - Assigned to Rob Linden
* {{jira|VWR-3749}} - Votes: 0 - Windlight linkage fails on standalone build due to no boost_regex linkage - {{User|Michelle2 Zenovka}}
* {{jira|VWR-3749}} - Votes: 0 - Windlight linkage fails on standalone build due to no boost_regex linkage - {{User|Michelle2 Zenovka}}
** Fix pending
** Fix pending

Revision as of 10:29, 17 January 2008


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

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