Bug triage/2008-04-02

From Second Life Wiki
< Bug triage
Revision as of 13:17, 8 April 2008 by Bridie Linden (talk | contribs) (Bug triage/Wednesday Agenda moved to Bug triage/2008-04-02)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Next meeting: 2008-03-26 at 3pm PST at Bridie Linden's house.

Import?

(Bugs reported in 1.19.1 RC4 — consider for import?, sorted by votes)

  • VWR-5869 - Votes: 3 - Broken BVH Animation upload causes dialog / interface error, and crash - Felixe Thorne
    • Imported - Assigned to Triage
  • VWR-5520 - Votes: 2 - Strange and sudden video corruption in viewer RC - Spank Lovell
    • Last Triaged date added.
  • VWR-5463 - Votes: 2 - Windlight causes graphics card degredation and eventually disables graphics card. - Goldie Katsu
    • Imported - Assigned to Triage
  • VWR-5641 - Votes: 2 - Linux client distribution dropped secondlife.ico - Qie Niangao
  • VWR-5917 - Votes: 2 - Can not save "day cycles" by name, and can not save "say cycles" or other environment presets between updates. - Argent Stonecutter
    • Closed - Duplicate of VWR-4981
  • VWR-5673 - Votes: 1 - llTargetOmega() (rotating objects) wont stop when child prim - Drako Nagorski
    • Asked Andrew for an update
  • VWR-5769 - Votes: 1 - Mousewheel works inconsistent/not always - Jam Meili
    • Imported - Assigned to Triage
  • VWR-5626 - Votes: 1 - Chat Console showing same messages as Communicate floater - Simil Miles
    • Needs more information
  • VWR-5822 - Votes: 1 - LlSetClickAction(4) will not function on object in hud - talin sands
    • Not a bug - changed to a feature request
  • VWR-5760 - Votes: 1 - triangles poiting out of avatars in busy places - Elenora Beattie
    • Closed - Duplicate of VWR-3258
  • VWR-5530 - Votes: 1 - Minimized windows not remembering position - Shirley Marquez
    • Imported - Assigned to Triage
  • VWR-5826 - Votes: 1 - Quit takes very long time to complete, when it does on Mac OS X Leopard - anthea shilova
    • Closed - Duplicate of VWR-5623
  • VWR-5905 - Votes: 1 - Terraform dots disappear in water in windlight - Gigs Taggart
    • Closed - Duplicate of VWR-3172
  • VWR-5823 - Votes: 1 - "Texture Fighting" On Terrain and Shiny Objects. - Soap Clawtooth
    • Imported - Assigned to Triage
  • VWR-5853 - Votes: 1 - Double-Clicking on vertical edge of Inventory/Gesture window destroys the floating window. - Angus Boyd
    • Imported - Assigned to Triage

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