Difference between revisions of "Bug triage/Wednesday Agenda"

From Second Life Wiki
Jump to navigation Jump to search
 
 
(30 intermediate revisions by 5 users not shown)
Line 1: Line 1:
#REDIRECT [[Bug triage/2010-04-07]]
<!-- 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=2010-05-19
|Time=2.00 PM PDT
|Place=[http://slurl.com/secondlife/Denby/77/80/351 Bambers' Office at Denby]
|}}</onlyinclude>
Next meeting: {{#var:date}} at {{#var:time}} at {{#var:place}}.  See [[Bug triage]] for details.
 
== Fast Track Import ==
(Move bugs here that have solid repros, or valid patches that you have reviewed)
 
== Misc Pool ==
[http://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=11885 Misc Pool]
 
* {{jira|VWR-20531}} - 16 votes - Avatars have fat ankles - [[User:Lindal Kidd|Lindal Kidd]]
 
* {{jira|VWR-20510}} - 8 votes - you can only output a landmark from shared media if the region is only one word, otherwise viewer2.0 will not recognise it as a landmark address. - [[User:loki eliot|loki eliot]]
 
* {{jira|VWR-20141}} - 7 votes - F2 shortcut for "Rename" doesn't work in Sidebar > Inventory - [[User:Opensource Obscure|Opensource Obscure]]
 
* {{jira|VWR-20236}} - 6 votes - Group Chat Failure Message Freezes Viewer - [[User:Calica Siamendes|Calica Siamendes]]
 
* {{jira|VWR-20185}} - 6 votes - Alpha masks sometimes have visible "lines" at some texture seams. - [[User:Asami Imako|Asami Imako]]
 
* {{jira|VWR-19014}} - 6 votes - When exiting second life viewer 2 the screen colors scramble. Some menus are slightly discernable.Only resolution so far is to reboot computer. - [[User:Sid Canonmill|Sid Canonmill]]
 
* {{jira|VWR-20390}} - 5 votes - Avatar texture layers stay blurry - [[User:Hugh Helendale|Hugh Helendale]]
 
* {{jira|VWR-19847}} - 5 votes - High Rez Snapshots do not allow selection of "save as" location or name after the first snapshot is taken - [[User:Belladonna Eberhardt|Belladonna Eberhardt]]
 
* {{jira|VWR-19487}} - 5 votes - Estate Managers unable to freeze / eject without admin tools enabled - [[User:Drew Dwi|Drew Dwi]]
 
* {{jira|VWR-18791}} - 5 votes - Nearby Chat "emotes" are written to the chat log file on disk literally. - [[User:Ardy Lay|Ardy Lay]]
 
* {{jira|VWR-18472}} - 5 votes - Only minimal feedback given using Content -> Permissions to change object inventory permissions - [[User:Stickman Ingmann|Stickman Ingmann]]
 
* {{jira|VWR-17453}} - 5 votes - Cannot create clothes in appearance - [[User:jonathan yap|jonathan yap]]
 
== 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/{{#var:date}}/Transcript]]
 
== Creating An Agenda ==
{{Bug List Instructions}}

Latest revision as of 14:23, 21 May 2012

Next meeting: 2010-05-19 at 2.00 PM PDT at Bambers' Office at Denby. See Bug triage for details.

Fast Track Import

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

Misc Pool

Misc Pool

  • VWR-20510 - 8 votes - you can only output a landmark from shared media if the region is only one word, otherwise viewer2.0 will not recognise it as a landmark address. - loki eliot
  • VWR-20185 - 6 votes - Alpha masks sometimes have visible "lines" at some texture seams. - Asami Imako
  • VWR-19014 - 6 votes - When exiting second life viewer 2 the screen colors scramble. Some menus are slightly discernable.Only resolution so far is to reboot computer. - Sid Canonmill
  • VWR-19847 - 5 votes - High Rez Snapshots do not allow selection of "save as" location or name after the first snapshot is taken - Belladonna Eberhardt
  • VWR-19487 - 5 votes - Estate Managers unable to freeze / eject without admin tools enabled - Drew Dwi
  • VWR-18791 - 5 votes - Nearby Chat "emotes" are written to the chat log file on disk literally. - Ardy Lay
  • VWR-18472 - 5 votes - Only minimal feedback given using Content -> Permissions to change object inventory permissions - Stickman Ingmann

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/2010-05-19/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.