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

From Second Life Wiki
Jump to navigation Jump to search
m (→‎Patches: votes++)
(No difference)

Revision as of 20:58, 29 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

  • WEB-164 - Votes: 1 - Horizontal scroll bar fix (css) - Strife Onizuka
  • VWR-1355 - Votes: 0 - Implementation of next_power_of_two in llmath/llvolume - Nicholaz Beresford
  • VWR-1354 - Votes: 1 - Possible crash in lldrawpool - Nicholaz Beresford
  • VWR-1353 - Votes: 2 - Misleading variable names in LLTextEditor - Alissa Sabre
    source cleanup patch. Pretty, obvious, just needs to be applied (NB)
  • VWR-1352 - Votes: 1 - A strange copy operation of LLStyle - Alissa Sabre
    from the looks of it, this one (the source, not the patch) is an error (NB)
  • VWR-1351 - Votes: 2 - Violation against the conding standard in llfloaterchat.cpp - Alissa Sabre
    source cleanup patch. Pretty, obvious, just needs to be applied (NB)
  • VWR-1344 - Votes: 3 - Reverse order of popups, so that new ones appear underneath existing ones rather than on top. - Matthew Dowd
  • VWR-1320 - Votes: 2 - Viewer crashes the whole computer solid every few minutes under Linux with fglrx drivers and ATI Mobility 9600/9700 - Henri Beauchamp
  • VWR-1301 - Votes: 0 - Dead code in indra/lscript/lscript_execute/ - catherine pfeffer
  • VWR-1109 - Votes: 1 - Some source files in *.zip source distribution contain lines that end with LF only - 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 my last comment to the issue. --Alissa Sabre 06:49, 25 June 2007 (PDT)
  • VWR-733 - Votes: 9 - Change Request: Excess texture buffer memory size resulting in disk thrashing/crashes/virt memory swapping - Nicholaz Beresford
  • VWR-654 - Votes: 2 - Automatically Scroll output window for Tools / Reset all Scripts - Zi Ree
  • SVC-337 - Votes: 0 - MuteFlags set in a UpdateMuteListEntry message are discarded - able whitman

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.