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

From Second Life Wiki
Jump to navigation Jump to search
(→‎Patches: initial list of patches)
(→‎Hot by Vote: 8 votes or more)
Line 8: Line 8:


== Hot by Vote ==
== Hot by Vote ==
* {{jira|MISC-33}} - Votes: 68 - Risk API false positives increase - {{User|Apotheus Silverman}}
* {{jira|SVC-553}} - Votes: 24 - numerous reports of objects, notecards, scripts, gestures "missing from database" - {{User|Lex Neva}}
* {{jira|SVC-523}} - Votes: 15 - Object entry restriction not enabling on parcel - {{User|leena deschanel}}
* {{jira|WEB-104}} - Votes: 13 - Downloaded transactions do not include Region - {{User|alpha2 zenovka}}
* {{jira|MISC-326}} - Votes: 13 - Governor Linden owned parcels do not have uniform parcel settings which allows griefers to create parcel infringing and other objectionable objects that are not affected by auto-return. - {{User|Hoshi Kiama}}
* {{jira|VWR-852}} - Votes: 11 - no-transfer textures not searchable via texture picker - {{User|SignpostMarv Martin}}
* {{jira|VWR-1108}} - Votes: 10 - No voice and related functions - {{User|Aodhan McDunnough}}
* {{jira|MISC-325}} - Votes: 10 - Avatar arms and legs turn black / psychedelic - {{User|sasha vollmar}}
* {{jira|VWR-2390}} - Votes: 9 - unable to select texture on a friend's prim despite full permissions - {{User|McCabe Maxsted}}
* {{jira|VWR-1319}} - Votes: 9 - USB headset on Mac works differently on mainland vs. islands - {{User|martholomew mip}}
* {{jira|VWR-996}} - Votes: 8 - wrong visualisation of animations - {{User|Doris Haller}}
* {{jira|VWR-1799}} - Votes: 8 - Voice not Working - {{User|Taran Asbrink}}
* {{jira|SVC-483}} - Votes: 8 - Script is missing from Database - {{User|Laronzo Fitzgerald}}
* {{jira|VWR-2148}} - Votes: 8 - Object Missing from Database - {{User|silas scarborough}}
* {{jira|VWR-2387}} - Votes: 8 - Animations always drift when uploading with an inner loop of anything except 0% - 100% - {{User|Chavo Raven}}


== Patches ==
== Patches ==

Revision as of 13:22, 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.