Difference between revisions of "Bug triage/2008-02-27"

From Second Life Wiki
Jump to navigation Jump to search
Line 5: Line 5:
== Import? ==
== Import? ==
(Bugs reported in 1.19.0 Release Candidate — consider for import?, sorted by votes)
(Bugs reported in 1.19.0 Release Candidate — consider for import?, sorted by votes)
* {{jira|VWR-4963}} - Votes: 5 - Group archive freezes viewer - {{User|Honey Fairweather}}
* {{jira|VWR-4670}} - Votes: 1 - Contacts List - {{User|ChatNoir Moonsoo}}
* {{jira|VWR-5145}} - Votes: 0 - Groups Missing (Say's you are in 0) Even if you join another in RC3 - {{User|Meghan Dench}}
* {{jira|VWR-5055}} - Votes: 0 - Land search throttle makes it impossible to get through spam. - {{User|Gigs Taggart}}
* {{jira|VWR-4992}} - Votes: 0 - No button to stop quicktime stream in 1.19 UI - {{User|McCabe Maxsted}}
* {{jira|VWR-4985}} - Votes: 0 - xyText textures display improperly in 1.19.0 - {{User|IntLibber Brautigan}}
* {{jira|VWR-4694}} - Votes: 0 - Popup buttons do not come and like when I get an IM or the stand up on certain items that normally give out a stand up botton. - {{User|Sam Reinard}}
* {{jira|VWR-5050}} - Votes: 0 - Pixelated Pie Menu - {{User|Cold Spitteler}}
* {{jira|VWR-5113}} - Votes: 0 - Chat tab does not default to most recent IM - {{User|janelle yachvili}}
* {{jira|VWR-5096}} - Votes: 0 - Teleport resets volume in private voice call - {{User|ZenMondo Wormser}}
* {{jira|VWR-5097}} - Votes: 0 - Local lighting radii too big, especially on avatars - {{User|Miriel Enfield}}
* {{jira|VWR-4730}} - Votes: 0 - Crash reporter shows after updater finishes - {{User|Jims Smythe}}
* {{jira|VWR-4654}} - Votes: 0 - Can't hear voice, but others can hear me - Linux Voice 1.19.0 RC0 ubuntu alsa 1.0.16 - {{User|Poppy Linden}}
* {{jira|VWR-4688}} - Votes: 0 - Secondlife RC 1.19 for Linux.  Voice works can hear fine and when I talk I see the audio icon above my head go green but no one can hear me. - {{User|Sean18 McCarey}}
* {{jira|VWR-4706}} - Votes: 0 - Scaling objects in edit mode causes all objects to appear with planar mapping - {{User|Shadowquine Maltz}}
* {{jira|VWR-4662}} - Votes: 0 - Sky rendered incorrectly - {{User|Kaluura Boa}}
* {{jira|VWR-4604}} - Votes: 0 - Looking at local chat lists crashes viewer (not all the time) - {{User|Zion Tristan}}
* {{jira|VWR-4539}} - Votes: 0 - 1.19 RC0 is "choppy" compared to other viewers - {{User|Doran Zemlja}}


== Fast Track Import ==
== Fast Track Import ==

Revision as of 15:53, 26 February 2008


Next meeting: 2008-02-27 at 3pm PST at Bridie Linden's house.

Import?

(Bugs reported in 1.19.0 Release Candidate — consider for import?, sorted by votes)

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-02-27/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.