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

From Second Life Wiki
Jump to navigation Jump to search
(Initial creation and date change)
 
(9 intermediate revisions by 2 users not shown)
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 (votes over 10, imported removed)]
 
* - {{jira|VWR-2060}} - Votes: 63 - llMapDestination (and possibly SLURLs) sometimes fail to use the target vector data - {{User|Lex Mars}}
** Imported
* - {{jira|SVC-3514}} - Votes: 25 - "llLoadURL(llGetOwner(),....) should not delay the script." - {{User|darling brody}}
** Moved to Feature Request
* - {{jira|VWR-11688}} - Votes: 15 - Oblong Sculpts load slowly - {{User|Aminom Marvin}}
** Resolved - Needs more info
* - {{jira|VWR-5143}} - Votes: 15 - Windlight waves do not change with depth. - {{User|Argent Stonecutter}}
** Moved to Feature Request
* - {{jira|SVC-2741}} - Votes: 14 - llGetBoundingBox returns incorrect values when axis dimensions are less than 0.100 - {{User|Riefa Rennebohm}}
** Imported
* - {{jira|SVC-1519}} - Votes: 13 - Forwarding email to in-world object bounces - {{User|Dedric Mauriac}}
** Resolved - Needs more info
* - {{jira|VWR-3167}} - Votes: 13 - Glow won't work on HUD attachments. - {{User|Edgar Gantenbein}}
** Imported
* - {{jira|VWR-417}} - Votes: 13 - Avatar skins load twice - {{User|Eric Ruban}}
** Imported
* - {{jira|SVC-2287}} - Votes: 12 - llSetScale() fails on dynamic (physical) prims - {{User|Creem Pye}}
** Resolved - Expected Behavior
* - {{jira|SVC-974}} - Votes: 12 - (Havok4) The friction of objects Changed drastically from Havok 1 - {{User|roberto salubrius}}
** Resolved - Needs more info
* - {{jira|MISC-1112}} - Votes: 11 - Autoreturn not functioning - {{User|mystical cookie}}
** Resolved - Support
* - {{jira|VWR-2638}} - Votes: 11 - Double teleport issue - {{User|Salvia Homewood}}
** Imported
* - {{jira|VWR-2083}} - Votes: 11 - Avatar hovers over sit target when typing - {{User|Myria Boa}}
** Imported


== Patches ==
== Patches ==
Line 20: Line 47:


== Misc Pool ==
== Misc Pool ==
[http://www.sljirastats.com/jira_search.php?search=35&output=wiki Misc Pool]


== Pre-meeting activity ==
== Pre-meeting activity ==
Line 28: Line 54:


=== Resolved ===
=== Resolved ===
* - {{jira|VWR-3498}} - Votes: 10 - New Search returning Page Not Available error for all places and regions - {{User|Harleen Gretzky}}- Fixed and closed --[[User:Harleen Gretzky|Harleen Gretzky]] 21:07, 4 April 2009 (UTC)


== Transcript ==
== Transcript ==

Latest revision as of 11:21, 7 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 (votes over 10, imported removed)

Patches

Patches

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.