Bug triage/2010-03-08

From Second Life Wiki
Jump to navigation Jump to search



Next meeting: 2010-03-08 at 12:00 NOON PST 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

  • VWR-4214 - Votes: 12 - Glow effect passes through alpha textures where alpha is actually "solid". - Lex Mars
    • Imported

Misc Pool

Misc Pool

  • VWR-17813 - Votes: 3 - Graphics - colors - rendering problems - ATI 4870 - danrap Vita
    • Reolved - Needs more info
  • SVC-5357 - Votes: 1 - Logins randomly show multi-second ping sim values - Maggie Darwin
    • Triage date updated
  • VWR-18086 - Votes: 0 - I only see textures loading in the top left of my screen. - Master Kayor
    • Resolved - Contact Support
  • VWR-14044 - Votes: 3 - Show Updates followed by turning off the Volume rendering crashes the viewer - SLB Wirefly
    • Imported
  • VWR-17714 - Votes: 3 - general difficulty referencing to groups (getting their name, showing their profile) - Beware Hax
    • Imported
  • SVC-5313 - Votes: 2 - Items returned to Lost and Found don't show in inventory until re-log in. - AnnMarie Otoole
    • Resolved - Needs more info
  • VWR-12870 - Votes: 2 - Logging out of linux Viewer hangs computer - Corin Clary
    • Triage date updated
  • VWR-17258 - Votes: 9 - Unable to Pay Object That Features Transparent (alpha) Texture - Jay Shinobu
    • Imported
  • SVC-5473 - Votes: 4 - COPY-ONLY Textures & NO-TRANSFER Sculpty Textures Cannot Be Applied via the EDIT Window - Toysoldier Thor
    • Resolved as dup of VWR-852
  • SVC-5503 - Votes: 4 - llGetAgentLanguage() return several lines of text when griefers fiddle with settings.xml - Liisa Runo
    • Imported
  • VWR-11418 - Votes: 4 - Textures in 1.21.6 don't load even after clicking them - dan linden
    • Triage date updated
  • VWR-1416 - Votes: 4 - Renaming a new inventory item while filtering item names renames parent folder instead. - Poeffie Messmer
    • Imported
  • VWR-3222 - Votes: 4 - No context menu in inventory while in Mouselook - Chriss Rosca
    • Resolved - Can't Repro
  • VWR-4824 - Votes: 4 - llTakeControls(CONTROL_ROT_LEFT, TRUE, FALSE) also takes CONTROL_ROT_RIGHT - Day Oh
    • Imported
  • VWR-9311 - Votes: 4 - IM and Statistics windows don't remember positions and size. - Millie Thompson
    • Resolved - Needs more info
  • VWR-9410 - Votes: 4 - Animations already Playing cannot be Reapplied/Played again - Bloodsong Termagant
    • Imported
  • VWR-9941 - Votes: 4 - There is something terribly wrong with my hair ... mad barber has attacked my head. - Ezi Leigh
    • Resolved - Dup of VWR-27
  • SVC-5049 - Votes: 1 - Declined inventory offers are being added to inventory. - EddyFragment Robonaught
    • Imported
  • SVC-5496 - Votes: 1 - Comparisons string != string return invalid values with LSL/LSO, different from LSL/Mono - Kaluura Boa
    • Imported
  • SVC-667 - Votes: 1 - llModifyLand does not work while the scripted object is dragged by an avatar - Hiro Pendragon
    • Resolved - Needs more info

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

  • MISC-3983 - Votes: 0 - Constant booting issue with new rolling restart - Reid Landar
    • Resolved - Contact Support

Transcript

Transcript is/will be at Bug triage/2010-03-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.