Bug triage/2010-07-19

From Second Life Wiki
Jump to navigation Jump to search

Next meeting: 2010-07-19 at 12:00 PM (noon) PDT 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-4095 - Votes: 10 - Prim attachments & clothing layers don't match when tinted - Celebrity Trollop
    • Imported
  • VWR-17011 - Votes: 103 - Bring back the option to keep focus on the chat bar! - Argent Stonecutter
    • Updated Triage date, added infor to internal issue and asked for an update

Misc Pool

Misc Pool

  • WEB-2411 - Votes: 4 - Support: Upper limit on the number of tickets the new system will accept - Simeon Beresford
    • Imported
  • VWR-14537 - Votes: 3 - llDialog user button with text "Ignore" is treated like client "Ignore" button and is dropped when clicked. - Strife Onizuka
    • Imported
  • WEB-2444 - Votes: 3 - Avatars can now remove themselves from in-world "People Search" - Lost Cyberstar
    • Imported & flagged team
  • VWR-19151 - Votes: 3 - Setting afk-timeout to "never" in viewer 2 sets timeout in 1.23 to zero seconds - Moon Metty
    • resolved - Won't Finish
  • WEB-1425 - Votes: 3 - If you uncheck the "Friend can see you when you're online" checkbox in your friends list, then your friend can no longer see your name at all (even greyed out) in the "Friends Online" website. - Stardust Melody
    • Resolved Duplicate
  • WEB-1446 - Votes: 3 - Make Google search in the Wiki use https protocol instead of http to avoid assumed logout after search - Zai Lynch
    • Sent to Yoz to review
  • WEB-2277 - Votes: 3 - Quick Buy Unavailable - Denise Domela
    • Imported
  • WEB-2436 - Votes: 3 - Inworld Search for "Watch" and "watches" is choked by youtube URLs - Bubba Biberman
    • Sent to Search
  • MISC-2755 - Votes: 2 - Total object loss after asset server delay - Mimika Oh
    • Last Triaged date added
  • SVC-4241 - Votes: 2 - physical objects become non-physical, possibly when crossing parcel lines - wyvern dryke
    • Resolved - Needs more Info
  • SVC-425 - Votes: 2 - Physical script calls from non-root prims of attachments do not effect the avatar. - Argent Stonecutter
    • Resolved Won't Finish
  • SVC-4348 - Votes: 2 - Zeroing Prim Rotation via llSetRot Has No Effect After llTargetOmega - Cyd Woolley
    • Resolved - Expected Behavior

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/2010-07-19/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.