Difference between revisions of "Bug triage/2007-06-25"

From Second Life Wiki
Jump to navigation Jump to search
Line 1: Line 1:
{{Bug triage}}
{{Bug triage}}


No agenda yet.
== Fast Track Import ==
 
== Hot by Vote ==
 
 
 
== Patches ==
 
 
== Misc Pool ==
 
* {{jira|SVC-358}} - Votes: 0 - Couldnt "Read" the memory when enable full screen! - {{User|fatepower snook}}
* {{jira|VWR-1358}} - Votes: 0 - Some transparent objects show up as if highlight transparent was enabled - {{User|Dale Glass}}
* {{jira|VWR-1357}} - Votes: 0 - SLVoice subapp sends voice data when Talk is not pressed, but push-to-talk IS enabled - {{User|Llewelyn Mistral}}
* {{jira|SVC-356}} - Votes: 0 - llCreateLink can fail to link sets of linked prims - {{User|Eata Kitty}}
* {{jira|WEB-187}} - Votes: 0 - spurious --> symbols in transaction history - {{User|Lex Neva}}
* {{jira|VWR-1355}} - Votes: 0 - Implementation of next_power_of_two in llmath/llvolume - {{User|Nicholaz Beresford}}
* {{jira|VWR-1354}} - Votes: 1 - Possible crash in lldrawpool - {{User|Nicholaz Beresford}}
* {{jira|VWR-1353}} - Votes: 1 - Misleading variable names in LLTextEditor - {{User|Alissa Sabre}}
* {{jira|VWR-1352}} - Votes: 1 - A strange copy operation of LLStyle - {{User|Alissa Sabre}}
* {{jira|VWR-1351}} - Votes: 1 - Violation against the conding standard in llfloaterchat.cpp - {{User|Alissa Sabre}}
* {{jira|MISC-334}} - Votes: 0 - Missing inventory after login - {{User|bettina wunderlich}}
* {{jira|VWR-1350}} - Votes: 0 - Color settings do not appear to be applied to LSL default text - {{User|kerutsen sellery}}
* {{jira|WEB-186}} - Votes: 0 - Billing and Trading Limits Error - {{User|Jericho Drake}}
* {{jira|MISC-333}} - Votes: 11 - Animated sculpties  - {{User|nomasha syaka}}
* {{jira|VWR-1347}} - Votes: 0 - Head transparent in changing appearance - {{User|Benja Kepler}}
* {{jira|VWR-1345}} - Votes: 0 - Voice client lacks the ability to mute objects from chat history - {{User|atlwolf blabbermouth}}
* {{jira|VWR-1343}} - Votes: 0 - SL Crashes with nVIDIA Stereo driver - {{User|Kyra Arkin}}
* {{jira|VWR-1342}} - Votes: 0 - Can initiate/join group voice chat. Cannot initiate spatial or individual voice chat. - {{User|Ryu Darragh}}
* {{jira|VWR-1341}} - Votes: 0 - optional sound devices don't work in outer islands, also trouble connecting to voice - {{User|AmigaDragon Greatrex}}
* {{jira|WEB-185}} - Votes: 0 - HTML in support link - {{User|SignpostMarv Martin}}
* {{jira|VWR-1340}} - Votes: 0 -  " Active Group" above name wil not display - {{User|Oddr Stenvaag}}
* {{jira|SVC-352}} - Votes: 0 - Login fails sporadically - {{User|Sadako Shikami}}
 
 
 
 
{{Bug List Instructions}}
{{Bug List Instructions}}

Revision as of 18:35, 24 June 2007


Fast Track Import

Hot by Vote

Patches

Misc Pool



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.