Bug triage/2007-11-19

From Second Life Wiki
< Bug triage
Revision as of 19:49, 17 November 2007 by Gigs Taggart (talk | contribs)
Jump to navigation Jump to search


Next meeting: 2007-11-19 at Monday, 12pm PST in the Hippotropolis Meeting area🖈

Top Voted Features

  • MISC-208 - Votes: 244 - More than 25 groups! - Mano Nevadan
  • MISC-65 - Votes: 154 - New Feature -> Dialog -> Group Information -> Members & Roles -> Abilities -> Send IMs - Honey Fairweather
  • VWR-1017 - Votes: 129 - New Feature Request: Option to "Mute Visibility" on objects to alleviate problems with 16sqm parcels, ad-farms and probably a thousand other eye sores. - Nicholaz Beresford
  • MISC-283 - Votes: 101 - LL needs to allow scripting on *ALL* Linden water parcels. - jacqueline trudeau
  • VWR-2348 - Votes: 85 - New Feature: Create Image Based Text code confirmation for all Land Buying Transactions - Chaos Mohr


Fast Track Import

(Move bugs here that have solid repros, or valid patches that you have reviewed)


Hot by Vote

Patches

  • VWR-3272 - Votes: 3 - Shader support removed in Windlight for some cards that work well (when it is re-enabled) - Abyssin Otoro
  • VWR-3265 - Votes: 0 - IM Tabs stack vertical rather than horizontal (Yet another solution to the communicate window) - Matthew Dowd
  • VWR-3206 - Votes: 0 - OpenJPEG svn478 causes slviewer to crash - Seg Baphomet
  • VWR-3202 - Votes: 0 - Make chat console background color customizable - Jacek Antonelli
  • VWR-3093 - Votes: 1 - Allow MU* (MUCK, MUSH, MUX, MUD) like "poses" (=IRC emotes) in chat and IMs. - Henri Beauchamp
  • VWR-3087 - Votes: 2 - Allow for hiding the "Release Keys" button and "Master Remote" volume control. - Henri Beauchamp
  • VWR-3060 - Votes: 0 - Add a setting to hide the IMs in the main chat. - Henri Beauchamp
  • VWR-1917 - Votes: 8 - Have Friends and Groups display in a seperate window when accessed via menus. Add short cut for Groups - Matthew Dowd
  • VWR-1549 - Votes: 7 - Move Friends and Groups tabs from left to bottom - Matthew Dowd


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