Bug triage/2010-02-08

From Second Life Wiki
Jump to navigation Jump to search



Next meeting: 2010-02-08 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 over 10 votes

Misc Pool

Misc Pool

  • VWR-12391 - Votes: 6 - low FPS, high ping sim, unusual packets in and out, packet loss - Sephy McCaw
  • VWR-2844 - Votes: 2 - UI and Music Stream Sound Stuttery under Ubuntu 7.10 (fine in 7.04) - Kristopher Tenk
    • adding to Meta Issue VWR-16816
  • WEB-1471 - Votes: 2 - Unable to (easily) link to any specific post - Kitty Barnett
    • Imported
  • WEB-1472 - Votes: 2 - Searching for posts by a specific resident does not work - Kitty Barnett
    • Imported
  • WEB-1474 - Votes: 2 - Page elements randomly move around in IE8 - Kitty Barnett
    • Imported
  • SVC-1242 - Votes: 5 - Texture Animation is not copied (llSetTextureAnim) - Haravikk Mistral
    • Imported
  • MISC-3256 - Votes: 4 - Route 9 parcels mislabeled - Athanasius Skytower
    • Imported
  • SVC-1003 - Votes: 4 - llLoadURL does not open secondlife:// slurls - Emma Nowhere
    • Imported
  • SVC-2066 - Votes: 4 - Loss of sync in AO walk when going over even tiniest of surface irregualrity - Ravanne Sullivan
    • Resolved - Needs more info
  • SVC-2310 - Votes: 4 - Physics Object sinking - Jay Karlfeldt
    • Resolved - Needs more info
  • SVC-3321 - Votes: 4 - stack trace error while running scripts after remoteloadscriptpin() - Doran Zemlja
    • Resolved - Needs more info
  • SVC-3696 - Votes: 4 - Multiple llSensor calls from within event are responded to inconsistently - Mephistopheles Thalheimer
    • Imported
  • SVC-3945 - Votes: 4 - Unable to sit on surfaces which previously were sittable - Drew Dwi
    • Resolved - Needs more info
  • SVC-443 - Votes: 4 - smooth texture animation using LSL does not work unless looping - anthony reisman
    • Resolved - Needs more info
  • SVC-5109 - Votes: 4 - "Reset Home On Teleport" seems to fail in 1.32 - Zai Lynch
    • Expected Behavior
  • SVC-5155 - Votes: 4 - Scripts not loaded create script errors when interacted with - Ariu Arai
    • Imported
  • SVC-600 - Votes: 4 - llGetLinkKey returns the wrong result when passed LINK_THIS - Strife Onizuka
    • Imported
  • VWR-11056 - Votes: 4 - (Mac OS X) Accent keys are ignored - Frungi Stastny
    • Imported
  • VWR-11364 - Votes: 4 - Glow effects overpowers and obscures object details - Angela Talamasca
    • Expected Behavior
  • VWR-11374 - Votes: 4 - Increased Crash Rate while alt+mouse zooming and camera panning - Drew Dwi
    • Resolved - Won't finish
  • VWR-11381 - Votes: 4 - Sound continues to come thru my main speakers when i have a USB headset attached and have it set as default - Sue Rozen
    • Resolved - Needs more info
  • VWR-12782 - Votes: 4 - Unable to stretch object when an avatar is sitting on it - bau ur
    • Imported
  • VWR-12944 - Votes: 4 - Entering mouselook "remembers" last mouselook angle rather than centering, causing problems with ML controlled vehicles. - Huns Valen
    • Imported
  • VWR-12988 - Votes: 4 - Repeats Per Meter has Limited Usability as it doesn't - Talia Tokugawa
    • Imported

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