Difference between revisions of "Bug triage/2008-10-15"

From Second Life Wiki
Jump to navigation Jump to search
 
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
#REDIRECT [[Bug triage/2008-10-08]]
<!-- Edit below to add or change issues.  To update the future formatting and text of this page, change [[Template:Triage Template]] instead. -->{{Bug triage}}
 
Next meeting: 2008-10-15 at 3pm PST at {{User|Bridie Linden}}'s house.
 
== Import? 1.21 RC5 ==
* {{jira|VWR-3102}} - Votes: 5 - Stars infront of the moon - {{User|Delu Elytis}}
* {{jira|VWR-9330}} - Votes: 5 - IM windows say "typing..." even when the other person is not. - {{User|Khyota Wulluf}}
* {{jira|VWR-9583}} - Votes: 3 - Sporadic Loading Problems with Lossless Sculpt Maps Greater than 16384 Pixels in Area - {{User|Aminom Marvin}}
* {{jira|VWR-9504}} - Votes: 2 - 1 21.4 causing nvidia 8600 grapic card to stop responding - {{User|nikita jefferson}}
* {{jira|VWR-9663}} - Votes: 2 - CTRL+dragging a non-physical object is very limited in 1.21 RC - {{User|Phantom Ninetails}}
* {{jira|VWR-5764}} - Votes: 1 - Media URL appears on all not-loaded texture surfaces instead of gray after teleporting or on playing. - {{User|Jam Meili}}
* {{jira|VWR-9733}} - Votes: 1 - Mini Map can not regain focus with Statstics window in focus - {{User|Garn Conover}}
* {{jira|VWR-9518}} - Votes: 1 - RC4/1.21.4(98167) is crashing display drivers - {{User|Sugarcult Dagger}}
* {{jira|VWR-9261}} - Votes: 0 - RC 1.21.2 Texture Picker turns all Non-Alpha textures bright yellow - {{User|Shadowquine Maltz}}
* {{jira|VWR-9077}} - Votes: 0 - i get pauses when im on my land  with another AV on my land  - {{User|rickk vernet}}
* {{jira|VWR-9305}} - Votes: 0 - Missing textures on random objects - {{User|Shadow Pidgeon}}
* {{jira|VWR-9313}} - Votes: 0 - Mute list bug - Viewing mute list. - {{User|scotts winkler}}
* {{jira|VWR-9336}} - Votes: 0 - Graphics Tab Bug on Sliders - {{User|Alvi Halderman}}
* {{jira|VWR-9376}} - Votes: 0 - Significant loss of fps performance on PPC Mac - {{User|Vivienne Schell}}
* {{jira|VWR-9382}} - Votes: 0 - Sounds cache terribly slow on linux. - {{User|Khyota Wulluf}}
* {{jira|VWR-8971}} - Votes: 0 - Unable to re-open RC 1.21 viewer after crash - {{User|Shadowquine Maltz}}
* {{jira|VWR-9343}} - Votes: 0 - When the "Chat Bar" is shown in the left bottom corner of the screen, there is no easy way to get rid of it if you don't have the taskbar on screen. It would be nice to add "Chat Bar" to the "View pulldown menu". - {{User|scarlett glenelg}}
 
== Fast Track Import ==
 
(Move bugs here that have solid repros, or valid patches that you have reviewed)
 
== Hot by Vote ==
 
[http://www.sljirastats.com/jira_search.php?search=33&output=wiki High Voted Bugs]
 
== Patches ==
[http://www.sljirastats.com/jira_search.php?search=34&output=wiki Patches]
 
== Misc Pool ==
[http://www.sljirastats.com/jira_search.php?search=35&output=wiki 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/2008-10-15/Transcript]]
 
== Creating An Agenda ==
{{Bug List Instructions}}

Latest revision as of 10:14, 22 October 2008


Next meeting: 2008-10-15 at 3pm PST at Bridie Linden's house.

Import? 1.21 RC5

Fast Track Import

(Move bugs here that have solid repros, or valid patches that you have reviewed)

Hot by Vote

High Voted Bugs

Patches

Patches

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/2008-10-15/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.