Difference between revisions of "Bug triage/2010-07-19"

From Second Life Wiki
Jump to navigation Jump to search
Line 14: Line 14:


* {{jira|VWR-4095}} - Votes: 10 - Prim attachments & clothing layers don't match when tinted - {{User|Celebrity Trollop}}
* {{jira|VWR-4095}} - Votes: 10 - Prim attachments & clothing layers don't match when tinted - {{User|Celebrity Trollop}}
** Imported
* {{jira|VWR-17011}} - Votes: 103 - Bring back the option to keep focus on the chat bar! - {{User|Argent Stonecutter}}
* {{jira|VWR-17011}} - Votes: 103 - Bring back the option to keep focus on the chat bar! - {{User|Argent Stonecutter}}
** Updated Triage date, added infor to internal issue and asked for an update


== Misc Pool ==
== Misc Pool ==

Revision as of 10:15, 21 July 2010

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

  • VWR-14537 - Votes: 3 - llDialog user button with text "Ignore" is treated like client "Ignore" button and is dropped when clicked. - Strife Onizuka
  • VWR-19151 - Votes: 3 - Setting afk-timeout to "never" in viewer 2 sets timeout in 1.23 to zero seconds - Moon Metty
  • 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
  • WEB-1446 - Votes: 3 - Make Google search in the Wiki use https protocol instead of http to avoid assumed logout after search - Zai Lynch
  • SVC-4241 - Votes: 2 - physical objects become non-physical, possibly when crossing parcel lines - wyvern dryke
  • SVC-4348 - Votes: 2 - Zeroing Prim Rotation via llSetRot Has No Effect After llTargetOmega - Cyd Woolley

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.