Bug triage/2007-11-05

From Second Life Wiki
< Bug triage(Redirected from Bug triage/2007-11-5)
Jump to navigation Jump to search


Next meeting: 2007-11-5 at 3pm at Hippotropolis. 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

  • VWR-786 - Votes: 42 - IM does not respect "allow user to see my online status" flag in friends list - astryd moore
    • Previously triaged as "Leave As-is" with 16 votes, has 42 votes now.
    • The issue at hand regarding getting two different behaviors when IMing someone hiding vs IMing someone really offline could be fixed, if it still reproduces.
      • Imported - Assigned to Aric Linden
  • VWR-2605 - Votes: 13 - [UPDATED] Problem with the current fonts and cyrillic characters - Pesho Replacement
    • Imported - Assigned to Simon Linden
  • SVC-483 - Votes: 13 - Script is missing from Database - Laronzo Fitzgerald
    • Triaged as duplicate before, user is still pissed. Maybe someone could look at his specific problem?
      • Imported - Assigned to Hamilton Linden

Patches

  • VWR-2948 - Votes: 0 - Create XUI-based Client and Server menus - Jacek Antonelli
    • Imported - Assigned to Aric Linden
  • VWR-2947 - Votes: 0 - Create menu call listeners for Client and Server menu functions. - Jacek Antonelli
    • Imported - Assigned to Aric Linden
  • VWR-2865 - Votes: 0 - New SConstruct flag to (not) make tarball after compiling - Jacek Antonelli
    • Imported - Assigned to Aric Linden
  • VWR-2834 - Votes: 1 - Builds fail on 1.18.4.0 with no mozlib - Michelle2 Zenovka
    • Imported - Assigned to Aric Linden
  • MISC-292 - Votes: 1 - SL Autoupdater Timed Retry - Tmyclyk Dmytryk
    • Imported - Assigned to Aric Linden

Misc Pool

  • VWR-2946 - Votes: 0 - Crashes on startup - Emma Nowhere
    • Imported - Assigned to Steve Linden
  • VWR-1402 - Votes: 8 - Avatar eye's turn Black - lucian overlord
    • Asked posters to provide me the eye's creator, name of eyes and location of store so I can buy a copy and investigate
  • SVC-171 - Votes: 7 - Objects in a user's inventory show 00000-00-00-00000 for UUIDs when tried to attach - Montana Corleone
    • Imported - Assigned to Hamilton Linden
  • SVC-255 - Votes: 7 - Solid, invisible ghost prims - WarKirby Magojiro
    • Requested reproducible steps

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