Bug triage/2009-09-09

From Second Life Wiki
Jump to navigation Jump to search




Next meeting: 2009-09-09 at 2:00 PM SLT at Bambers' Office at Denby. 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-34 - Votes: 122 - Right-clicking another Resident's moving object freezes it - Huns Valen

    • Already Imported

Misc Pool

Misc Pool


PJIRA Query To Wiki Markup Converter

  • SVC-4805 - 0 votes - Dividing by zero does not produce a script error in mono - Lex Neva


  • WEB-1295 - 56 votes - Age verification page doesn't allow for 31 days in a month - Pips Fetid
  • SVC-4794 - 0 votes - It is possible for a non-age-verified user to cam into an Adult sim from an adjacent non-Adult location - Kimbeau Surveryor
  • SVC-4784 - 0 votes - uploading single textures brings two copies to inventory and two charges on account - Liliana Bethune
  • WEB-1292 - 15 votes - Age Verification Date of Birth only supports 30 days instead of 31 days - Duckie Dickins
  • SVC-4781 - 0 votes - Search for names in a group does not work properly - searching for first name does not work, while searching for last name brings up a result - Vanity Bonetto
  • VWR-15366 - 0 votes - have a few small patches on my sim where the land is defaulted and wont change in texture. - Draelle Chandler
  • VWR-15385 - 0 votes - Grey Goo fence is too strong for objects on their owner's land - Dale Innis
  • SVC-4751 - 0 votes - Door rotation Presets no longer work when transfered from one sim to another - bella bertone

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

  • VWR-15363 - 0 votes - after updating my netgear modem firmware i cannot load inventory and therefore cant use SL - Khriss Lanley
    • Contact Support
  • VWR-15442 - 0 votes - At random the second life windows displays video noise that may result in a blue screen in windows. - Bohemio Vantelli
    • Contact Support

Transcript

Transcript is/will be at Bug triage/2009-09-09/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.