Bug triage/2010-02-01

From Second Life Wiki
Jump to navigation Jump to search



Next meeting: 2010-02-01 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

No issues with votes over 10.

Misc Pool

Misc Pool

  • SVC-5320 - Votes: 1 - Large amounts of free Linden $ - Rogan Diesel
    • Moved to SEC - Dup of SEC-573
  • VWR-2844 - Votes: 2 - UI and Music Stream Sound Stuttery under Ubuntu 7.10 (fine in 7.04) - Kristopher Tenk
    • Last Triaged
  • VWR-5710 - Votes: 6 - No-transfer or no-modify objects can't be copied into attachments. - Argent Stonecutter
    • Imported
  • VWR-6001 - Votes: 6 - Landing on a slope the avatar turns and flies downhill - JC Sandial
    • Resolved - Needs More Information
  • SVC-2250 - Votes: 5 - Body of email from outworld to object never arrives, subject, address do arrive. - Marcoh Larsen
    • Resolved - Needs More Information
  • VWR-11360 - Votes: 5 - Linux beta crash on loading for Intel 945 series - Heather Kincess
    • Resolved - Needs More Information
  • VWR-14070 - Votes: 5 - terrain blending not rendering with new viewer update - Uri Jefferson
    • Imported
  • VWR-15844 - Votes: 5 - llDetectedTouchPos does not return relative positition from attach poing, but position on screen when attached as a HUD - Tron Kaffebaum
    • Imported
  • VWR-2727 - Votes: 5 - Primatives sometimes disappear from view. Depends on direction of view. - Mupsey Greenwood
    • Resolved - Needs More Information
  • VWR-3291 - Votes: 5 - "Arrow Keys Always Move Avatar While Chatting", when disabled, should allow up arrow to do chat history. - Gigs Taggart
    • Moved to Feature Request
  • WEB-645 - Votes: 5 - Friendslist not any longer sorted by name - Bibi Book
    • Resolved - Duplicate issues covered in WEB-729 which has been imported
  • MISC-1960 - Votes: 4 - Make PJIRA name capitalization match Second Life capitalization - Data Linden
    • Imported
  • MISC-2860 - Votes: 4 - SLIM incorrectly show friends as offline who are actually logged on to SL - absolute balderdash
    • ** Resolved - Needs More Information
  • MISC-3256 - Votes: 4 - Route 9 parcels mislabeled - Athanasius Skytower
    • Fixed

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-02-01/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.