Bug triage/2010-04-26

From Second Life Wiki
Jump to navigation Jump to search



Next meeting: 2010-04-26 at 12:00 NOON PDT 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

  • WEB-1611 - Votes: 57 - Profile picks shown inworld do not show up on the web search even with show in search checked. - Talisien Llewellyn
    • Imported
  • SVC-5727 - Votes: 15 - Sim Stability Post 1.38.1 for High Volume Sims - Suzanna Soyinka
    • resolved - Needs more info
  • VWR-19060 - Votes: 12 - When I purchase Linden Dollars, I have to close the viewer and restart it in order for the Lindens to appear in my account. - Ashley Shi
    • Resolved as duplicate of VWR-18056

Misc Pool

Misc Pool

  • SVC-5707 - Votes: 2 - Scripted vendors that change root prim (payed enable prim) not refresh correctly - hart larsson
    • Updated name and information - Needs more info
  • SVC-5607 - Votes: 0 - llRequestUrl(); fails to start on region restart - Revolution Perenti
    • Resolved - needs more info
  • VWR-18924 - Votes: 9 - Ctrl Z has stopped working when editing several prims - Amaranthim Talon
    • Resolved - needs more info
  • SVC-5583 - Votes: 6 - Scripts fail to compile,run, delete, and randomly appear as "Old Script" in inventory - Kora Zenovka
    • Imported
  • WEB-1605 - Votes: 3 - Since new release, RSS feed for news is not updating - Drew Dwi
    • Imported
  • VWR-14800 - Votes: 2 - Viewer Crash on Mac OS when uploading any images - Kye Capelo
    • Resolved - needs more info
  • WEB-1615 - Votes: 2 - http://world.secondlife.com/place is no longer updated - ANSI Soderstrom
    • Imported
  • SVC-3166 - Votes: 4 - llVolumeDetect collision_start/collision_end undependable - Vex Streeter
    • Imported
  • SVC-5057 - Votes: 4 - http_response accepts text/xml but not application/xml responses - Mirage Laviolette
    • Imported
  • SVC-5647 - Votes: 4 - "Nearby Region" for PG region is Adult infohub. - Clinton Oddfellow
    • Resolved - Expected behavior
  • VWR-11418 - Votes: 4 - Textures in 1.21.6 don't load even after clicking them - dan linden
    • Resolved - needs more info
  • VWR-8615 - Votes: 4 - Media Parcel URL set via llParcelMediaCommandList does not change parcel media type sensibly - and leaves previously set media running - Ai Austin
  • WEB-1548 - Votes: 4 - Viewer 2.0 SLURLS are not compatible with XStreetSL's SLURL field - Ciaran Laval
    • Imported
  • VWR-667 - Votes: 7 - Opening screen doesn't scale to 16:10 (WQXGA) screen size resolution on 30" (2560x1600) - Sascha Vandyke
    • 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-18929 - Votes: 0 - Lag Meter Client Frame below 10 Connection ping time is above 600 - Night Msarko
    • Resolved - Contact Support

Transcript

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