Bug triage/2009-10-05

From Second Life Wiki
Jump to navigation Jump to search



Next meeting: 2009-10-05 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

No issues over 10 votes!

Misc Pool

Misc Pool

  • SVC-4857 - Votes: 8 - Continues Momentary Freezing Regardless of Client Version Used - gena zeiler
    • Resolved - Needs more info
  • SVC-1174 - Votes: 4 - llGetBoundingBox() returns nonsensical values for attachments on avatars sitting on objects - Creem Pye
    • Imported
  • SVC-1812 - Votes: 4 - Values returned by llDetectedGrab() are based on global position when worn as attachment. - uchi desmoulins
    • Imported
  • VWR-14240 - Votes: 4 - Running 1.23 causes FPS to drop below 2 frequently - AnnMarie Otoole
    • Resolved - Needs more info
  • VWR-9382 - Votes: 4 - Sounds caching very slowly. - Khyota Wulluf
    • Imported
  • SVC-1573 - Votes: 3 - Cut hollow cylinder not hollow - ninjafoo Ng
    • Resolved - Needs more info
  • SVC-1676 - Votes: 3 - object contents not transferred when object ownership changes in world - Lex Neva
    • Imported
  • SVC-1905 - Votes: 3 - "Prim collision volume is 0.050 thicker in H4, breaking H1 content" - Scalar Tardis
    • Resolved - Expected Behavior
  • SVC-1961 - Votes: 3 - Attach event does not reliably execute upon detach of an attachment - Darien Caldwell
    • Resolved - Expected Behavior
  • SVC-2177 - Votes: 3 - Dont recieve Group invites or Friendship offers online. Only Mails about this. - Korki Halberstadt
    • Resolved - Can't Reproduce
  • SVC-2564 - Votes: 3 - Group-deeded land and items frequently losing perms and sim restarts required - Georgie Greggan
    • Resolved - Contact Support
  • SVC-3098 - Votes: 3 - Group IMs recieved after leaving the group - Cameron Stubbs
    • Resolved - Fixed
  • SVC-365 - Votes: 3 - Avatars rez as naked women when arriving at Orientation Islands - Yumi Murakami
    • Resolved - Fixed
  • SVC-3769 - Votes: 3 - Region settings reset upon region transfer - Tyrian Camilo
    • Imported
  • SVC-382 - Votes: 3 - Random Script run-time error Math Error on derez when llGetColor() is used within a timer event - Kerhop Seattle
    • Resolved - Needs more info
  • SVC-4085 - Votes: 3 - Age Restricted Land Also Requires Payment Info On File to Access - Benjamin Grainger
    • Resolved - Support
  • SVC-4112 - Votes: 3 - "Perms appear to be lost for llTakeControls(CONTROL_ML_LBUTTON, TRUE, FALSE) on flying." - EddyFragment Robonaught
    • Imported
  • SVC-4169 - Votes: 3 - "missing groups, unable to tp, tried everything" - eliz GossipGirl
    • Resolved - Contact Support
  • SVC-4387 - Votes: 3 - Functions in Mono have huge memory overhead - Haravikk Mistral
    • Resolved - Needs more info
  • SVC-4508 - Votes: 3 - Permission Change on old and new object from full perms to transfer perms after unlinking a single prim - Rasmus Pennell
    • Resolved - Needs more info

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-10-05/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.