Bug triage/2009-02-23
< Bug triage
Jump to navigation
Jump to search
Revision as of 23:19, 14 February 2009 by Gordon Wendt (talk | contribs) (→Misc Pool: sorting by number of votes)
Next meeting: 2009-02-16 at 12:00 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
Patches
Misc Pool
- VWR-2578 - Votes: 3 - Blocky Default Particle Sprites - Harke Hartnell
- VWR-4315 - Votes: 2 - When I try to click on one of my HUD objects, meant to respond, it doesn't, and if I give a command to a tool/gadget, meant to recognize it, it dosn't - Steven Wilberg
- VWR-12019 - Votes: 2 - Voice Chat - Device Settings Wizard Fails - Dirk Talamasca
- SVC-758 - Votes: 2 - Assigning key as list element at declare time in the global scope converts it to a string. - Siann Beck
- WEB-948 - Votes: 1 - economy_stats.php unchanged since January 16, 2009 - Adz Childs
- VWR-9204 - Votes: 1 - Clicking the mute button from a dialog when receiving a landmark or a notecard (spam) will crash the viewer if there are pending notifications behind the dialog - Tasty Tiramisu
- VWR-6193 - Votes: 1 - Beacon turns 'invisible' at larger distances - Daedalus Young
- WEB-300 - Votes: 1 - Passwords with special characters fail to login - Steve Patel
- VWR-4277 - Votes: 1 - different simulator version message has unclickable links - Dedric Mauriac
- VWR-11887 - Votes: 0 - Radeon HD 4670 graphics card does not work with the SL client (the graphics card will not even be used (0% activity reported by it while Second Life is open)). - Pawz Tomcat
- VWR-11930 - Votes: 0 - Teleporting either Disconnects or Crashes SL - Flurry Parx
- SVC-3182 - Votes: 0 - Payment received by one vendor ended up in another avatar's transaction history - Timeless Prototype
- VWR-8374 - Votes: 0 - bandwidth indicator does not fit - wulfric chevalier
- VWR-12028 - Votes: 0 - Crach evrytime on entering sim badlands - Alexandrea Fride
- VWR-7035 - Votes: 0 - Closing dialogue causes uploading message to disappear - Haravikk Mistral
- VWR-11696 - Votes: 0 - Objects disappear at different viewing angles with .png textures but not .jpg - Sentire Bravin
- VWR-8214 - Votes: 0 - Removing last friend does not clear friends list until relog - sydney pinion
- WEB-641 - Votes: 0 - nonsensical output in voicemap API - SignpostMarv Martin
- SVC-2069 - Votes: 0 - Bumpy Flight - WarKirby Magojiro
- VWR-3063 - Votes: 0 - Crash during tp - Luxarnia Dagger
- WEB-810 - Votes: 0 - search.secondlife.com uses meta tag redirection instead of RedirectMatch (or similar) .htaccess rule. - SignpostMarv Martin
- VWR-3034 - Votes: 0 - Scrolling in text boxes in the client is broken - Domchi Underwood
- VWR-3032 - Votes: 0 - Linked parts, when copied will unlink the original copied from - Marc Montague
- SVC-2375 - Votes: 0 - llSetClickAction in a linked set only affects click status of root prim - Francisco Koolhoven
- VWR-2987 - Votes: 0 - Inventory > Library > Textures > Sculpt Textures > Surface Textures > orange 1 should be stem 2 - Daedalus Young
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/2009-02-16/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