Bug triage/2010-08-23

From Second Life Wiki
< Bug triage
Revision as of 15:11, 23 August 2010 by Alexa Linden (talk | contribs) (→‎Misc Pool)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Next meeting: 2010-08-23 at 12:00 PM (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

  • VWR-17069 - Votes: 12 - Implement llTextBox() in the official clients - Qie Niangao
    • Last Triaged date added
  • VWR-20639 - Votes: 11 - Unable to smooth land at edge of regions - Ryker Infinity
    • Resolved - needs more info
  • VWR-16964 - Votes: 138 - PLEASE allow adjustable transparency of ""Nearby Chat"" window, Chat History and Chat ""Toasts"" in Viewer 2.0! - Michi Lumin
    • New, clarified internal issue created.

Misc Pool

Misc Pool

  • WEB-2531 - Votes: 9 - Blogs.secondlife.com / id.secondlife.com (processing login..) loop. - Aoife Lawson
    • Imported
  • SVC-6225 - Votes: 8 - llGetDisplayName and llRequestDisplayName functions must reflect changes to the scriptengine instantly - Zep Palen
    • Closed by creator
  • SVC-6204 - Votes: 3 - Group members still being charged group liability for "parcel directory fee" for long-abandoned land - Kiwini Oe
    • Imported
  • SVC-1911 - Votes: 1 - llAddToLandBanList cannot nonpermnantly ban more than 8640 minutes(6 days) - Dasolo Sautereau
    • Last Triaged date added
  • VWR-13369 - Votes: 3 - Small and zoomed objects (prims) flickering - Kontor Jenkins
    • Resolved - Needs More info
  • VWR-20519 - Votes: 3 - Second Life viewer causes full screen video to freeze. - Nin Nyn
    • Resolved - Needs More info
  • VWR-2981 - Votes: 3 - Opening a notecard with the same name as one that is already open does not work. - Gigs Taggart
    • Imported
  • VWR-8884 - Votes: 3 - Ground level for stand animation while sitting on an object determined by the location the user sat down on the object - Gregory Maurer
    • Imported
  • WEB-1654 - Votes: 2 - When Classified Maturity Ratings options are selected in the search options they are not persisting after clicking next. - Yummi Honi
    • Resolved - Needs More info
  • SVC-1818 - Votes: 2 - New Avatar "friction" breaks content - Lex Neva
    • Imported
  • SVC-6209 - Votes: 2 - collision detection failing in some conditions - Les White
    • Imported
  • VWR-11943 - Votes: 2 - Reference mode can use bounding box center instead of coordinate center - Cinco Pizzicato -
    • Last Triaged date added
  • VWR-15868 - Votes: 2 - Snapshot Freeze-Frame mode not respected by particles, animated textures, and Windlight clouds - Melinda Latynina
    • Last Triaged date added
  • VWR-16195 - Votes: 2 - Non-Trans Texture Eyedropper Duplication - Synaptiq Constantine
    • Resolved - Won't Finish

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