Difference between revisions of "Bug triage/2009-08-31"

From Second Life Wiki
Jump to navigation Jump to search
(Moved VWR-15307 up next to VWR-15313 as they are related, removed double listing of WEB-754)
Line 24: Line 24:
* {{jira|SVC-1070}} - Votes: 8 - Vehicles are in some cases counted against parcel prim limits. - {{User|Argent Stonecutter}} - Last Triaged: 8/24/2009 8:52 AM
* {{jira|SVC-1070}} - Votes: 8 - Vehicles are in some cases counted against parcel prim limits. - {{User|Argent Stonecutter}} - Last Triaged: 8/24/2009 8:52 AM
* {{jira|VWR-15313}} - Votes: 8 - "Using Mac OS X 10.6, anti-aliasing (and possibly anisotropic filtering) is not working." - {{User|Murgatroid Mincemeat}}
* {{jira|VWR-15313}} - Votes: 8 - "Using Mac OS X 10.6, anti-aliasing (and possibly anisotropic filtering) is not working." - {{User|Murgatroid Mincemeat}}
* {{jira|VWR-15307}} - Votes: 4 - Top of the screen looks lightened-up horizontally in OSX 10.6 Snow Leopard - {{User|Meg Ronmark}}
* {{jira|VWR-7416}} - Votes: 8 - Display wobbles/vibrates/shakes at altitudes higher than 650m - {{User|Vinco DeCuir}}
* {{jira|VWR-7416}} - Votes: 8 - Display wobbles/vibrates/shakes at altitudes higher than 650m - {{User|Vinco DeCuir}}
* {{jira|SVC-1944}} - Votes: 7 - Movelock HUDs make Avatar bounce around on Havok 4 Sims - {{User|Zi Ree}}
* {{jira|SVC-1944}} - Votes: 7 - Movelock HUDs make Avatar bounce around on Havok 4 Sims - {{User|Zi Ree}}
Line 49: Line 50:
* {{jira|WEB-1027}} - Votes: 6 - Second life grid status page should be a priority for reporting when the grid is in difficulty - {{User|ewan mureaux}}
* {{jira|WEB-1027}} - Votes: 6 - Second life grid status page should be a priority for reporting when the grid is in difficulty - {{User|ewan mureaux}}
* {{jira|WEB-754}} - Votes: 6 - Friend's list not showing map locations even with map rights. - {{User|senli sieyes}}
* {{jira|WEB-754}} - Votes: 6 - Friend's list not showing map locations even with map rights. - {{User|senli sieyes}}
* {{jira|WEB-754}} - Votes: 6 - Friend's list not showing map locations even with map rights. - {{User|senli sieyes}}
* {{jira|VWR-15307}} - Votes: 4 - Top of the screen looks lightened-up horizontally in OSX 10.6 Snow Leopard - {{User|Meg Ronmark}}
* {{jira|SVC-4742}} - Votes: 0 - Problem to log in the grid Aditi whit all the clients. - {{User|MrJingle McQueen}}
* {{jira|SVC-4742}} - Votes: 0 - Problem to log in the grid Aditi whit all the clients. - {{User|MrJingle McQueen}}
* {{jira|SVC-4751}} - Votes: 0 - Door rotation Presets no longer work when transfered from one sim to another - {{User|bella bertone}}
* {{jira|SVC-4751}} - Votes: 0 - Door rotation Presets no longer work when transfered from one sim to another - {{User|bella bertone}}

Revision as of 11:18, 31 August 2009



Next meeting: 2009-08-31 at 12:00 NOON SLT 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

  • WEB-1271 - Votes: 13 - New Account Summary webpage has usability issues on devices with small screens (e.g. Netbooks) - Peter Stindberg

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/2009-08-31/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.