Bug triage/2007-08-27

From Second Life Wiki
< Bug triage
Revision as of 03:33, 28 August 2007 by Boroondas Gupte (talk | contribs) (→‎Misc Pool: added →‎Unfinished business: subsection title)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


General triage - Monday, 3pm PT (2007-08-27) in the 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

  • VWR-380 - Votes: 6 - Resized Flexible Prims Render Improperly - Khamon Fate
    • Imported
  • VWR-403 - Votes: 6 - llGetBoundingBox is off and getting worse - skidz tweak
    • Resolved, 'needs more info', needs repro steps
  • SVC-116 - Votes: 7 - llGetFreeMemory() doesn't work! - Haravikk Mistral
    • Linked to internal issue, SL-26084, send to mono team
  • SVC-121 - Votes: 8 - Share with group does not respect Role Limitation - Gigs Taggart
    • Imported
  • VWR-463 - Votes: 5 - Blank is a pre-defined texture in client, but not in LSL - Ice Brodie
    • Imported
  • SVC-126 - Votes: 7 - In world map image is not updating - Gigs Taggart
    • Resolved, 'can't repro'

Patches

Misc Pool

  • MISC-43 - Votes: 2 - INV show about 20 'lost & found' folders - mimsy ling
  • SVC-88 - Votes: 3 - llSetRot set roation thru llSetPrimitiveParams causes prim to dirft. - gearsawe stonecutter
    • Imported, should be linked to other similar items
  • VWR-395 - Votes: 3 - HUD incomplete render - Threedee Shepherd
    • Imported
  • VWR-406 - Votes: 0 - Cannot See Other Avatars When Using Voice Beta Build 109 - Jared Halleck
    • Closed, fixed
  • VWR-417 - Votes: 3 - Avatar skins load twice - Eric Ruban
    • Closed, misfiled
  • VWR-422 - Votes: 3 - LSL scripts created on Mac with non-ASCII characters won't compile in Windows viewer - Simon Nolan
    • Imported
  • MISC-112 - Votes: 0 - Attached Flexi Objects dither - Amalia Oumionna
    • Resolved, 'needs more info'
  • SVC-106 - Votes: 2 - Receiving IMs via email from object that has been deleted in-world - Simon Nolan
    • Resolved, 'needs more info'

Unfinished business

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

  • WEB-84 - Votes: 2 - can't download beta grid access for linux - Yorzian Mahana
    • Resolved "Fixed". Cannot reproduce it ATM, but I know it was an issue back when it was filed -- Boroondas Gupte 14:14, 27 August 2007 (PDT)
    • Probably changes to the release process are needed to prevent this to happen again in the future -- Boroondas Gupte 14:14, 27 August 2007 (PDT)

Transcript

Transcript is/will be at Bug triage/2007-08-27/Transcript

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.