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

From Second Life Wiki
Jump to navigation Jump to search
Line 4: Line 4:


== Hot by Vote ==
== Hot by Vote ==
 
* {{jira|VWR-559}} - Votes: 27 - Various reports of SL freezing all activity, requiring a reboot - {{User|Angelique Rich}}
* {{jira|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 - {{User|Drew Dwi}}
* {{jira|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. - {{User|Jaymes Capalini}}
* {{jira|VWR-922}} - Votes: 12 - WindLight cuts FPS in half; disabling vertex shaders restores fps at expense of fuglyiness - {{User|Zorin Frobozz}}
* {{jira|SVC-53}} - Votes: 9 - Login -> Freeze -> LLCircuit::addCircuitData - {{User|Olivia Yering}}




== Patches ==
== Patches ==
 
* {{jira|WEB-164}} - Votes: 0 - Horizontal scroll bar fix (css) - {{User|Strife Onizuka}}
* {{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|VWR-1344}} - Votes: 2 - Reverse order of popups, so that new ones appear underneath existing ones rather than on top. - {{User|Matthew Dowd}}
* {{jira|VWR-1320}} - Votes: 1 - Viewer crashes the whole computer solid every few minutes under Linux with fglrx drivers and ATI Mobility 9600/9700 - {{User|Henri Beauchamp}}
* {{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-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|SVC-337}} - Votes: 0 - MuteFlags set in a UpdateMuteListEntry message are discarded - {{User|able whitman}}


== Misc Pool ==
== Misc Pool ==
Line 18: Line 34:
* {{jira|WEB-187}} - Votes: 0 - spurious --> symbols in transaction history - {{User|Lex Neva}}
* {{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-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|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|VWR-1350}} - Votes: 0 - Color settings do not appear to be applied to LSL default text - {{User|kerutsen sellery}}

Revision as of 19:01, 24 June 2007


Fast Track Import

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.