Bug triage/2009-10-26

From Second Life Wiki
< Bug triage
Revision as of 09:48, 27 October 2009 by Alexa Linden (talk | contribs) (→‎Misc Pool)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search



Next meeting: 2009-10-26 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

Misc Pool

Misc Pool

  • VWR-15869 - Votes: 3 - Gigantic lag after a few seconds in world - Maybe Fallen
    • Imported
  • VWR-15596 - Votes: 2 - Texture loading times are ridiculous long - Sati Lumet
    • Resolved - Under Advisement
  • SVC-4387 - Votes: 4 - Functions in Mono have huge memory overhead - Haravikk Mistral
    • Imported
  • SVC-4573 - Votes: 3 - Idle scripts still take server time - janine Serpente
    • Imported
  • SVC-3403 - Votes: 2 - "unfix" the "Autoreturn can be circumvented by changing links in a script" fix till we have enough groups slots to waste" - TigroSpottystripes Katsu
    • Resolved - Won't Finish
  • SVC-3584 - Votes: 2 - Is almost impossible to use a flying vehicle in mainland without losing frequently. - JJValero Writer
    • Resolved - Duplicate
  • SVC-3691 - Votes: 2 - State changes considerably slower under Mono-LSL than LSO-LSL - Haravikk Mistral
    • Imported
  • SVC-3790 - Votes: 2 - Cache not working and causing Massive Bandwidth usage resulting in ISP Throttling - Totem Flow
    • Resolved - Needs More info
  • SVC-3917 - Votes: 2 - Old objects set 'Share With Group' no longer editable - Kitto Flora
    • Resolved - Needs More info
  • SVC-3934 - Votes: 2 - llGetObjectPermMask() returns wrong values - Sion Zaius
    • Imported
  • SVC-3957 - Votes: 2 - Not able to hear Streaming Music - Avi Karfield
    • Imported
  • SVC-4716 - Votes: 2 - Friendslist dissolving friendships arbitrarily - PsychicMediumMeri Indigo
    • Resolved - Contact Support
  • SVC-871 - Votes: 2 - No Trans, copyable notecards can be opened - WarKirby Magojiro
    • Resolved - Expected Behavior
  • VWR-11064 - Votes: 2 - often, windows task bar hangs for a minute, then clicked buttons all flash - Beware Hax
    • Resolved - Needs More info
  • VWR-12035 - Votes: 2 - Modify Permissions are not kept on Object when No Mod items are added. (Should be SVR bug) - Cryas Tokhes
    • Resolved - Duplicate
  • VWR-12089 - Votes: 2 - Movement looks stuttering (not smooth) using a non physical vehicle - bluecat jun
    • Resolved - Expected Behavior
  • VWR-12413 - Votes: 2 - A frozen avatar can still control a vehicle. - Hunter Trommler
    • Imported
  • VWR-14000 - Votes: 2 - Mouse clicking issue - Crono Schism
    • Resolved - Needs More info
  • VWR-14151 - Votes: 2 - Clicking/Touching your own avatar should NOT reset the camera. - Crystals Galicia
    • 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/2009-10-26/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.