Difference between revisions of "Bug triage/2010-03-18"

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


== Misc Pool ==
== Misc Pool ==
* {{jira|VWR-18353}} - 0 votes - Save outfit dialog: Function of Enter and Escape key borked - [[User:Ansariel Hiller|Ansariel Hiller]]
* {{jira|VWR-18352}} - 0 votes - Long notecard titles continue under Locked and Help icons on title bar. - [[User:Aeonix Aeon|Aeonix Aeon]]
* {{jira|VWR-18351}} - 15 votes - After copying an item of clothing, changing texture on copied item also changes texture of original - [[User:blakopal Galicia|blakopal Galicia]]
* {{jira|VWR-18349}} - 3 votes - Numbers in edit Appearance are not shown anymore - [[User:Alexandrea Fride|Alexandrea Fride]]
* {{jira|VWR-18344}} - 0 votes - Keyboard problem on mediashared  - [[User:naofan Teardrop|naofan Teardrop]]
* {{jira|VWR-18343}} - 0 votes - Logging in with MacBook, screen is upside down & backwards & doesn't function - [[User:Coughdrop Littlething|Coughdrop Littlething]]
* {{jira|VWR-18340}} - 6 votes - Attached Shared Media shouldn't autoplay by default - [[User:Tali Rosca|Tali Rosca]]
* {{jira|VWR-18335}} - 0 votes - "Arrow Keys Always Move Me" Option Does Not Disable WASD Controls - [[User:Aeonix Aeon|Aeonix Aeon]]
* {{jira|VWR-18334}} - 0 votes - People -> My Friends list has overlapping text at the top covering the first few contacts. - [[User:Aeonix Aeon|Aeonix Aeon]]
* {{jira|VWR-18323}} - 1 votes - Option to close chat bar with "Enter" no longer in Preferences; only available via debug menu? - [[User:Molly Linden|Molly Linden]]
* {{jira|VWR-18311}} - 0 votes - Profile Real World description gets messed up if out of the old characters' number limit - [[User:SLB Wirefly|SLB Wirefly]]


== Pre-meeting activity ==
== Pre-meeting activity ==

Revision as of 05:01, 18 March 2010

Agenda



  Please Note: There will be no public triage on Thursday March 11th, 2010
  Louise and Davy will be working on Voice Maintenance (See this Grid Status post)


  Please Note: Thursday 18th March and Thursday 25th March
  Public triages will be held at 3.30am PDT (10.30am GMT), as US clocks change 2 weeks before European clocks


Next meeting: 2010-03-18 at 3:30 AM PDT at Louise's Office in Cirano. See Bug triage for details.

Fast Track Import

(Move bugs here that have solid repros, or valid patches that you have reviewed)

Misc Pool

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-03-18/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.