Bug triage/2008-05-19

From Second Life Wiki
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

High Voted Bugs

  • SVC-2333 - Votes: 14 - Traffic numbers reset to 0 - Dilbert Dilweg
    • Imported - Assigned to Triage
  • VWR-5111 - Votes: 15 - Camera panning problem - random camera movements - timmie124 Tone
    • Closed - Dup of VWR-5477 which has already been imported
  • VWR-2095 - Votes: 11 - Runtime Error message from the Microsoft Visual C++ Runtime Library - Orlando Woodbury
    • Imported - Assigned to Bambers Linden
  • SVC-2087 - Votes: 24 - Group Chat does not work - Stryker Jenkins
    • Imported - Assigned to Aric Linden
  • SVC-2336 - Votes: 16 - Object goes offworld when avatar sits on it. - darling brody
    • Imported - Assigned to Sidewinder Linden
  • VWR-2358 - Votes: 14 - Mac Client Freezes or just won't respond for a while every 10 minutes or less. - Twister Offcourse
    • Closed - Duplicate of VWR-1749
  • VWR-7269 - Votes: 12 - Client take all memory he can get about 1,8gb from me and crashes then - Holger Gilruth
    • Closed - Duplicate of VWR-2997
  • VWR-5311 - Votes: 12 - Group chat lag in large groups (>1000 members) like Scripters Support Group. - MartinRJ Fayray
    • Closed - Duplicate of VWR-1298

Patches

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

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)

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