Difference between revisions of "Bug triage/2007-11-14"

From Second Life Wiki
Jump to navigation Jump to search
(→‎Normal: More "Resolved" item.)
(→‎Crashing: More resolved item.)
Line 14: Line 14:


* {{jira|VWR-2946}} - Votes: 4 - Crashes on startup - {{User|Emma Nowhere}}
* {{jira|VWR-2946}} - Votes: 4 - Crashes on startup - {{User|Emma Nowhere}}
** Resolved as "Cannot Reproduce"


=== Critical ===
=== Critical ===

Revision as of 15:43, 14 November 2007


See Bug triage for schedule details.

1.18.5 RC Bugs (as reported)

New Arrival!

I'm afraid nobody has examined these issues yet... -- Alissa.

Crashing

Critical

Major

  • VWR-3064 - Votes: 1 - Land Search does not show Description Text for any parcel selected in Search - Chaos Mohr
  • VWR-3079 - Votes: 0 - New Search: Top Picks in on avatar display is not in the correct order - Harleen Gretzky

Normal

  • VWR-2410 - Votes: 8 - noise dot appear in chat window when clien running long with chatting. - march Korda
  • VWR-3058 - Votes: 1 - Second Life Crashes on Install on Korean Windows XP if they have default Korean Text as windows xp user name - Fire Centaur
  • VWR-3062 - Votes: 0 - Items for sale at L$0 don't show any price in new search - they should show "L$0" - meade paravane
  • VWR-3070 - Votes: 3 - New Search window does not minimize properly - Kamilion Schnook
  • VWR-3071 - Votes: 0 - Objects Not Set for Sale Defaulting for Sale - Prokofy Neva
    • Resolved as "Misfiled"
  • VWR-3072 - Votes: 1 - No-Transfer Objects Showing as Set for Sale on New Search - Prokofy Neva
  • VWR-3073 - Votes: 2 - Right-clicking someone's attachments to view profile loads (???) (???) instead - Day Oh
  • VWR-3077 - Votes: 2 - Some search result lead to XML error page - Nargus Asturias
  • VWR-3078 - Votes: 0 - Groups that appear as (???) aren't handled correctly by the new search - Darien Caldwell
  • VWR-3085 - Votes: 0 - Although I have shoes with a built in walk, I walk like a drunken wind up toy in 1.18.5 - Honour McMillan
    • Resolved as "Needs More Info"?

1.18.4 Bugs

Other

  • VWR-2826 - Votes: 142 - Several problems on handling Japanese input (and possiblly Chinese/Korean also) - Alissa Sabre
    • Resolved as "Fixed Internally", but I want to talk on this, if time allows. -- Alissa Sabre

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/2007-11-14/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.