Bug triage/2008-08-25
Jump to navigation
Jump to search
Next meeting: 2008-08-25 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
- VWR-7509 - Votes: 11 - Script error when alot of sounds are playing - Iexo Bethune
- VWR-8717 - Votes: 22 - Crashes after login when using ATI Catalyst 8.8 - Dandare Daniels
- VWR-8337 - Votes: 33 - Slows to 1 frame every 2 sec after login in the second time - skidz tweak
- VWR-5949 - Votes: 15 - Out of Memory Error 1.19.1.2/3/4 - alan edelman
Patches
- VWR-2710 - Votes: 2 - Turkish Beta Language Pack For Second Life Viewer - Vixen Heron
Misc Pool
- VWR-8761 - Votes: 0 - Object description change to null is not saved - Gellan Glenelg
- VWR-8283 - Votes: 0 - UI scales in windowed mode, even if deselected - Lanita Wingtips
- SVC-2049 - Votes: 5 - Camera zooms rapidly in and out (yo-yo, pogos) with objects behind you - Aminom Marvin
- VWR-8516 - Votes: 1 - 1.21 nightly: new chat transparency setting interferes with HUDs on the right - McCabe Maxsted
- WEB-552 - Votes: 2 - Group Image not Loading in world.secondlife.com - Malachi Rothschild
- VWR-6740 - Votes: 2 - SpaceNavigator input cross-talk to other apps - Whichway Janus
- SVC-1684 - Votes: 0 - Build rezzers experiencing problems on havok4 servers only. - cal corleone
- VWR-7157 - Votes: 0 - llDetectedGrab() returns bad results for certain viewer window sizes - Lex Neva
- VWR-8635 - Votes: 1 - Declining Group invite no longer gives system warning in chat history - Dilbert Dilweg
- VWR-7011 - Votes: 0 - Camera locks into top of head view - WarKirby Magojiro
- SVC-1847 - Votes: 0 - llStringLength won't diferentiate between single and multiple byte characters, while the cap for chat will - TigroSpottystripes Katsu
- SVC-1685 - Votes: 0 - Teens unable to use the beta grid. - Liny Odell
- SVC-996 - Votes: 0 - Five minute wait due to ""System Logging You Out"" happens everytime when wearing scripted HUD - Chase Marellan
- WEB-600 - Votes: 0 - When event fails to submit and needs corrections, Location select box does not remember initial choice - Blue Revolution
- VWR-5773 - Votes: 0 - When Basic Shaders is selected in Graphics settings, it causes a fog bar along the right side of the screen also visible in photos. In viewer 1.19.1 - cherie parker
- WEB-374 - Votes: 0 - Land Auction Search To Restrictive - Munchy Yost
- WEB-365 - Votes: 0 - Seems to be a spelling error in a .css on https://secure-web0.secondlife.com/_styles/MAIN.css - WarKirby Magojiro
- WEB-363 - Votes: 0 - error in billing failure email creates broken link - SignpostMarv Martin
- SVC-254 - Votes: 1 - Cylinder Hollow + Negative End Twist Value Range Turns into a Plain Cubic Volume - Bryon Ruxton
- VWR-2416 - Votes: 0 - weird textures on clothes, skin and eyes on log in - cyberrosa Rossini
- WEB-357 - Votes: 0 - http://secondlife.com/community/templates.php is outdated resp. could be improved - Shiva Aabye
- WEB-349 - Votes: 0 - Several notes on age verification system that may be of use debugging - Shadow Garden
- VWR-788 - Votes: 0 - Distance to avs that allow:see me on the map is wrongly calculated - Sascha Vandyke
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-08-25/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)
- Look at the results of one of these queries
- General triage: "Viewer 2 Bug Triage" (sorted by LL ID, Created, Last Triaged):
- UI triage:
- https://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=10470 (The selected filter with id '10470' does not exist.)
- (Note: there's no hard and fast rule that says these are the only valid queries. If you feel there's a better query one particular week, use that.)
- Save a copy of the XML version of the query
- Run this perl script on the xml file
<perl>
- !/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.
- if you do not have access to a perl interpreter. There is a ported version of the script on PHP, located here: http://jirafiller.technokittydevelopment.com/ made by roberto salubrius