Difference between revisions of "Bug triage/2008-03-03"

From Second Life Wiki
Jump to navigation Jump to search
Line 46: Line 46:
== 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|MISC-922}} - Votes: 0 - Losing friends intermittantly of my list - {{User|Meaghan Winthorpe}}
* {{jira|VWR-4515}} - Votes: 0 - Friends dissappaer from list - no, the other one has NOT deleted me - {{User|Rita Munro}}
* {{jira|SVC-1341}} - Votes: 0 - Mono beta: Large empty loops cause sim to stall. - {{User|davie zinner}}
* {{jira|SVC-1341}} - Votes: 0 - Mono beta: Large empty loops cause sim to stall. - {{User|davie zinner}}
* {{jira|VWR-5167}} - Votes: 0 - WindLight 1.19.0 (80044) Does not Recall which display it is supposed to run in. - {{User|phoenixflames kukulcan}}
* {{jira|VWR-5167}} - Votes: 0 - WindLight 1.19.0 (80044) Does not Recall which display it is supposed to run in. - {{User|phoenixflames kukulcan}}
Line 57: Line 57:
* {{jira|VWR-4987}} - Votes: 0 - Contradictory script reports - {{User|eren padar}}
* {{jira|VWR-4987}} - Votes: 0 - Contradictory script reports - {{User|eren padar}}
* {{jira|VWR-5171}} - Votes: 2 - First Look-Windlight: Hovertext on subprims stops prims from appearing to move - {{User|Kayla Stonecutter}}
* {{jira|VWR-5171}} - Votes: 2 - First Look-Windlight: Hovertext on subprims stops prims from appearing to move - {{User|Kayla Stonecutter}}
* {{jira|VWR-4515}} - Votes: 0 - Friends dissappaer from list - no, the other one has NOT deleted me - {{User|Rita Munro}}
* {{jira|SVC-1237}} - Votes: 0 - WHen I log in, I get to the screen asking me to select my Avatar's gender, and then the system freezes, and becomes non-responsive if I click again, ever.... - {{User|Caribkat Jaxxon}}
* {{jira|SVC-1237}} - Votes: 0 - WHen I log in, I get to the screen asking me to select my Avatar's gender, and then the system freezes, and becomes non-responsive if I click again, ever.... - {{User|Caribkat Jaxxon}}
* {{jira|VWR-4980}} - Votes: 0 - When zooming or panning or even just moving in a confined space, SL windlight viewer loses all graphics. Only the frame remains - {{User|Angel Sunset}}
* {{jira|VWR-4980}} - Votes: 0 - When zooming or panning or even just moving in a confined space, SL windlight viewer loses all graphics. Only the frame remains - {{User|Angel Sunset}}

Revision as of 11:42, 3 March 2008


Next meeting: 2008-03-03 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-5198 - Votes: 0 - Quicktime no longer works on windows 2000 - lightwave valkyrie
    • Since Apple no longer supports QuickTime on Windows 2000 and Microsoft has Windows 2000 in extended support (security fixes only), maybe Linden Lab should consider no longer supporting Windows 2000.
  • VWR-4887 - Votes: 7 - Windows pop up strangely distorted/deformed - Randall Lovenkraft
  • VWR-4575 - Votes: 103 - IM tabs no longer blink when new IM text is received - Onyx Halberd

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-03-03/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.