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

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


== Hot by Vote ==
== Hot by Vote ==
* {{jira|VWR-786}} - Votes: 42 - IM does not respect "allow user to see my online status" flag in friends list - {{User|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.
* {{jira|VWR-2605}} - Votes: 13 - [UPDATED] Problem with the current fonts and cyrillic characters - {{User|Pesho Replacement}}
* {{jira|SVC-483}} - Votes: 13 - Script is missing from Database - {{User|Laronzo Fitzgerald}}
**Triaged as duplicate before, user is still pissed.  Maybe someone could look at his specific problem?


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


== Misc Pool ==
== Misc Pool ==
 
* {{jira|VWR-1402}} - Votes: 8 - Avatar eye's turn Black - {{User|lucian overlord}}
* {{jira|SVC-171}} - Votes: 7 - Objects in a user's inventory show  00000-00-00-00000 for UUIDs when tried to attach - {{User|Montana Corleone}}
* {{jira|SVC-255}} - Votes: 7 - Solid, invisible ghost prims - {{User|WarKirby Magojiro}}
* {{jira|VWR-895}} - Votes: 8 - Texture latency - texturing all sides of a prim at once results in one side not being textured, has to be selected individually - {{User|Cory Edo}}


== Pre-meeting activity ==
== Pre-meeting activity ==

Revision as of 03:02, 3 November 2007


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

Patches


Misc Pool

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.