Difference between revisions of "Bug triage/UI Agenda"

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




== Pre-meeting activity ==
== Feature Request ==


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.
* {{jira|VWR-1607}} - Votes: 45 - Ability to log out back to the welcome / log in screen instead of having to quit - {{User|Davey Callisto}}
* {{jira|VWR-1927}} - Votes: 35 - Preferences: Add the ability to customize display fonts - {{User|Odysseus Fairymeadow}}
* {{jira|VWR-2249}} - Votes: 29 - Sculpted Prims (Sculpties/Sculptys) Level of Detail (LoD) Should be Able to be Set by the Client in Preferences Window - {{User|Miller Rust}}
* {{jira|VWR-468}} - Votes: 26 - Allow login as "invisible to all" from the login window - {{User|StarSong Bright}}
* {{jira|VWR-220}} - Votes: 15 - Inventory tab enhancements - {{User|Argent Stonecutter}}
* {{jira|VWR-1066}} - Votes: 12 - Save screenshots in any other image format than bitmap - {{User|Yuukie Onmura}}
* {{jira|VWR-1163}} - Votes: 12 - Friends Categories - instead of using multiple normal groups - {{User|Smiley Barry}}
* {{jira|VWR-394}} - Votes: 11 - LSL function to access the HTML floater for more capable dialogs. - {{User|Argent Stonecutter}}
* {{jira|VWR-328}} - Votes: 10 - Turn off voice dots above the user's head. - {{User|Catherine Omega}}


=== Imported ===
=== Imported ===

Revision as of 15:44, 23 October 2007


Next meeting: 2007-XX-XX at TIME and PLACE (FIXME). 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

Patches

Misc Pool

Feature Request

Imported

Resolved

Transcript

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