Difference between revisions of "Bug triage/2009-04-06"

From Second Life Wiki
Jump to navigation Jump to search
(Insert patches using auto-list)
(Added votes over 10 from Alexa's Monday PJIRA Triage filter)
Line 14: Line 14:


== Hot by Vote ==
== Hot by Vote ==
[http://www.sljirastats.com/jira_search.php?search=33&output=wiki High Voted Bugs]
[http://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=11885 Monday PJIRA Triage Filter]
* - {{jira|VWR-2060}} - Votes: 63 - llMapDestination (and possibly SLURLs) sometimes fail to use the target vector data - {{User|Lex Mars}}
* - {{jira|SVC-3514}} - Votes: 25 - "llLoadURL(llGetOwner(),....) should not delay the script." - {{User|darling brody}}
* - {{jira|VWR-755}} - Votes: 20 - Floating (Hover) Text penetrates walls - {{User|Ee Maculate}}
* - {{jira|VWR-11688}} - Votes: 15 - Oblong Sculpts load slowly - {{User|Aminom Marvin}}
* - {{jira|VWR-5143}} - Votes: 15 - Windlight waves do not change with depth. - {{User|Argent Stonecutter}}
* - {{jira|SVC-2741}} - Votes: 14 - llGetBoundingBox returns incorrect values when axis dimensions are less than 0.100 - {{User|Riefa Rennebohm}}
* - {{jira|SVC-1519}} - Votes: 13 - Forwarding email to in-world object bounces - {{User|Dedric Mauriac}}
* - {{jira|VWR-3167}} - Votes: 13 - Glow won't work on HUD attachments. - {{User|Edgar Gantenbein}}
* - {{jira|VWR-417}} - Votes: 13 - Avatar skins load twice - {{User|Eric Ruban}}
* - {{jira|SVC-2287}} - Votes: 12 - llSetScale() fails on dynamic (physical) prims - {{User|Creem Pye}}
* - {{jira|SVC-974}} - Votes: 12 - (Havok4) The friction of objects Changed drastically from Havok 1 - {{User|roberto salubrius}}
* - {{jira|MISC-1112}} - Votes: 11 - Autoreturn not functioning - {{User|mystical cookie}}
* - {{jira|VWR-2638}} - Votes: 11 - Double teleport issue - {{User|Salvia Homewood}}
* - {{jira|VWR-2083}} - Votes: 11 - Avatar hovers over sit target when typing - {{User|Myria Boa}}
* - {{jira|VWR-3498}} - Votes: 10 - New Search returning Page Not Available error for all places and regions - {{User|Harleen Gretzky}}
* - {{jira|MISC-1520}} - Votes: 10 - Items Rezzed In World Disappearing - {{User|Czari Zenovka}}
* - {{jira|SVC-2689}} - Votes: 10 - While on beta grid on server 1.23 noticed that either one of two functions are destroyed. - {{User|Darkstar Heliosense}}
* - {{jira|SVC-3075}} - Votes: 10 - "Objects allowed to enter ""No Object Entry"" land against SIM borders." - {{User|mhisani naumova}}
* - {{jira|SVC-3716}} - Votes: 10 - llEmail() to an external email addres fails since jan/18 2009 - {{User|mandy medusa}}
* - {{jira|VWR-1411}} - Votes: 10 - Mac Voice Viewer doesn't allow you to specify OSX Core Audio devices channels - {{User|Emma Nowhere}}
* - {{jira|VWR-3849}} - Votes: 10 - 12.15.07: Group owner can not view all members in group details - {{User|fredek petrov}}
* - {{jira|VWR-3879}} - Votes: 10 - Underground Prims Visible through Linden Grass - {{User|Beezle Warburton}}
* - {{jira|SVC-954}} - Votes: 10 - Deleted user's Objects cannot be removed in bulk using the Estate Manager window. - {{User|Miscellaneous Fluffy}}
* - {{jira|VWR-4098}} - Votes: 10 - Avatar hands frequently and seemingly randomly go open with spread fingers. - {{User|Vaelissa Cortes}}
* - {{jira|VWR-9974}} - Votes: 10 - Snapshot: High-res snapshot results in 3 striped images or 9 tiled images - {{User|Hitomi Mokusei}}
* - {{jira|WEB-947}} - Votes: 10 - Some last names are not completely retired - {{User|Adz Childs}}


== Patches ==
== Patches ==

Revision as of 12:18, 4 April 2009



Next meeting: 2009-04-06 at 12:00 PM SLT 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

Monday PJIRA Triage Filter

Patches

Patches

Misc Pool

Misc Pool

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/2009-04-06/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.