Difference between revisions of "Bug triage/UI Agenda"
Jump to navigation
Jump to search
Alexa Linden (talk | contribs) |
|||
Line 49: | Line 49: | ||
== Transcript == | == Transcript == | ||
Transcript is/will be at [[ | Transcript is/will be at [[Bug Triage/2007-10-30/Transcript]] | ||
== Creating An Agenda == | == Creating An Agenda == | ||
{{Bug List Instructions}} | {{Bug List Instructions}} |
Revision as of 11:33, 30 October 2007
Next meeting: 2007-10-30, 10am PDT at Benjamin Linden's office. 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
- VWR-1651 - Votes: 8 - Add ability to open a partners profile whilst viewing an avatar's profile - Matthew Dowd
- VWR-2681 - Votes: 8 - Populate the Resident Chooser list with avatars within chat distance - Matthew Dowd
- VWR-2866 - 1 votes - Optionally show number of people in a region as text on the map - Jacek Antonelli
- VWR-2847 - 0 votes - Wrong hover text in Japanese UI - Alissa Sabre
Misc Pool
- VWR-2785 - 7 votes - Some text on the screen becomes garbled for a short duration - jason swain
- VWR-2803 - 4 votes - Lag Meter network ping metric doesn't account for residents outside the USA - Jayden Beresford
- VWR-2772 - 2 votes - The Picks Tab shows a snap of obsolete 6-month old Picks - Vakis Oranos
- VWR-2830 - 2 votes - If you use Search -> Places, and selected one of the hits, it shows a text "[AREA] sq. m." literally on the lower area - meade paravane
- VWR-2723 - 1 votes - Since Rolling Restart Linux Viewer Always Has Offline Screen Although I Can Log-in - Mercia Mcmahon
- VWR-2792 - 1 votes - Change chat tabs with unread messages to non-blinking - Domchi Underwood
- VWR-2556 - 1 votes - Viewer attempts to log in with no password - Dale Innis
- VWR-1971 - 1 votes - Logout in progress from 12 hours.... - cliff theas
- VWR-2872 - Votes: 0 - Clicking on an event link on the map popups a search with the wrong event information - marceledward edman
- VWR-2539 - Votes: 0 - Can't edit my face - Marcio Moo
- VWR-2795 - 0 votes - New Land Description Multiline box does not allow Line Return formatting - converts to ? - Charlene Trudeau
- VWR-2761 - 0 votes - Group Notices are shown as sent twice. - Shadowlock Holmer
Feature Request
- VWR-1607 - Votes: 45 - Ability to log out back to the welcome / log in screen instead of having to quit - Davey Callisto
- VWR-1927 - Votes: 35 - Preferences: Add the ability to customize display fonts - Odysseus Fairymeadow
- VWR-2249 - Votes: 29 - Sculpted Prims (Sculpties/Sculptys) Level of Detail (LoD) Should be Able to be Set by the Client in Preferences Window - Miller Rust
- VWR-468 - Votes: 26 - Allow login as "invisible to all" from the login window - StarSong Bright
- VWR-220 - Votes: 15 - Inventory tab enhancements - Argent Stonecutter
- VWR-1066 - Votes: 12 - Save screenshots in any other image format than bitmap - Yuukie Onmura
- VWR-1163 - Votes: 12 - Friends Categories - instead of using multiple normal groups - Smiley Barry
- VWR-394 - Votes: 11 - LSL function to access the HTML floater for more capable dialogs. - Argent Stonecutter
- VWR-328 - Votes: 10 - Turn off voice dots above the user's head. - Catherine Omega
Imported
Resolved
Transcript
Transcript is/will be at Bug Triage/2007-10-30/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)
- Look at the results of one of these queries
- General triage: "Viewer 2 Bug Triage" (sorted by LL ID, Created, Last Triaged):
- UI triage:
- https://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=10470 (The selected filter with id '10470' does not exist.)
- (Note: there's no hard and fast rule that says these are the only valid queries. If you feel there's a better query one particular week, use that.)
- Save a copy of the XML version of the query
- Run this perl script on the xml file
<perl>
- !/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.
- if you do not have access to a perl interpreter. There is a ported version of the script on PHP, located here: http://jirafiller.technokittydevelopment.com/ made by roberto salubrius