Bug triage/2009-12-07

From Second Life Wiki
< Bug triage
Revision as of 23:58, 6 December 2009 by Sayrah Parx (talk | contribs)
Jump to navigation Jump to search



Next meeting: 2009-12-07 at 12:00 NOON 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)

  • VWR-2090 - Votes: 2 - When IMs from objects are capped, the first IM sent is lost. This also needs to be changed from a viewer issue to a server issue. - Sayrah Parx

Hot by Vote

High Voted Bugs

  • SVC-5097 - Votes: 72 - Simulator Time statistics inaccurate, AKA Mystery Lag that is Primarily caused by object positional updates. - NeoBokrug Elytis

Misc Pool

Misc Pool

  • SVC-150 - Login picture changes to user-specific before password check is done - Votes 6 Bug In Progress Normal
  • SVC-1585 - libsecondlife clients unable to login, message returned it "Second Life cannot be accessed from this computer", However viewer from same computer with same account information successfully logs in. - Votes 6 Bug Open Normal
  • SVC-1814 - Trains derail at turns since the latest update. (Havok4 Beta) - Votes 6 Bug Open Normal
  • SVC-2012 - Sim not stable after rollout of 1.20 - Votes 6 Bug Reopened Normal
  • SVC-2754 - "When Left-clicked: Buy Object" not reset to "Touch/grab (default)" when a No Modify object is bought - Votes 6 Bug Open Normal
  • SVC-2955 - Second Life Server 1.24 | Invalid Locations turn Red and display '(Offline)' - Votes 6 Bug Open Normal
  • SVC-3448 - Texture asset permissions viral to prims - Votes 6 Bug Open Normal
  • SVC-2054 - llSensor returns duplicate results - Votes 6 Bug Reopened Normal
  • SVC-4109 - llLoadURL() maximum URL length problematic with http-in - Votes 6 Bug Open Normal
  • SVC-598 - No Mod assets can be renamed by dropping multiples into a prim - Votes 6 Bug Reopened Normal
  • SVC-1604 - Typecasting float to string causes precision loss - Votes 5 Bug Open Normal
  • SVC-432 - owners teleport to landing zones - Votes 5 Bug Open Normal
  • SVC-876 - 'For Sale' based search does not show scripted vendors - Votes 5 Bug Open Normal
  • SVC-1765 - llParticleSystem targets or emits from child prim at location relative to avatar origin, not prim apparent position if attached while rezzed. - Votes 5 Bug Open Normal
  • SVC-2503 - Avatar falls through slowly moving prims in 1.22.2 that worked prior to this release. - Votes 5 Bug Open Normal
  • SVC-4259 - Group Role Ability > Object Management > Manipulate Group Objects Enables anyone enabled to return group objects. - Votes 5 Bug Open Normal
  • SVC-4321 - Media URLs too short - Votes 5 Bug Open Normal
  • SVC-2250 - Body of email from outworld to object never arrives, subject, address do arrive. - Votes 5 Bug Reopened Normal
  • SVC-259 - Linked sets numbered incorrectly when joined - Votes 5 Bug Open Normal
  • SVC-1145 - llInstantMessage() doesn't obey mute settings - Votes 5 Bug Open Normal
  • SVC-3925 - Some persistant prim properties lost when duplicated - Votes 5 Bug Open Normal
  • SVC-194 - Slow physics objects prematurely settling. - Votes 5 Bug Reopened Low
  • SVC-2039 - Motorcycles,Bikes,Cars,ETC - Votes 4 Bug In Progress Critical
  • SVC-1003 - llLoadURL does not open secondlife:// slurls - Votes 4 Bug Open Normal
  • SVC-2310 - Physics Object sinking - Votes 4 Bug Open Normal
  • SVC-3696 - Multiple llSensor calls from within event are responded to inconsistently - Votes 4 Bug Open Normal
  • SVC-2066 - Loss of sync in AO walk when going over even tiniest of surface irregualrity - Votes 4 Bug Open Normal
  • SVC-388 - llGetScriptName() returns script's old name - Votes 4 Bug Open Normal
  • SVC-3321 - stack trace error while running scripts after remoteloadscriptpin() - Votes 4 Bug Open Normal
  • SVC-779 - Boolean operator precedence is inconsistent - Votes 4 Bug Open Normal
  • SVC-3945 - Unable to sit on surfaces which previously were sittable - Votes 4 Bug Open Normal
  • SVC-1242 - Texture Animation is not copied (llSetTextureAnim) - Votes 4 Bug Open Normal
  • SVC-600 - llGetLinkKey returns the wrong result when passed LINK_THIS - Votes 4 Bug Open Normal
  • SVC-5109 - "Reset Home On Teleport" seems to fail in 1.32 - Votes 4 Bug Open Normal

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-12-07/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.