Bug triage/2009-07-20

From Second Life Wiki
Jump to navigation Jump to search



Next meeting: 2009-07-20 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)

  • SVC-4444 - Votes: 89 - Objects become fully permissive when rezzed under certain conditions. - with Repro - Latif Khalifa - Is being tested as we speak

Hot by Vote

High Voted Bugs

  • VWR-14724 - Votes: 15 - consistent failure to upload messages received - Valdosta Sabretooth
    • Imported
  • SVC-4577 - Votes: 14 - Search malfunction - Searching for places doesn't work - None found with random keywords (like 'land' under residential what should give a billion hits) - Vanity Bonetto
    • Imported

Misc Pool

Misc Pool

  • SVC-4580 - Votes: 1 - Positioning & rotating of linked objects changed in server 1.27 - Prospero Frobozz
    • Imported
  • SVC-2796 - Votes: 3 - Avatars are floating away uncontrollably - prijian toland
    • Resolved - Needs More Info
  • SVC-4485 - Votes: 2 - Same script compiled in LSL and Mono operates differently - matias carter
    • Imported
  • SVC-4537 - Votes: 2 - sim scripts are dead from overloading - reddot99 Republic
    • Imported
  • SVC-4572 - Votes: 2 - recent "explosion" in numbers of avatars that cannot tp. - Cummere Mayo
    • Resolved - Support
  • MISC-2376 - Votes: 1 - No mod items that contain sounds/scripts/animations will no longer allow the owner to set more restrictive permissions to items in contents - Persephone Loon
    • Resolved - Support
  • SVC-3006 - Votes: 1 - Rollbacks without informing the customer - wayfinder wishbringer
    • Resolved - Support
  • SVC-3946 - Votes: 1 - Group Notices: Sort Order gone awry - Rogan Diesel
    • resolved - Duplicate of VWR-4137
  • SVC-4036 - Votes: 1 - 1.26 beta - Error fetching land information when trying to buy land - Hypatia Callisto
    • Imported
  • SVC-662 - Votes: 1 - Parcel option 'Run Scripts (Group)' does not work appropriately when the parcel group is set to none - Hidenori Glushenko
    • Moved to Feature Request

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