Bug triage/2010-04-22

From Second Life Wiki
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

High Voted Bugs


   * VWR-17041[c] - Votes: 9 - Cannot drop inventory item in Group notice - Angela Talamasca
   * VWR-16969[c] - Votes: 8 - "Tearing off" the "NEARBY CHAT" window does not take the input edit window with it. It should. - Farallon Greyskin
   * VWR-18692[c] - Votes: 7 - Alert for new incoming message in Conversations box is not working effectively - BearTrap Rodas
   * VWR-18128[c] - Votes: 7 - Ability to IM, Pay Moderate in group chat hidden - Garn Conover
   * VWR-18056[c] - Votes: 7 - L$ balance fails to appear on login with Viewer 2 - Latha Serevi
   * VWR-17536[c] - Votes: 7 - 2.0 Beta search method appears to have some efficiency problems. - Mootly Obviate
   * VWR-18648[c] - 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-18028[c] - 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[c] - Votes: 6 - Incorrect terminology ("Share" and "Show") for inventory manipulation - Tali Rosca
   * VWR-17148[c] - Votes: 6 - STRG(CTRL)+SHIFT+S in Mouselook doesnt make a snapshot - Holger Gilruth
   * VWR-16970[c] - Votes: 6 - Beacons are not shown unless 'BEACONS' dialog is maximized. - Tengu Yamabushi
   * VWR-18067[c] - Votes: 5 - Events Live Music appears to be gone - Vick Forcella
   * VWR-17875[c] - Votes: 5 - Preferences reverting for Enable Plain Text Chat History and Show IMs in Tabs - jonathan yap
   * VWR-17823[c] - Votes: 5 - Help Window is Blank (i.e. no help window visible just a dark frame) - Grandma Bates
   * VWR-17701[c] - Votes: 5 - Cancel and Apply button for color and texture picker have switched position - Lares Carter
   * VWR-17592[c] - Votes: 5 - "Informative" text on mouseover blocks menu items - Felicity Wytchwood
   * VWR-17468[c] - Votes: 5 - dragging an item on a inactive IM tab doesnt work anymore - Lares Carter
   * VWR-17453[c] - Votes: 5 - Cannot create clothes in appearance - jonathan yap
   * VWR-17404[c] - Votes: 5 - Cannot search on ALL EVENTS / EDUCATION (for example) - Al Supercharge
   * VWR-17093[c] - Votes: 5 - "my appearance" 'worn' tab should show the folders worn items are in - Frank Skosh
   * VWR-18556[c] - 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[c] - 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)

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