Bug triage/2010-03-18
Agenda
Please Note: There will be no public triage on Thursday March 11th, 2010
Louise and Davy will be working on Voice Maintenance (See this Grid Status post)
We're Back!! Please join me in my office on Thursday to discuss bugs found in our new 2.0 Beta version!
Next meeting: 2010-03-04 at 2:30 AM PST 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
- VWR-17212 - Votes: 103 - Coalesced object groups no longer have a sep & distinct icon type in inventory in viewer 2.0 - Charlene Trudeau
- VWR-17006 - Votes: 91 - expanding and closing the sidebar moves what you're viewing, making the illusion of a world less real - Nate Nansen
- VWR-17130 - Votes: 85 - "Build" missing from contexural menu when clicking prims. - Winter Ventura
- VWR-16964 - Votes: 85 - PLEASE allow adjustable transparency of "Nearby Chat" window, Chat History and Chat "Toasts" in Viewer 2.0! - Michi Lumin
- VWR-17009 - Votes: 64 - Suppressing UI works just partially. - Osprey Therian
- VWR-17068 - Votes: 55 - Viewer 2 Beta: Inventory doesn't show number of items. - spinster Voom
- VWR-16978 - Votes: 55 - 'Inspect' is missing from Viewer 2.0 - Tengu Yamabushi
- VWR-17005 - Votes: 54 - viewing multiple profiles - Nate Nansen
- VWR-16967 - Votes: 50 - Dynamic screen width disrupts scripted HUD positions - Jack Abraham
- VWR-17016 - Votes: 45 - Chat 'toasts/popups' should be resizeable and fade time should be changeable, like we used to have. This is VERY important in busy areas. - Michi Lumin
- VWR-17049 - Votes: 44 - Object properties difficult for designers to use - Radio Signals
- VWR-17011 - Votes: 40 - DO NOT take focus away from the chat bar! - Argent Stonecutter
- VWR-16993 - Votes: 40 - When I click on an object in-world it stays highlighted (like a selection-highlight). - MartinRJ Fayray
- VWR-16988 - Votes: 37 - llInstantMessage() Chat not shown in Chat - Lionheart Milena
- VWR-17102 - Votes: 32 - "Play" and "Pause" buttons reversed - Marianne McCann
- VWR-17224 - Votes: 31 - Chat ims cannot be turned off, continually popping up on the right side in rapid succession causing annoyances and, in some, migraines - Eleanor Ocheis
- VWR-16980 - Votes: 29 - Floating text issues - Viewer 2.0 BETA - Ariu Arai
- VWR-17470 - Votes: 28 - Set Running Progress window Missing - 2408 Alekseev
- VWR-17242 - Votes: 28 - Viewer 2 Beta: RenderVolumeLODFactor sometimes reverts to default on relog - spinster Voom
- VWR-16986 - Votes: 28 - Sitting on a prim / chair and clicking stand makes you fly - motor loon
- VWR-17544 - Votes: 27 - No chat windows in Mouselook - Shuggi Grunspan
- VWR-17347 - Votes: 25 - No functional way to detect active and inactive speakers - Shadow Pidgeon
- VWR-17314 - Votes: 25 - Glow on Screenshots, and Hirez Screenshots broken. - Winter Ventura
- VWR-17066 - Votes: 25 - Cannot decline items offered to me because the decline button is hard to find - Cyanide Ember
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-03-04/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)
- Look at the results of one of these queries
- General triage: "Viewer 2 Bug Triage" (sorted by LL ID, Created, Last Triaged):
- UI triage:
- https://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=10470 (The selected filter with id '10470' does not exist.)
- (Note: there's no hard and fast rule that says these are the only valid queries. If you feel there's a better query one particular week, use that.)
- Save a copy of the XML version of the query
- Run this perl script on the xml file
<perl>
- !/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.
- if you do not have access to a perl interpreter. There is a ported version of the script on PHP, located here: http://jirafiller.technokittydevelopment.com/ made by roberto salubrius