Difference between revisions of "Bug triage/2009-02-11"

From Second Life Wiki
Jump to navigation Jump to search
(fixing location link)
Line 5: Line 5:
|Date=2009-02-11
|Date=2009-02-11
|Time=3:00 PM SLT
|Time=3:00 PM SLT
|Place=[http://slurl.com/secondlife/Denby/77/80/351 | Bambers' Office at Denby]
|Place=[http://slurl.com/secondlife/Denby/77/80/351 Bambers' Office at Denby]
|}}
|}}
</onlyinclude>
</onlyinclude>

Revision as of 00:28, 15 February 2009



Next meeting: 2009-02-11 at 3:00 PM SLT at Bambers' Office at Denby. See Bug triage for details.

Bugs to Investigate and Import

  • VWR-11193 - 1 votes - Strong memory leak while client is iconified - tx Oh
    • Resolved - Needs more info
  • VWR-8215 - 5 votes - After login, sometimes Mouse steering on avatar and HUDs don't work - Opensource Obscure
    • Imported
  • VWR-5598 - 2 votes - A Viewer Crash Causes the Minimap and/or Stats Bar To Hide on Next Startup - 10KHz Tone
    • Moved to Feature Request for better handling of crashes and saving settings - Imported
  • VWR-6397 - 6 votes - Body distortion, continues to gesticulate while on voice even though speech gestures disabled. - Vermus Dryke
    • Resolved - Needs more info
  • VWR-11688 - 6 votes - Oblong Sculpts load slowly - Aminom Marvin
    • Resolved - Duplicate
  • VWR-3259 - 1 votes - Prim Alignment .0005m off upon linking and touching objects - yoshi charron
    • Resolved - Needs more info
  • VWR-11847 - 1 votes - Inconsistent lighting between matching rounded surfaces. - Ephyu Reino
    • Imported
  • VWR-3028 - 0 votes - Pop-out windows do not maximize when resizing explorer window - Kaden Harbour
    • Imported

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/2009-02-11/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.