Bug triage/2010-03-15

From Second Life Wiki
Jump to navigation Jump to search




  Please Note: There will be no Monday Triage today, Monday, March 15th


Next meeting: 2010-03-15 at 12:00 NOON PDT 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-5271 - Votes: 17 - WarpPos() and PosJump() that has objects mistakenly go offworld are no longer returned to inventory, content is lost. - NeoBokrug Elytis - Last Triaged: 1/25/2010 1:55 PM
  • SVC-5517 - Votes: 17 - Sitting more than one person on a single prim fails in server 1.36.4.202355 - darling brody
  • VWR-8757 - Votes: 12 - Inventory window unpredictably autoscrolls and opens folders while drag-n-drop is in progress - Maggie Darwin - Last Triaged: 12/14/2009 10:04 AM

Misc Pool

Misc Pool

  • SVC-5357 - Votes: 1 - Logins randomly show multi-second ping sim values - Maggie Darwin - Last Triaged: 3/8/2010 10:23 AM
  • SVC-5509 - Votes: 0 - llRezObject causes old prims on parcel to be returned - Virii Mode
  • VWR-18280 - Votes: 0 - Support for ATI Radeon HD 5800 Series - Maelstrom Flasheart
  • SVC-5313 - Votes: 4 - Items returned to Lost and Found don't show in inventory until re-log in. - AnnMarie Otoole - Last Triaged: 3/8/2010 10:27 AM
  • VWR-9037 - Votes: 2 - Failure to Load Gestures bottlenecking inventory downloading - Ashlin McMahon
  • VWR-11418 - Votes: 4 - Textures in 1.21.6 don't load even after clicking them - dan linden - Last Triaged: 3/8/2010 10:32 AM
  • VWR-739 - Votes: 4 - Client->Rendering->Types->Character (CTRL-ALT-SHIFT-4) does not function properly - Harleen Gretzky
  • WEB-1323 - Votes: 4 - "Ran Alert Lock old Closed tickets" generates confusing email to submitter - Qie Niangao
  • MISC-2623 - Votes: 3 - Muted residents can continue to communicate and harrass via the SL Exchange (XStreet) message system - Charity Colville
  • MISC-2710 - Votes: 3 - Help Island Public Neglect - Dirk Talamasca
  • SVC-1126 - Votes: 3 - llEmail() causes mails to be sent with no body - sasun steinbeck
  • SVC-1139 - Votes: 3 - "Phantom Physics Bug: Physical objects are seperated by an invisible barrier, cannot directly touch or rest on surfaces" - Neotoy Story - Last Triaged: 12/8/2008 12:00 PM
  • SVC-1546 - Votes: 3 - different unsit behavior - Gypsy Paz
  • SVC-1759 - Votes: 3 - llGetAnimation constant transparency - Strife Onizuka
  • SVC-1824 - Votes: 3 - changed event with CHANGED_SHAPE not triggered when light parameters modified - Christopher Omega
  • SVC-1878 - Votes: 3 - Drastically reduced simulator performance in most sims this morning - deBruce Munro
  • SVC-1994 - Votes: 3 - llSetForce not affecting flying av correctly - Johan Durant
  • SVC-2235 - Votes: 3 - Traffic has not updated on my land in 4 days - sabien cortes
  • SVC-2277 - Votes: 3 - llSitTarget doesn't produce the right offset if given a nonzero rotation - Blackheart Laval
  • SVC-2547 - Votes: 3 - ParcelReturnObjects packets sent with an Invalid parcel localID by an Estate Manager may cause ALL objects on the simulator to be returned - Yohan Pintens
  • SVC-2862 - Votes: 3 - Group Search Member Count Inaccurate - Ghanie Lane
  • SVC-349 - Votes: 3 - Avatar Rotation on X and Y axii non-zero after teleport - Ryozu Kojima
  • SVC-3510 - Votes: 3 - LINK_* flags do not work with llBreakLink - Strife Onizuka
  • SVC-4152 - Votes: 3 - "Scripts using state changes are misreported in ""Top Scripts""" - Yuu Nakamichi
  • SVC-4170 - Votes: 3 - llKey2Name returns avatar names with double space between first and last (sometimes) - Cenji Neutra
  • SVC-893 - Votes: 1 - Right shift operator (>>) fills extra bits with 1 instead of 0 when the most significant bit of the number is set. - Radian Artaud
  • VWR-10240 - Votes: 1 - Viewer crash while taking snapshot (with fanciful proportion) - Gally Young
  • VWR-10429 - Votes: 1 - Snapshot to disk hang on new unibody MacBook Pro with Nvidia 9600M GT - Rob danton
  • VWR-10486 - Votes: 1 - Worn vehicle attachments lose their rotation when viewed approaching from out of visual range or teleporting to vehicle. - pointside sunbelter
  • VWR-11025 - Votes: 1 - Coalesced items lost after refused rezing (similar to VWR-7194) - Sharon Gardenvale

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/2010-03-15/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.