Difference between revisions of "Bug triage/2009-09-09"

From Second Life Wiki
Jump to navigation Jump to search
 
(28 intermediate revisions by 4 users not shown)
Line 3: Line 3:
<onlyinclude>
<onlyinclude>
{{Triage Template/schedule
{{Triage Template/schedule
|Date=2009-09-02
|Date=2009-10-07
|Time=2:00 PM SLT
|Time=2:00 PM PDT
|Place= [http://slurl.com/secondlife/Denby/77/80/351 Bambers' Office at Denby]
|Place= [http://slurl.com/secondlife/Denby/77/80/351 Bambers' Office at Denby]
|}}
|}}
</onlyinclude>
</onlyinclude>
<br>
<br>


Next meeting: {{#var:date}} at {{#var:time}} at {{#var:place}}.  See [[Bug triage]] for details.
Next meeting: {{#var:date}} at {{#var:time}} at {{#var:place}}.  See [[Bug triage]] for details.
Line 17: Line 18:
== Hot by Vote ==
== Hot by Vote ==
[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]


== 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|SVC-4775}} - 0 votes - Grey Goo fence is too strong for objects on their owner's land - [[User:Dale Innis|Dale Innis]]
** Moved to VWR
* {{jira|VWR-15361}} - 0 votes - Textures failing to reload after asset failure - [[User:Luigio Andel|Luigio Andel]]
* {{jira|VWR-15347}} - 0 votes - Ground texture does not blend smoothly. - [[User:Squirrel Wood|Squirrel Wood]]
* {{jira|VWR-15335}} - 0 votes - CPU Excessively High when RC Viewer in focus - [[User:Phoenix Darkstone|Phoenix Darkstone]]
* {{jira|VWR-15308}} - 0 votes - Audiodg.exe cpu usage spikes when in Second LIfe - [[User:Jen Noel|Jen Noel]]
* {{jira|VWR-15306}} - 4 votes - Degradation in overall performance after upgrading from Mac OS X 10.5.8 to 10.6 (Snow Leopard) - [[User:Sandor Balczo|Sandor Balczo]]
* {{jira|SVC-4757}} - 0 votes - Linden God Mode Breaks Objects Owned by Lindens - [[User:darling brody|darling brody]]
* {{jira|WEB-1281}} - 0 votes - Selecting a date from the new Event calendar and then selecting create new event opens the new event entry page to the current date rather than the date selected. - [[User:kantbe thursday|kantbe thursday]]
* {{jira|WEB-1280}} - 0 votes - Agreement to Event Posting TOS is required for every posting made within the same sesson - [[User:kantbe thursday|kantbe thursday]]


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


=== Resolved ===
=== Resolved ===
* {{jira|VWR-15363}} - 0 votes - after updating my netgear modem firmware i cannot load inventory and therefore cant use SL - [[User:Khriss Lanley|Khriss Lanley]]
** Contact Support


== Transcript ==
== Transcript ==

Latest revision as of 08:14, 16 March 2010





Next meeting: 2009-10-07 at 2:00 PM PDT at Bambers' Office at Denby. 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

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-10-07/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.