Difference between revisions of "Bug triage/2008-05-12"

From Second Life Wiki
Jump to navigation Jump to search
Line 29: Line 29:
== Misc Pool ==
== Misc Pool ==
[http://www.sljirastats.com/jira_search.php?search=35&output=wiki Misc Pool]
[http://www.sljirastats.com/jira_search.php?search=35&output=wiki Misc Pool]
* {{jira|VWR-6746}} - Votes: 0 - Health Percentage Unreadable - {{User|Frank Skosh}}
* {{jira|VWR-2728}} - Votes: 1 - Memory autorelease pool problem - system freezes. - {{User|Argent Stonecutter}}
* {{jira|VWR-6512}} - Votes: 0 - Windows Vista reports Out of Memory  error  and crashes SL viewer. - {{User|Nikolai Kidd}}
* {{jira|VWR-6506}} - Votes: 0 - Different Skins become the same skin - {{User|Chenneoue Flow}}
* {{jira|VWR-6663}} - Votes: 0 - 16x Antialias blurs UI and chat text - {{User|myf mcmahon}}
* {{jira|VWR-2496}} - Votes: 2 - Linking 255 or 256 prims results in two linksets - {{User|Ochi Wolfe}}
* {{jira|VWR-5311}} - Votes: 10 - Group chat lag in large groups (>1000 members) like Scripters Support Group. - {{User|MartinRJ Fayray}}
* {{jira|VWR-6647}} - Votes: 0 - Setting the joystick feathering above the default results in an undamped oscillation of the view with a SpaceNavigator - {{User|Ralph Doctorow}}
* {{jira|VWR-6479}} - Votes: 0 - Joystick support: Roll Scale default is broken since 1.20 RC - {{User|Domchi Underwood}}
* {{jira|SVC-1731}} - Votes: 2 - Unable to access Region from Teleport /LandMark or from logging into Second Life. Only flying in from an adjacent region works. - {{User|taradesh jewell}}
* {{jira|VWR-6082}} - Votes: 0 - Time dialations are falling to near crash state in Speenu sim - {{User|Bri Koolhaas}}
* {{jira|VWR-5459}} - Votes: 0 - Viewer crashes when gstreamer fails to load plugins - {{User|Ilse Mannonen}}
* {{jira|VWR-6412}} - Votes: 0 - Scrolling in LSL Editor is bugged (parts left out) - {{User|Tillie Ariantho}}
* {{jira|SVC-721}} - Votes: 1 - Havok4 Collision Solver occasionally tosses an avatar when crossing a border over prim - {{User|Teravus Ousley}}
* {{jira|VWR-6946}} - Votes: 0 - Particles do not dissappear when UI rendering off - {{User|Christopher Omega}}
* {{jira|VWR-6515}} - Votes: 0 - Smartheap will not go away until I quit the program and then it comes back - {{User|Avonlea Graves}}
* {{jira|VWR-5319}} - Votes: 0 - my mouser is moving uncontrolable & if i click on something running very slow - {{User|dollface nightfire}}
* {{jira|VWR-4164}} - Votes: 5 - Texture slow to load - {{User|Ilmira Yesheyev}}
* {{jira|SVC-1570}} - Votes: 0 - Camera position shifts in and out for no reason in Havoc 4 beta region - {{User|traverse janus}}
* {{jira|SVC-1237}} - Votes: 0 - WHen I log in, I get to the screen asking me to select my Avatar's gender, and then the system freezes, and becomes non-responsive if I click again, ever.... - {{User|Caribkat Jaxxon}}
* {{jira|VWR-7181}} - Votes: 0 - Weapons not firing, bullets not rezzing - {{User|eren padar}}
* {{jira|MISC-903}} - Votes: 1 - Secondlife Client Both Production and Release Candidate Versions Crash on OSX Leopard - {{User|Biggie Homewood}}
* {{jira|VWR-7158}} - Votes: 0 - Camera freezes during first part of CTRL-ALT mouse movement - {{User|Steve Mahfouz}}
* {{jira|SVC-1684}} - Votes: 0 - Build rezzers experiencing problems on havok4 servers only. - {{User|cal corleone}}
* {{jira|MISC-1101}} - Votes: 0 - Traffic in ""About Land"" has kept changing downward - {{User|Helios Telling}}


== Pre-meeting activity ==
== Pre-meeting activity ==

Revision as of 09:46, 13 May 2008


Next meeting: 2008-05-12 at 12 PM SLT at Hippotropolis Meeting area🖈. See Bug triage for details.

Fast Track Import

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

Hot by Vote

High Voted Bugs


Patches

Patches

Misc Pool

Misc Pool

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

Transcript

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