Bug triage/2010-06-07

From Second Life Wiki
< Bug triage
Revision as of 08:30, 9 June 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-06-07 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)

  • Solid Repro
    • SVC-5287 - Votes: 1 - Mono compiled scripts fail to properly convert float to string - Twisted Pharaoh (second comment script)
    • Imported

Hot by Vote

High Voted Bugs

Misc Pool

Misc Pool

  • SVC-5894 - Votes: 5 - New LSL function - llGetAgentRealSize() which reports the correct agent size as opposed to llGetAgentSize() which can't be fixed because of backward compatibility - Domchi Underwood
    • Moved to Feature Request
  • VWR-15563 - Votes: 3 - Client gives up before finishing to load full inventory due to packet loss - TigroSpottystripes Katsu
    • Moved to SVC
  • VWR-4120 - Votes: 3 - "When dragging item from notecard to inventory, it's put into Landmarks / Objects / Notecards / etc., instead of where it's dragged" - Domchi Underwood
    • Imported
  • VWR-4325 - Votes: 3 - "Unable to apply no-copy texture to prim from UI texture picker, but able to via script" - Ashrilyn Hayashida
    • Resolved - Expected Behavior
  • VWR-7972 - Votes: 3 - Grid Extents not completely visible - BETLOG Hax
    • Resolved - Needs More info
  • VWR-14315 - Votes: 3 - Snapshot Preview shows cropped view - Dil Spitz
    • Imported
  • WEB-2035 - Votes: 2 - XstreetSL.com feedback survey appears on every page load of the session, ignores "don't ask again" - Adeon Writer
    • Imported
  • SVC-5251 - Votes: 2 - Offline messages not being sent to email - Kurt Mortensen
    • resolved - Support
  • SVC-1797 - Votes: 2 - "On sim border crossing, seated avatar pos/rot changs made with llSetLinkPrimitiveParams are reverted" - Fake Fitzgerald
    • Last Traiged date added
  • SVC-2156 - Votes: 2 - llLookAt - Reverts to previous rotation when prim becomes physical - darling brody
    • Imported
  • SVC-2234 - Votes: 2 - Gain of collision and ground collision sounds seems wrong - Day Oh
    • Imported
  • SVC-2424 - Votes: 2 - llAngleBetween() is sometimes inaccurate - Lex Neva
    • Resolved - Needs More info
  • SVC-3580 - Votes: 2 - Plywood box rezzer at ANWR throws new boxes instead of dropping them unless av stands on platform - Maggie Darwin
    • Imported
  • SVC-3695 - Votes: 2 - llRezObject() fails when owner not present - Lear Cale
    • Imported
  • SVC-387 - Votes: 2 - Timers in scripts stop after server crash - Mark Busch
    • 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

Transcript

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