Difference between revisions of "Bug triage/2010-04-22"

From Second Life Wiki
Jump to navigation Jump to search
(Created page with '{{subst:Triage Template}}')
 
 
(5 intermediate revisions by the same user not shown)
Line 3: Line 3:
<onlyinclude>
<onlyinclude>
{{Triage Template/schedule
{{Triage Template/schedule
|Date=2010-XX-XX
|Date=2010-04-22
|Time=TIME PM PDT
|Time=2:30 AM PDT
|Place=PLACE (FIXME)
|Place=[http://slurl.com/secondlife/Cirano/208/169/25 Louise's Office in Cirano]
|}}
|}}
</onlyinclude>
</onlyinclude>
<span style="color:#AA0000"> &nbsp; '''Please Note: No triage on Thursday 29th April'''<span><br>
Next meeting: {{#var:date}} at {{#var:time}} at {{#var:place}}.  See [[Bug triage]] for details.
Next meeting: {{#var:date}} at {{#var:time}} at {{#var:place}}.  See [[Bug triage]] for details.


Line 19: Line 23:


== Misc Pool ==
== Misc Pool ==
[http://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=11885 Misc Pool]
* {{jira|VWR-17041}} - Votes: 9 - Cannot drop inventory item in Group notice - {{User|Angela Talamasca}}
* {{jira|VWR-16969}} - Votes: 8 - "Tearing off" the "NEARBY CHAT" window does not take the input edit window with it. It should. - {{User|Farallon Greyskin}}
* {{jira|VWR-18692}} - Votes: 7 - Alert for new incoming message in Conversations box is not working effectively - {{User|BearTrap Rodas}}
* {{jira|VWR-18128}} - Votes: 7 - Ability to IM, Pay Moderate in group chat hidden - {{User|Garn Conover}}
* {{jira|VWR-18056}} - Votes: 7 - L$ balance fails to appear on login with Viewer 2 - {{User|Latha Serevi}}
* {{jira|VWR-17536}} - Votes: 7 - 2.0 Beta search method appears to have some efficiency problems. - {{User|Mootly Obviate}}
* {{jira|VWR-18648}} - Votes: 6 - View frustum on World Map rotates about a location that is NOT the current agent location unless the map view origin is at 0, 0. - {{User|Ardy Lay}}
* {{jira|VWR-18028}} - Votes: 6 - Annoying Shadows are cast for platform high in the air, spoiling and corrupting the user experience at ground level - {{User|Salahzar Stenvaag}}
* {{jira|VWR-17873}} - Votes: 6 - Incorrect terminology ("Share" and "Show") for inventory manipulation - {{User|Tali Rosca}}
* {{jira|VWR-17148}} - Votes: 6 - STRG(CTRL)+SHIFT+S in Mouselook doesnt make a snapshot - {{User|Holger Gilruth}}
* {{jira|VWR-16970}} - Votes: 6 - Beacons are not shown unless 'BEACONS' dialog is maximized. - {{User|Tengu Yamabushi}}
* {{jira|VWR-18067}} - Votes: 5 - Events Live Music appears to be gone - {{User|Vick Forcella}}
* {{jira|VWR-17875}} - Votes: 5 - Preferences reverting for Enable Plain Text Chat History and Show IMs in Tabs - {{User|jonathan yap}}
* {{jira|VWR-17823}} - Votes: 5 - Help Window is Blank (i.e. no help window visible just a dark frame) - {{User|Grandma Bates}}
* {{jira|VWR-17701}} - Votes: 5 - Cancel and Apply button for color and texture picker have switched position - {{User|Lares Carter}}
* {{jira|VWR-17592}} - Votes: 5 - "Informative" text on mouseover blocks menu items - {{User|Felicity Wytchwood}}


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

Latest revision as of 03:31, 23 April 2010




  Please Note: No triage on Thursday 29th April

Next meeting: 2010-04-22 at 2:30 AM PDT at Louise's Office in Cirano. 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

High Voted Bugs


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/2010-04-22/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.