Bug triage/2007-10-30

From Second Life Wiki
< Bug triage
Revision as of 16:00, 5 November 2007 by Benjamin Linden (talk | contribs) (New page: {{Bug triage}} Next meeting: 2007-10-30, 10am PDT at {{User|Benjamin Linden}}'s office. See Bug triage for details. == Fast Track Import == (Move bugs here that have solid repros, ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


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
    • Leave as-is. Already imported.
  • VWR-2681 - Votes: 8 - Populate the Resident Chooser list with avatars within chat distance - Matthew Dowd
    • Imported - Assigned to Benjamin Linden
  • VWR-2866 - 1 votes - Optionally show number of people in a region as text on the map - Jacek Antonelli
    • Imported - Assigned to Benjamin Linden
  • VWR-2847 - 0 votes - Wrong hover text in Japanese UI - Alissa Sabre
    • Imported - Assigned to Triage

Misc Pool

  • VWR-2785 - 7 votes - Some text on the screen becomes garbled for a short duration - jason swain
    • More information needed. Reproducible steps?
  • VWR-2803 - 4 votes - Lag Meter network ping metric doesn't account for residents outside the USA - Jayden Beresford
    • Imported - Assigned to Triage
  • VWR-2772 - 2 votes - The Picks Tab shows a snap of obsolete 6-month old Picks - Vakis Oranos
    • More information needed to proceed
  • 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
    • Imported - Assigned to Triage
  • VWR-2723 - 1 votes - Since Rolling Restart Linux Viewer Always Has Offline Screen Although I Can Log-in - Mercia Mcmahon
    • Imported - Assigned to Aric Linden
  • VWR-2792 - 1 votes - Change chat tabs with unread messages to non-blinking - Domchi Underwood
    • Marked as Fixed. Covered by internal Jira DEV-3084 and will be resolved with next voice Patch (1.19.0)
  • VWR-2556 - 1 votes - Viewer attempts to log in with no password - Dale Innis
    • Imported - Assigned to Triage
  • VWR-1971 - 1 votes - Logout in progress from 12 hours.... - cliff theas
    • Closed - Can't reproduce
  • VWR-2872 - Votes: 0 - Clicking on an event link on the map popups a search with the wrong event information - marceledward edman
    • Imported - Assigned to Triage

Feature Request

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)

<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.