Bug triage/2009-12-14

From Second Life Wiki
Jump to navigation Jump to search



Next meeting: 2009-12-14 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)

Hot by Vote

High Voted Bugs

  • SVC-5097 - Votes: 76 - Simulator Time statistics inaccurate, AKA Mystery Lag that is Primarily caused by object positional updates. - NeoBokrug Elytis
    • Imported
  • VWR-16313 - Votes: 18 - Prims are showing wrong creator & creation date - wyvern dryke
    • Resolved - Needs more info
  • SVC-5127 - Votes: 11 - Getting instant messages sent to me from weeks and months ago - kerry Young
    • Linked to DEV-43951
  • SVC-2441 - Votes: 10 - Slowish llMoveToTarget path inconsistent when moving to a target at a -z position vs moving to +z - Sindy Tsure
    • Imported
  • VWR-7563 - Votes: 10 - shadow-draft: Sky & shadows missing from snapshot preview - tenebrous pau
    • Resolved - Under Advisement

Misc Pool

Misc Pool

  • VWR-16318 - Votes: 0 - Group Chat Toggle shows on one person when off to others - Jordin Ashdene
    • Imported
  • SVC-421 - Votes: 9 - Cannot delete contents from no-modify objects - CrystalShard Foo
    • Imported
  • WEB-1394 - Votes: 2 - Return content creation resources back to main SL website - Quacken Nightfire
    • Imported
  • VWR-7585 - Votes: 9 - "Changing antialiasing settings results in everything rendering as black (except floating windows, HUD attachments and glows)" - Warin Cascabel
    • Imported
  • VWR-5117 - Votes: 9 - Shortcut for Groups CTRL SHIFT G - Franta Burt
    • Moved to SNOW & FR
  • VWR-13205 - Votes: 8 - Snapshot to disk causes UI backgrounds to disappear - Katerina Kirax
    • Tied to DEV-38753
  • VWR-7739 - Votes: 8 - Flared pant cuffs appear 'dented' - rena kuhn
    • Imported
  • VWR-815 - Votes: 8 - cannot change material on link sets - Lex Neva
    • Imported
  • VWR-818 - Votes: 8 - Script editor window: next line not indenting if current line wraps - Simil Miles
    • Imported
  • VWR-8686 - Votes: 8 - Intel Core 2 Quad Reports as Pentium III - Sean Pirandello
    • tied to DEV-33536
  • VWR-8757 - Votes: 8 - Inventory window unpredictably autoscrolls and opens folders while drag-n-drop is in progress - Maggie Darwin
    • Resolved - Dup of VWR-7948
  • WEB-811 - Votes: 8 - Transaction History accumulate not correct - Jan Hird
    • Resolved - Dup of WEB-86
  • SVC-1150 - Votes: 7 - llOverMyLand returns false positives when avatar is not over owner's land but close by in another sim - Carrah Rossini
    • Imported
  • SVC-1443 - Votes: 7 - Avatar attachments should always listen from the avatar's position and not from any object the avatar may be sitting on. - Thurston Vendetta
    • Imported
  • SVC-2023 - Votes: 7 - Havok4 limit on avatars climbing steps prevents climbing of steep prim 'ladders' - ScaryMary Spitz
    • Resolved - Under Advisement
  • SVC-2137 - Votes: 7 - Several Linden trees all over the grid changed their species - Kii Lilliehook
    • resolved - Won't Fix
  • SVC-2268 - Votes: 7 - Tools > Set Scipts to Running in Selection does not work on scripts given to objects with llGiveInventory - Jacek Antonelli
    • Imported
  • SVC-4454 - Votes: 7 - Sitted Avatars 'ghosted' by losing contact with a vehicle are not removed from the prim settings - Vulpine Eldrich
    • Imported
  • VWR-4524 - Votes: 7 - Child prims don't change position when scaled - Jacek Antonelli
    • Imported
  • SVC-465 - Votes: 1 - Cannot create object - parse failed - Mirage Laviolette
    • Resolved - Needs more info
  • SVC-4679 - Votes: 1 - llMapDestination jumps to a random position - Jan Hird
    • Resolved - Dup of VWR-2060

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