Difference between revisions of "Bug triage/2010-06-07"

From Second Life Wiki
Jump to navigation Jump to search
Line 11: Line 11:
* Solid Repro
* Solid Repro
** {{jira|SVC-5287}} - Votes: 1 - Mono compiled scripts fail to properly convert float to string - {{user|Twisted Pharaoh}} (second comment script)
** {{jira|SVC-5287}} - Votes: 1 - Mono compiled scripts fail to properly convert float to string - {{user|Twisted Pharaoh}} (second comment script)
** Imported


== Hot by Vote ==
== Hot by Vote ==

Revision as of 10:14, 8 June 2010

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
  • 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
  • VWR-4325 - Votes: 3 - "Unable to apply no-copy texture to prim from UI texture picker, but able to via script" - Ashrilyn Hayashida
  • WEB-2035 - Votes: 2 - XstreetSL.com feedback survey appears on every page load of the session, ignores "don't ask again" - Adeon Writer
  • SVC-1797 - Votes: 2 - "On sim border crossing, seated avatar pos/rot changs made with llSetLinkPrimitiveParams are reverted" - Fake Fitzgerald
  • SVC-2234 - Votes: 2 - Gain of collision and ground collision sounds seems wrong - Day Oh
  • SVC-3580 - Votes: 2 - Plywood box rezzer at ANWR throws new boxes instead of dropping them unless av stands on platform - Maggie Darwin

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.