Difference between revisions of "Bug triage/2008-08-25"

From Second Life Wiki
Jump to navigation Jump to search
Line 25: Line 25:
* {{jira|VWR-8761}} - Votes: 0 - Object description change to null is not saved - {{User|Gellan Glenelg}}
* {{jira|VWR-8761}} - Votes: 0 - Object description change to null is not saved - {{User|Gellan Glenelg}}
* {{jira|VWR-8283}} - Votes: 0 - UI scales in windowed mode, even if deselected - {{User|Lanita Wingtips}}
* {{jira|VWR-8283}} - Votes: 0 - UI scales in windowed mode, even if deselected - {{User|Lanita Wingtips}}
* {{jira|SVC-2049}} - Votes: 5 - Camera zooms rapidly in and out  (yo-yo, pogos) with objects behind you - {{User|Aminom Marvin}}
* {{jira|VWR-8516}} - Votes: 1 - 1.21 nightly: new chat transparency setting interferes with HUDs on the right - {{User|McCabe Maxsted}}
* {{jira|WEB-552}} - Votes: 2 - Group Image not Loading in world.secondlife.com - {{User|Malachi Rothschild}}
* {{jira|VWR-6740}} - Votes: 2 - SpaceNavigator input cross-talk to other apps - {{User|Whichway Janus}}
* {{jira|SVC-1684}} - Votes: 0 - Build rezzers experiencing problems on havok4 servers only. - {{User|cal corleone}}
* {{jira|VWR-7157}} - Votes: 0 - llDetectedGrab() returns bad results for certain viewer window sizes - {{User|Lex Neva}}
* {{jira|VWR-8635}} - Votes: 1 - Declining Group invite no longer gives system warning in chat history - {{User|Dilbert Dilweg}}
* {{jira|VWR-7011}} - Votes: 0 - Camera locks into top of head view - {{User|WarKirby Magojiro}}
* {{jira|SVC-1847}} - Votes: 0 - llStringLength won't diferentiate between single and multiple byte characters, while the cap for chat will - {{User|TigroSpottystripes Katsu}}
* {{jira|SVC-1685}} - Votes: 0 - Teens unable to use the beta grid. - {{User|Liny Odell}}
* {{jira|SVC-996}} - Votes: 0 - Five minute wait due to ""System Logging You Out"" happens everytime when wearing scripted HUD - {{User|Chase Marellan}}
* {{jira|WEB-600}} - Votes: 0 - When event fails to submit and needs corrections, Location select box does not remember initial choice - {{User|Blue Revolution}}
* {{jira|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 - {{User|cherie parker}}
* {{jira|WEB-374}} - Votes: 0 - Land Auction Search To Restrictive - {{User|Munchy Yost}}
* {{jira|WEB-365}} - Votes: 0 - Seems to be a spelling error in a .css on https://secure-web0.secondlife.com/_styles/MAIN.css - {{User|WarKirby Magojiro}}
* {{jira|WEB-363}} - Votes: 0 - error in billing failure email creates broken link - {{User|SignpostMarv Martin}}
* {{jira|SVC-254}} - Votes: 1 - Cylinder Hollow + Negative End Twist Value Range Turns into a Plain Cubic Volume - {{User|Bryon Ruxton}}
* {{jira|VWR-2416}} - Votes: 0 - weird textures on clothes, skin and eyes on  log in - {{User|cyberrosa Rossini}}
* {{jira|WEB-357}} - Votes: 0 - http://secondlife.com/community/templates.php is outdated resp. could be improved - {{User|Shiva Aabye}}
* {{jira|WEB-349}} - Votes: 0 - Several notes on age verification system that may be of use debugging - {{User|Shadow Garden}}
* {{jira|VWR-788}} - Votes: 0 - Distance to avs that allow:see me on the map is wrongly calculated - {{User|Sascha Vandyke}}


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

Revision as of 15:35, 25 August 2008


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

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-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)

<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.