Bug triage/2009-11-16

From Second Life Wiki
Jump to navigation Jump to search



Next meeting: 2009-11-16 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)

  • WEB-1099 - Votes: 289 - Make a "remember me" checkbox for the Xstreetsl.com login site - Chakalak Skall
    • Moved to FR and Imported
  • SVC-5040 - Votes: 1 - Script performance dropped on some regions since rolling restart (12 nov 2009) - Bodokhan Fall
    • Assigned by oskar linden - 13/Nov/09 05:01 PM

Hot by Vote

High Voted Bugs

  • SVC-4622 - Votes: 16 - (???) (???) instead of an object's group name - Kontor Jenkins - Last Triaged: 9/14/2009 2:14 PM

Misc Pool

Misc Pool

  • SVC-1669 - Votes: 4 - Avatar script-time is added to seat - Daten Thielt
    • Imported
  • SVC-4831 - Votes: 1 - Permissions changing when object transferred to other user - Morbid Emor
    • Resolved - Expected Behavior
  • SVC-4902 - Votes: 1 - Inventory Problems Since Last Rolling Restart - Cezare Blanco
    • Resolved - Contact Support
  • VWR-16132 - Votes: 0 - Parts of Avatar become invisable when wearing ALPHA texture cloth(s)ing - Master Kane
    • Resolved - Dupicate of VWR-12906
  • VWR-14071 - Votes: 1 - 1.23 Client Mac OS X version Graphics Texture Memory Settings Not Saved After Changing - Radar Masukami
    • Imported
  • VWR-4240 - Votes: 0 - Viewer crashes during launch after upgrading Quicktime - Blackfyr McBride
    • Resolved - Contact Support
  • VWR-15912 - Votes: 3 - Positions of prims changed by linking. - EddyFragment Robonaught
    • Imported
  • VWR-7105 - Votes: 3 - Crash logger Freezes, fails to come up, or actually crashes (yes the crash logger crashes) - Cummere Mayo
    • Resolved - Needs more info
  • MISC-3231 - Votes: 2 - SLim friendslist shows people i deleted long ago / doesn?t refresh - Sinthoras Braveheart
    • Imported
  • VWR-11064 - Votes: 2 - often, windows task bar hangs for a minute, then clicked buttons all flash - Beware Hax
    • Resolved - Contact Support
  • VWR-14561 - Votes: 2 - Voice not working on Linux on SL 1.23 - Ynot Fenua
    • Imported
  • VWR-16092 - Votes: 2 - No sound under Ubuntu 9.10 - Uncommenting 'export LL_BAD_OPENAL_DRIVER=x' in secondlife gives sound, but delayed and pulseaudio uses 100% of a CPU core - Sahkolihaa Contepomi
    • Imported
  • MISC-1184 - Votes: 1 - Inbound (to SL) replies to SL IM's forwarded to outside email get bounced by LL - lacie jewell
    • Imported
  • MISC-1830 - Votes: 1 - SLim doesn't recognize me: repeated error message when logging in ("wrong user credentials") - XsophiaX Felisimo
    • Resolved - Contact Support
  • MISC-2130 - Votes: 1 - Applying no transfer texture to transferable prim object causes the object to be no transfer even after the texture is removed. - Threse Flanagan
    • Imported
  • SVC-1109 - Votes: 1 - The search fails for some words in some parcel descriptions. - Henri Beauchamp
    • Resolved - Needs more info
  • SVC-1649 - Votes: 1 - llStopAnimation( "type" ) disables AGENT_TYPING bitfield returned by llGetAgentInfo() - Nava Muni
    • 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

  • VWR-16134 - Votes: 0 - Decision of a max capability of texture memory size is incorrect. - Randall Roogus
    • Duplicate of VWR-14071
  • SVC-1813 - Votes: 1 - "HUDs and AOs not working, Avatars loading oddly" - Cora Heslop
    • Contact Support - Reported under 1.19.0 Server
  • SVC-2184 - Votes: 1 - "Searc result ""None Found""" - Melany Lunasea
    • NMI

Transcript

Transcript is/will be at Bug triage/2009-11-16/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.