Bug triage/2009-08-24

From Second Life Wiki
Jump to navigation Jump to search



Next meeting: 2009-08-24 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

  • VWR-14463 - Votes: 33 - Avatar clothing change invisible to all inworld, but visible to me. - Gracie Quartz - Last Triaged: 8/10/2009 12:00 PM
    • Imported
  • SVC-4739 - Votes: 21 - Sim freezes each time someone tp in or tp out, log in/log out - for a couple seconds untill new awatar arrives sim or leaves sim - Latexina Pinklady
    • Last Triaged date added
  • SVC-343 - Votes: 10 - Control event not behaving as expected when 2 control scripts exist in the same object(prim) or linkset - Helena Lycia
    • Imported
  • VWR-13604 - Votes: 10 - "Report Abuse" makes UI backgrounds go transparent. - Ephyu Reino
    • Imported
  • VWR-14319 - Votes: 10 - Unsightly Stomach Seam (Vertex-lighting flaw) - uchi desmoulins
    • Imported

Misc Pool

Misc Pool

  • SVC-4732 - Votes: 3 - Declining service affecting regions - Charity Colville
    • Support
  • VWR-12051 - Votes: 1 - Crash on startup due to OpenJDK on Linux - Steely Carver
    • sending to SL Dev list
  • VWR-15173 - Votes: 1 - voice chat fails to connect - Shadow Pidgeon
    • Support
  • SVC-272 - Votes: 9 - llSensorRepeat returns odd results every other scan. - WarKirby Magojiro
    • Imported
  • VWR-5613 - Votes: 9 - If an Instant Message is sent & the recipient's IMs have been capped, the sender gets no notice that their message was not sent - Jaszon Maynard
    • Moved to Feature Request then imported
  • VWR-6436 - Votes: 9 - zoom and alt-cam not working - Barbidule McBride
    • Imported
  • SVC-1070 - Votes: 8 - Vehicles are in some cases counted against parcel prim limits. - Argent Stonecutter
    • Last Triaged date added
  • VWR-3819 - Votes: 8 - Script Editting Undo Unreliable - Big Enigma
    • Imported
  • SVC-1094 - Votes: 7 - Physics Time much longer in H4 - Kitto Flora
    • Imported
  • SVC-1194 - Votes: 7 - Incorrect Parcel Permissions Sent for Group Members - WarKirby Magojiro
    • Resolved - Needs more info
  • SVC-1444 - Votes: 7 - Object name and descroption limit is now too small - Thurston Vendetta
    • Won't Finish
  • SVC-2409 - Votes: 7 - llSensorRepeat not triggering no_sensor unless a sensor event handler is present - Day Oh
    • Imported
  • SVC-2649 - Votes: 7 - Scripting performance cut in half - Balpien Hammerer
    • Resolved - Needs more info
  • SVC-3675 - Votes: 7 - "Stop treating ""no modify"" as ""no rename""." - Argent Stonecutter
    • Won't Finish
  • SVC-368 - Votes: 7 - "Can't apply no-trans textures to objects using the texture selection window, plus other problems with no-trans textures" - Helena Lycia
    • Expected Behavior
  • SVC-3811 - Votes: 7 - "Sit disabled on prims that are: inside a prim's bounding box (eg, phantom prim)." - Piero Padar
    • Imported
  • VWR-14056 - Votes: 7 - "View becomes severely distorted whenever the OK button is clicked in preferences, when leaving the Graphics settings in Preferences, aspect ratio gets set to 0.000" - Matoazma Kazyanenko
    • Imported
  • VWR-1933 - Votes: 7 - "LSL compiler consumes stack too quickly (random ""Syntax Errors"" with long/complex scripts)" - Neo Rebus
    • Expected Behavior
  • VWR-4422 - Votes: 7 - "Objects are corrupted after rezzing. Sometimes various perms cannot be set, i.e. For Sale. Sometimes they cannot be deleted, taken, or returned. Sometimes they show a null creator and null owner." - Kazzl Meriman
    • Resolved - Needs more info
  • VWR-5145 - Votes: 7 - Groups Missing (Say's you are in 0) Even if you join another - Meghan Dench
    • Support

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-08-24/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.