Difference between revisions of "Bug triage/2007-09-17"

From Second Life Wiki
Jump to navigation Jump to search
(→‎Hot by Vote: 8 votes or more)
(→‎Misc Pool: initial list from 'official' general bug triage query)
Line 34: Line 34:


== Misc Pool ==
== Misc Pool ==
 
* {{jira|SVC-29}} - Votes: 2 - XMLRPC sporadically (but usually) very slow - {{User|Apotheus Silverman}}
* {{jira|MISC-33}} - Votes: 68 - Risk API false positives increase - {{User|Apotheus Silverman}}
* {{jira|SVC-120}} - Votes: 0 - Objects -> Permissions -> Modify Rights -> affects Return ability - {{User|Gigs Taggart}}
* {{jira|WEB-86}} - Votes: 3 - Transaction History Total Bug when paying self owned object - {{User|Gypsy Paz}}
* {{jira|VWR-2426}} - Votes: 1 - Missing character in email sent with llEmail - {{User|Simil Miles}}
* {{jira|VWR-500}} - Votes: 4 - Searching inventory for "copy", "modify" etc brings up everything. - {{User|Gigs Taggart}}
* {{jira|WEB-87}} - Votes: 4 - Land Store Map is not Updating - {{User|Gigs Taggart}}
* {{jira|VWR-505}} - Votes: 5 - Alpha-sorting of prims reversed, causing 'solid, non-alpha' prims to disappear. - {{User|beatfox xevious}}
* {{jira|SVC-128}} - Votes: 1 - automatic deletion of group leaves any owned property in "limbo" - {{User|Ahzzmandius Werribee}}
* {{jira|SVC-130}} - Votes: 3 - CC needed with PayPal, contradictory to what sl website says - {{User|3dziggy oh}}
* {{jira|SVC-131}} - Votes: 0 - Physical objects set to slow velocity sometimes stop - {{User|Ralph Doctorow}}
* {{jira|SVC-132}} - Votes: 1 - Setting vehicle buoyancy to very close to neutral stops slow moving vehicles - {{User|Ralph Doctorow}}
* {{jira|VWR-509}} - Votes: 1 - Renamed snaphots return to the default name Snapshot - {{User|Lisa Lowe}}
* {{jira|WEB-92}} - Votes: 0 - "Last Visit" Timestamp Bug - {{User|ViktorScorich Villota}}
* {{jira|WEB-94}} - Votes: 0 - credit card details that have been used for 3 years are now unauthorized - {{User|Fau Ferdinand}}
* {{jira|SVC-139}} - Votes: 0 - llOwnerSay-messages arrive in wrong order - {{User|Homer Horwitz}}
* {{jira|VWR-528}} - Votes: 3 - llSetScale fails on Flexi Objects - {{User|Rifkin Habsburg}}
* {{jira|SVC-141}} - Votes: 1 - Restrict Pushing disallows pushes from objects set to group - {{User|Lex Neva}}
* {{jira|MISC-150}} - Votes: 2 - When a child prim moves with llSetPos, any avatar sitting on it does not move. - {{User|Gigs Taggart}}
* {{jira|VWR-545}} - Votes: 3 - Controls freeze / inventry incomplete / Menus freeze / avatar wrong sex! - {{User|ratus raymaker}}


== Pre-meeting activity ==
== Pre-meeting activity ==

Revision as of 13:29, 15 September 2007


Next meeting: 2007-XX-XX at TIME and PLACE (FIXME). 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

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/2007-09-17/Transcript

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.