Difference between revisions of "Bug triage/2007-11-07"

From Second Life Wiki
Jump to navigation Jump to search
(Replacing page with '{{subst:Triage Template}}')
Line 1: Line 1:
{{Bug triage}}
{{Bug triage}}


Next meeting: 2007-10-31 at 3pm at [http://slurl.com/secondlife/Levenhall/152/40/30 Bridie's Place] in Linden Village. Aric and Torley are guest-hosting while Bridie is "Out Of Office". See [[Bug triage]] for details.
Next meeting: 2007-XX-XX at TIME and PLACE (FIXME). See [[Bug triage]] for details.


== Fast Track Import ==
== Fast Track Import ==
Line 7: Line 7:
(Move bugs here that have solid repros, or valid patches that you have reviewed)
(Move bugs here that have solid repros, or valid patches that you have reviewed)


==== New in 1.18.3.5 or RC 1.18.3?, NOT Imported ====
== Hot by Vote ==
 
== Patches ==
 
== Misc Pool ==


==== Not new in 1.18.3.5 or RC 1.18.3, NOT Imported ====
* {{jira|VWR-2633}} - Votes: 6 - Not all my groups are visible and the group dialog, (Edit -> Groups...) i'm missing some groups - [[User:Dre Dagostino|Dre Dagostino]]
* {{jira|VWR-2700}} - Votes: 1 - Keep the pre-voice 1.18.0.x viewer branch alive for builders - {{User|Bryon Ruxton}}
* {{jira|VWR-2689}} - Votes: 1 - Suspect memory leak on Mac (Intel Core Duo, OS 10.4, TIGER) - {{User|erestor streeter}}
* {{jira|VWR-2664}} - Votes: 1 - Copy + Paste + Rename + Wear of Clothing item retains original name in Appearance window header - {{User|Coyote Pace}}
* {{jira|VWR-2764}} - Votes: 0 - VWR crash on changing properties of items within a sales box - {{User|Leanne Karas}}
* {{jira|VWR-2763}} - Votes: 0 -  Viewer FPS Sudden Slowdowns - {{User|Kevin Susenko}}
* {{jira|VWR-2762}} - Votes: 0 - I think my Game became an invisble prim and disapered - {{User|Odda Bing}}
* {{jira|VWR-2761}} - Votes: 0 - Group Notices are shown as sent twice. - {{User|Shadowlock Holmer}}
* {{jira|VWR-2758}} - Votes: 0 - Landscape renders on top of avatar on login - {{User|Shoshana Epsilon}}
* {{jira|VWR-2757}} - Votes: 0 - Voice doesn't work - {{User|Yma Waki}}
* {{jira|VWR-2756}} - Votes: 0 - Attachments showing to owner but not to others - {{User|Solomon Draken}}
* {{jira|VWR-2755}} - Votes: 0 - duplicate PARCEL_FLAG_RESTRICT_PUSHOBJECT line in keywords.ini - {{User|Adam Marker}}
* {{jira|VWR-2754}} - Votes: 0 - rainbow avatar - {{User|Whoops Babii}}
* {{jira|VWR-2748}} - Votes: 0 - Viewer won't use physical RAM beyond 2 GB, crashes instead - {{User|Ron Crimson}}
* {{jira|VWR-2746}} - Votes: 0 - Incorrect Debug Menu key combination - {{User|Kazunori Takakura}}
* {{jira|VWR-2745}} - Votes: 0 - undefined reference to `SDL_x11_get_ic_address' while compiling Linux 1.18.3.5 - {{User|Kazunori Takakura}}
* {{jira|VWR-2739}} - Votes: 0 - time_t is assumed to be 32 bit when it is not on all systems - {{User|Michelle2 Zenovka}}


== Pre-meeting activity ==
== Pre-meeting activity ==

Revision as of 16:14, 22 October 2007


Next meeting: 2007-XX-XX at TIME and PLACE (FIXME). See Bug triage for details.

Fast Track Import

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

Hot by Vote

Patches

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/2007-11-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.