Difference between revisions of "Bug triage/2009-05-28"

From Second Life Wiki
Jump to navigation Jump to search
Line 23: Line 23:
* {{jira|VWR-13372}} - 2 votes - Alpha textures flicker and vanish with shadows enabled (old bug from Kristens) - [[User:Garn Conover|Garn Conover]]
* {{jira|VWR-13372}} - 2 votes - Alpha textures flicker and vanish with shadows enabled (old bug from Kristens) - [[User:Garn Conover|Garn Conover]]
* {{jira|VWR-13668}} - 1 votes - Sorting Top Scripts in Estate Manager causes many repeating "var PublicURLs not found" errors which hang the viewer for long times. - [[User:Allen Kerensky|Allen Kerensky]]
* {{jira|VWR-13668}} - 1 votes - Sorting Top Scripts in Estate Manager causes many repeating "var PublicURLs not found" errors which hang the viewer for long times. - [[User:Allen Kerensky|Allen Kerensky]]
* {{jira|VWR-13672}} - 1 votes - Inventory appearing outside the two main folders.  Happened after detaching item from avatar (not from HUD). - [[User:Damian]]
* {{jira|VWR-13647}} - 1 votes - New Release candidate crashes on MacBook - [[User:Blackfyr McBride|Blackfyr McBride]]
* {{jira|VWR-13647}} - 1 votes - New Release candidate crashes on MacBook - [[User:Blackfyr McBride|Blackfyr McBride]]
* {{jira|VWR-13353}} - 1 votes - Can't override default command line arguments - [[User:Nedrae Messmer|Nedrae Messmer]]
* {{jira|VWR-13353}} - 1 votes - Can't override default command line arguments - [[User:Nedrae Messmer|Nedrae Messmer]]
Line 41: Line 40:


=== Resolved ===
=== Resolved ===
 
* {{jira|VWR-13672}} - 1 votes - Inventory appearing outside the two main folders.  Happened after detaching item from avatar (not from HUD). - [[User:Damian]]
** Marked as a Contact Support - many similar issues reported on {{jira|VWR-8438}} see also comment on {{jira|VWR-12694}}





Revision as of 02:00, 28 May 2009



Next meeting: 2009-05-28 at 2:30 AM SLT at Louise's Office in Cirano. See Bug triage for details.

1.23 RC/PN by vote

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

  • VWR-13672 - 1 votes - Inventory appearing outside the two main folders. Happened after detaching item from avatar (not from HUD). - User:Damian
    • Marked as a Contact Support - many similar issues reported on VWR-8438 see also comment on VWR-12694


Transcript

Transcript is/will be at Bug triage/2009-05-28/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.