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

From Second Life Wiki
Jump to navigation Jump to search
Line 17: Line 17:


* {{jira|VWR-17537}} - Votes: 25 - Viewer 2.0 consistenly takes up over 100% CPU usage, degrading performance - {{User|Antonius Misfit}}
* {{jira|VWR-17537}} - Votes: 25 - Viewer 2.0 consistenly takes up over 100% CPU usage, degrading performance - {{User|Antonius Misfit}}
* {{jira|VWR-17348}} - Votes: 17 - SL 2.0 "blue menus" missing - {{User|Frank Skosh}}
* {{jira|VWR-17348}} - Votes: 17 - SL 2.0 "blue menus" missing - {{User|Frank Skosh}}
* {{jira|VWR-17094}} - Votes: 16 - Advanced > UI > Use Default System Color Picker missing in Viewer 2.0 - {{User|Marianne McCann}} - Last Triaged: 4/7/2010 12:33 PM
 
* {{jira|VWR-17094}} - Votes: 16 - Advanced > UI > Use Default System Color Picker missing in Viewer 2.0 - {{User|Marianne McCann}}  
 
* {{jira|MISC-4074}} - Votes: 11 - Adult filter has censored my name from search - {{User|Yiffy Yaffle}}
* {{jira|MISC-4074}} - Votes: 11 - Adult filter has censored my name from search - {{User|Yiffy Yaffle}}
* {{jira|VWR-18884}} - Votes: 11 - using extreem amounts of bandwidth - streaming audio - {{User|darmid Illyar}}
* {{jira|VWR-18884}} - Votes: 11 - using extreem amounts of bandwidth - streaming audio - {{User|darmid Illyar}}
* {{jira|VWR-17087}} - Votes: 10 - Plugin "media_plugin_webkit" crash due to Avira AntiVir WebGuard - {{User|Lionheart Milena}}
* {{jira|VWR-17087}} - Votes: 10 - Plugin "media_plugin_webkit" crash due to Avira AntiVir WebGuard - {{User|Lionheart Milena}}



Revision as of 09:55, 13 April 2010



Next meeting: 2010-04-12 at 12:00 NOON PDT at Hippotropolis Meeting area.. 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

Misc Pool

  • VWR-18792 - Votes: 9 - Listing disappears in "search" when more than one maturity rating is check marked - Nita Bracken
  • VWR-18538 - Votes: 8 - Inventory Notifications In Open IM Windows Create Risk Of Unintentional Violation Of Privacy In Viewer 2.0 Beta - Charles Courtois

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-12/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.