Bug triage/2008-05-19
Jump to navigation
Jump to search
Next meeting: 2008-05-19 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
- SVC-2333 - Votes: 14 - Traffic numbers reset to 0 - Dilbert Dilweg
- VWR-5111 - Votes: 15 - Camera panning problem - random camera movements - timmie124 Tone
- VWR-2095 - Votes: 11 - Runtime Error message from the Microsoft Visual C++ Runtime Library - Orlando Woodbury
- SVC-2087 - Votes: 24 - Group Chat does not work - Stryker Jenkins
- SVC-2336 - Votes: 16 - Object goes offworld when avatar sits on it. - darling brody
- VWR-2358 - Votes: 14 - Mac Client Freezes or just won't respond for a while every 10 minutes or less. - Twister Offcourse
- VWR-7269 - Votes: 12 - Client take all memory he can get about 1,8gb from me and crashes then - Holger Gilruth
- VWR-5311 - Votes: 12 - Group chat lag in large groups (>1000 members) like Scripters Support Group. - MartinRJ Fayray
Patches
- VWR-1422 - Votes: 7 - Keep a list of recent locations in the login screen's drop down list and/or add a list of favorite locations - Monalisa Robbiani
- Imported - Assigned to Rx
- VWR-7086 - Votes: 0 - floater_buy_land.xml still contains messages regarding First Land - Alissa Sabre
- Imported - Assigned to Triage
- VWR-4371 - Votes: 1 - Ambient sound not governed by Master mix - Melchoir Tokhes
- Imported - Assigned to Triage
- VWR-7271 - Votes: 0 - FTBFS for 64 bit due to unsafe cast from void* to U32 in llmutelist.cpp - Carjay McGinnis
- Imported - Assigned to Triage
- VWR-7234 - Votes: 0 - llcommon/files.lst has two entries for lllog.cpp - Carjay McGinnis
- Imported - Assigned to Triage
- VWR-6891 - Votes: 11 - Present list of alt avatars upon login - Felix Duesenburg
- Imported - Assigned to Rx
- VWR-6754 - Votes: 0 - Error in floater_instant_message_group.xml - McCabe Maxsted
- Imported - Assigned to Triage
- VWR-3725 - Votes: 2 - Please add resize option to the SEARCH window UI - shaq Merlin
- Imported - Assigned to Rx
- VWR-7030 - Votes: 0 - Linux build terminates with an error unless an environment variable SSH_AUTH_SOCK is defined - Alissa Sabre
- Imported - Assigned to Tofu Linden
Misc Pool
- VWR-6746 - Votes: 0 - Health Percentage Unreadable - Frank Skosh
- Imported - Assigned to Rx
- VWR-2728 - Votes: 1 - Memory autorelease pool problem - system freezes. - Argent Stonecutter
- Imported - Assigned to Triage
- VWR-6512 - Votes: 0 - Windows Vista reports Out of Memory error and crashes SL viewer. - Nikolai Kidd
- Asked for a crash log to be attached
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-19/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