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

From Second Life Wiki
Jump to navigation Jump to search
(→‎Patches: Added a comment on VWR-1109.)
Line 24: Line 24:
* {{jira|VWR-1301}} - Votes: 0 - Dead code in indra/lscript/lscript_execute/ - {{User|catherine pfeffer}}
* {{jira|VWR-1301}} - Votes: 0 - Dead code in indra/lscript/lscript_execute/ - {{User|catherine pfeffer}}
* {{jira|VWR-1109}} - Votes: 1 - Some source files in *.zip source distribution contain lines that end with LF only - {{User|Alissa Sabre}}
* {{jira|VWR-1109}} - Votes: 1 - Some source files in *.zip source distribution contain lines that end with LF only - {{User|Alissa Sabre}}
*: Well, I don't support the idea to apply the attached patch.  Instead, I want to '''fix the cause''' of this problem.  Please see [http://jira.secondlife.com/browse/VWR-1109#action_18088 my last comment] to the issue. --[[User:Alissa Sabre|Alissa Sabre]] 06:49, 25 June 2007 (PDT)
* {{jira|VWR-733}} - Votes: 9 - Change Request:  Excess texture buffer memory size resulting in disk thrashing/crashes/virt memory swapping - {{User|Nicholaz Beresford}}
* {{jira|VWR-733}} - Votes: 9 - Change Request:  Excess texture buffer memory size resulting in disk thrashing/crashes/virt memory swapping - {{User|Nicholaz Beresford}}
* {{jira|VWR-654}} - Votes: 2 - Automatically Scroll output window for Tools / Reset all Scripts - {{User|Zi Ree}}
* {{jira|VWR-654}} - Votes: 2 - Automatically Scroll output window for Tools / Reset all Scripts - {{User|Zi Ree}}

Revision as of 06:49, 25 June 2007


Fast Track Import

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

Hot by Vote

  • VWR-559 - Votes: 27 - Various reports of SL freezing all activity, requiring a reboot - Angelique Rich
  • SVC-206 - Votes: 15 - When new users teleport into a non-empty region, Agent Time spikes and sim performance drops signfigantly for a short period time - Drew Dwi
  • WEB-174 - Votes: 12 - According to the website, Lindens cannot be purchased through Lindex ATM's, but in fact, I can't purchase Linden's at all through the website either. - Jaymes Capalini
  • VWR-922 - Votes: 12 - WindLight cuts FPS in half; disabling vertex shaders restores fps at expense of fuglyiness - Zorin Frobozz
  • SVC-53 - Votes: 9 - Login -> Freeze -> LLCircuit::addCircuitData - Olivia Yering


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.