Difference between revisions of "Bug triage/2008-08-25"

From Second Life Wiki
Jump to navigation Jump to search
 
(10 intermediate revisions by 2 users not shown)
Line 6: Line 6:


(Move bugs here that have solid repros, or valid patches that you have reviewed)
(Move bugs here that have solid repros, or valid patches that you have reviewed)
* {{jira|VWR-9023}} - Votes: 1 - llResetScript in touch_start() results in double touch_start() event
* {{jira|SVC-2990}} - Votes: 6 - Listen events persist between states in LSL2


== Hot by Vote ==
== Hot by Vote ==
[http://www.sljirastats.com/jira_search.php?search=33&output=wiki High Voted Bugs]


[http://www.sljirastats.com/jira_search.php?search=33&output=wiki High Voted Bugs]
* {{jira|VWR-7509}} - Votes: 11 - Script error when alot of sounds are playing - {{User|Iexo Bethune}}
** Requested the maker and model of the plane for testing
* {{jira|VWR-8717}} - Votes: 22 - Crashes after login when using ATI Catalyst 8.8 - {{User|Dandare Daniels}}
** Imported - Assigned to Zen Linden
* {{jira|VWR-8337}} - Votes: 33 - Slows to 1 frame every 2 sec after login in the second time - {{User|skidz tweak}}
** Resolved - Duplicate of {{jira|VWR-8717}}
* {{jira|VWR-5949}} - Votes: 15 - Out of Memory Error 1.19.1.2/3/4 - {{User|alan edelman}}
** Last triaged date added


== Patches ==
== Patches ==
[http://www.sljirastats.com/jira_search.php?search=34&output=wiki Patches]
[http://www.sljirastats.com/jira_search.php?search=34&output=wiki Patches]
* {{jira|VWR-2710}} - Votes: 2 - Turkish Beta Language Pack For Second Life Viewer - {{User|Vixen Heron}}
** asked to have a post when the file has been updated


== Misc Pool ==
== Misc Pool ==
[http://www.sljirastats.com/jira_search.php?search=35&output=wiki Misc Pool]
[http://www.sljirastats.com/jira_search.php?search=35&output=wiki Misc Pool]
* {{jira|VWR-8761}} - Votes: 0 - Object description change to null is not saved - {{User|Gellan Glenelg}}
** Imported - Viewer
* {{jira|VWR-8283}} - Votes: 0 - UI scales in windowed mode, even if deselected - {{User|Lanita Wingtips}}
** Changed to Feature request


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

Latest revision as of 19:55, 4 September 2008


Next meeting: 2008-08-25 at 12 PM 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)

  • VWR-9023 - Votes: 1 - llResetScript in touch_start() results in double touch_start() event
  • SVC-2990 - Votes: 6 - Listen events persist between states in LSL2

Hot by Vote

High Voted Bugs

  • VWR-7509 - Votes: 11 - Script error when alot of sounds are playing - Iexo Bethune
    • Requested the maker and model of the plane for testing
  • VWR-8717 - Votes: 22 - Crashes after login when using ATI Catalyst 8.8 - Dandare Daniels
    • Imported - Assigned to Zen Linden
  • VWR-8337 - Votes: 33 - Slows to 1 frame every 2 sec after login in the second time - skidz tweak
  • VWR-5949 - Votes: 15 - Out of Memory Error 1.19.1.2/3/4 - alan edelman
    • Last triaged date added

Patches

Patches

  • VWR-2710 - Votes: 2 - Turkish Beta Language Pack For Second Life Viewer - Vixen Heron
    • asked to have a post when the file has been updated

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