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

From Second Life Wiki
Jump to navigation Jump to search
 
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
#REDIRECT [[Bug triage/2009-06-04]]
<!-- Edit below to add or change issues.  To update the future formatting and text of this page, change [[Template:Triage Template]] instead. -->{{Bug triage}}
 
<onlyinclude>
{{Triage Template/schedule
|Date=2009-06-11
|Time=2:30 AM SLT
|Place=[http://slurl.com/secondlife/Cirano/208/169/25 Louise's Office in Cirano]
|}}
</onlyinclude>
Next meeting: {{#var:date}} at {{#var:time}} at {{#var:place}}.  See [[Bug triage]] for details.
 
== 1.23 RC/PN by vote ==
 
* {{jira|VWR-8989}} - 4 votes - Turn off 'Show Tips' option should disable the button tips - [[User:Phli Foxchase|Phli Foxchase]]
** Changed to Feature Request
* {{jira|VWR-13324}} - 4 votes - RC 1.23 is slower than molasses - [[User:hotrodjohnny gears|hotrodjohnny gears]]
** Needs More Info
* {{jira|VWR-13572}} - 2 votes - Very poor graphic performance with Second Life 1.23.1 (119104) - [[User:Gina Glimmer|Gina Glimmer]]
** Duplicate
* {{jira|VWR-12960}} - 1 votes - Fisheye effect camera - [[User:Tayra Dagostino|Tayra Dagostino]]
** Last Triaged Date updated
* {{jira|VWR-13080}} - 1 votes - Chat-lag Notification missing group name target - [[User:Synaptiq Constantine|Synaptiq Constantine]]
** Duplicate
* {{jira|VWR-13303}} - 1 votes - Local Lighting & Atmospheric Shaders - [[User:Melany Lunasea|Melany Lunasea]]
** Needs More Info
* {{jira|VWR-13353}} - 1 votes - Can't override default command line arguments - [[User:Nedrae Messmer|Nedrae Messmer]]
** Imported
* {{jira|VWR-13369}} - 1 votes - Small and zoomed objects (prims) flickering - [[User:Kontor Jenkins|Kontor Jenkins]]
** Need More Info
 
== 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.
 
=== Covered in Wednesday triage ===
 
=== Imported ===
 
=== Resolved ===
 
 
== Transcript ==
Transcript is/will be at [[Bug triage/{{#var:date}}/Transcript]]
 
== Creating An Agenda ==
{{Bug List Instructions}}

Latest revision as of 07:14, 11 June 2009



Next meeting: 2009-06-11 at 2:30 AM SLT at Louise's Office in Cirano. See Bug triage for details.

1.23 RC/PN by vote

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.

Covered in Wednesday triage

Imported

Resolved

Transcript

Transcript is/will be at Bug triage/2009-06-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.