Bug triage/2010-06-07
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
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)
- Look at the results of one of these queries
- General triage: "Viewer 2 Bug Triage" (sorted by LL ID, Created, Last Triaged):
- UI triage:
- https://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=10470 (The selected filter with id '10470' does not exist.)
- (Note: there's no hard and fast rule that says these are the only valid queries. If you feel there's a better query one particular week, use that.)
- Save a copy of the XML version of the query
- Run this perl script on the xml file
<perl>
- !/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.
- if you do not have access to a perl interpreter. There is a ported version of the script on PHP, located here: http://jirafiller.technokittydevelopment.com/ made by roberto salubrius