Bug triage/2010-04-22
Jump to navigation
Jump to search
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
Misc Pool
- VWR-17149 - Votes: 10 - default interactions not being shown for objects - Spritely Pixel
- VWR-17261 - Votes: 9 - Chat and Instant Message windows use too much vertical space - Lamorna Proctor
- VWR-17041 - Votes: 9 - Cannot drop inventory item in Group notice - Angela Talamasca
- VWR-17018 - Votes: 9 - Object edit pane click zoom option not reflected in Object Profile. - Osprey Therian
- VWR-16969 - Votes: 8 - "Tearing off" the "NEARBY CHAT" window does not take the input edit window with it. It should. - Farallon Greyskin
- VWR-18692 - Votes: 7 - Alert for new incoming message in Conversations box is not working effectively - BearTrap Rodas
- VWR-18659 - Votes: 7 - Avatar name not filled in when offering a Group Invitation to an offline avatar who is not on your Friends list - Harleen Gretzky
- VWR-18547 - Votes: 7 - No inworld sounds (sound effects) in Viewer 2, while UI sounds, voice and streaming media work - sicarius Thorne
- VWR-18128 - Votes: 7 - Ability to IM, Pay Moderate in group chat hidden - Garn Conover
- VWR-18056 - Votes: 7 - L$ balance fails to appear on login with Viewer 2 - Latha Serevi
- VWR-17536 - Votes: 7 - 2.0 Beta search method appears to have some efficiency problems. - Mootly Obviate
- VWR-17219 - Votes: 7 - I can not toggle out of full screen mode. - KeeperS Karu
- 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. - Ardy Lay
- VWR-18428 - Votes: 6 - Alpha Mask wearable not easily modified... needs sliders before release - Winter Ventura
- VWR-18028 - Votes: 6 - Annoying Shadows are cast for platform high in the air, spoiling and corrupting the user experience at ground level - Salahzar Stenvaag
- VWR-17873 - Votes: 6 - Incorrect terminology ("Share" and "Show") for inventory manipulation - Tali Rosca
- VWR-17762 - Votes: 6 - No Add to Current Outfit Option on folders in Outfits Tab veiwer 2.0 - Eclectic Wingtips
- VWR-17148 - Votes: 6 - STRG(CTRL)+SHIFT+S in Mouselook doesnt make a snapshot - Holger Gilruth
- VWR-16970 - Votes: 6 - Beacons are not shown unless 'BEACONS' dialog is maximized. - Tengu Yamabushi
- VWR-18067 - Votes: 5 - Events Live Music appears to be gone - Vick Forcella
- VWR-17875 - Votes: 5 - Preferences reverting for Enable Plain Text Chat History and Show IMs in Tabs - jonathan yap
- VWR-17823 - Votes: 5 - Help Window is Blank (i.e. no help window visible just a dark frame) - Grandma Bates
- VWR-17701 - Votes: 5 - Cancel and Apply button for color and texture picker have switched position - Lares Carter
- VWR-17592 - Votes: 5 - "Informative" text on mouseover blocks menu items - Felicity Wytchwood
- VWR-17468 - Votes: 5 - dragging an item on a inactive IM tab doesnt work anymore - Lares Carter
- VWR-17453 - Votes: 5 - Cannot create clothes in appearance - jonathan yap
- VWR-17404 - Votes: 5 - Cannot search on ALL EVENTS / EDUCATION (for example) - Al Supercharge
- VWR-17093 - Votes: 5 - "my appearance" 'worn' tab should show the folders worn items are in - Frank Skosh
- VWR-18556 - Votes: 4 - Impossible to use media texture in rendering with Viewer 2 but it works under 1.23 Pipelined rendering branch - naofan Teardrop
- VWR-18496 - Votes: 4 - opening inventory with shortcut doesn't gives focus to the search field - Lilly Zenovka
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)
- 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