Difference between revisions of "Bug triage/2009-08-17"

From Second Life Wiki
Jump to navigation Jump to search
(Date change)
 
(One intermediate revision by one other user not shown)
Line 16: Line 16:
[http://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=11885 High Voted Bugs]
[http://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=11885 High Voted Bugs]


 
* {{jira|SVC-4705}} - Votes: 12 - Estate manager are listed but have no access to menu until a restart - {{User|Holger Gilruth}} - Last Triaged: 8/10/2009 12:00 PM
** Import
* {{jira|VWR-13561}} - Votes: 10 - Island disappearing - {{User|RH Engel}}
** Already exists internally (DEV-32392)


== Misc Pool ==
== Misc Pool ==
[http://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=11885 Misc Pool]
[http://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=11885 Misc Pool]


* {{jira|VWR-15103}} - Votes: 0 - Prims popping out of view when zooming IN - {{User|Tijn Erde}}
** Duplicate of {{jira|VWR-13868}}
* {{jira|VWR-14914}} - Votes: 6 - Intermittent FPS drop related to "audio" (main thread hangs often on openal lock) - {{User|Aleric Inglewood}} - Last Triaged: 8/13/2009 12:00 PM
** Import
* {{jira|VWR-15075}} - Votes: 1 - Massive inventory failures due to recent changes - {{User|Little Ming}}
** Contact Support
* {{jira|MISC-3242}} - Votes: 0 - I can not currently Teleport to different sims, its seems selective to allow me to go to 3 sims, but thats it - {{User|Anpu Nitely}}
** Contact Support
* {{jira|SVC-1839}} - Votes: 0 - Unable to save new or existing scripts after editing the script. - {{User|Erzsabet Bergbahn}} - Last Triaged: 7/27/2009 1:25 PM
** Relate to {{jira|SVC-114}}
* {{jira|VWR-13669}} - Votes: 0 - secondlife fails to start on Fedora 11 - {{User|Gustaf Schmertzin}}
** NMI
* {{jira|VWR-14107}} - Votes: 0 - Random and Substantial Frame Rate Drops - {{User|Szae Zuhra}}
** Import
* {{jira|VWR-14447}} - Votes: 0 - SL crashes entire computer - {{User|Feldspar Millgrove}}
** Contact Support
* {{jira|VWR-14650}} - Votes: 0 - Severe constante crashes Even with this new computer. Never had this issue in my three year experience with SL - {{User|Richey Carnell}}
** Import
* {{jira|VWR-14794}} - Votes: 0 - Update Client to Allow Use of libjpeg 7 - {{User|Zauber Exonar}}
** NMI
== Pre-meeting activity ==
== 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.
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.

Latest revision as of 10:24, 19 August 2009



Next meeting: 2009-08-17 at 12:00 NOON 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

High Voted Bugs

  • SVC-4705 - Votes: 12 - Estate manager are listed but have no access to menu until a restart - Holger Gilruth - Last Triaged: 8/10/2009 12:00 PM
    • Import
  • VWR-13561 - Votes: 10 - Island disappearing - RH Engel
    • Already exists internally (DEV-32392)

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-08-17/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.