Difference between revisions of "Bug triage/2007-09-24"

From Second Life Wiki
Jump to navigation Jump to search
(patches)
Line 1: Line 1:
{{Bug triage}}
{{Bug triage}}


Next meeting: 2007-XX-XX at TIME and PLACE (FIXME).  See [[Bug triage]] for details.
Next meeting: 2007-09-24 at 3pm in Hippotropolis.  See [[Bug triage]] for details.


== Fast Track Import ==
== Fast Track Import ==
Line 10: Line 10:


== Patches ==
== Patches ==
* {{jira|VWR-2563}} - Votes: 0 - Add exists() function to LLFile - {{User|Nicholaz Beresford}}
* {{jira|SVC-580}} - Votes: 1 - ATTACH_LPEC / ATTACH_RPEC reversed - {{User|Ziggy Puff}}
* {{jira|VWR-1609}} - Votes: 3 - disabling "Show Selection Beam" makes beam render incorrectly for others - {{User|Lex Neva}}
* {{jira|VWR-2524}} - Votes: 1 - Possible crash on startup with group messages waiting (llnotify.cpp) - {{User|Nicholaz Beresford}}
* {{jira|VWR-2551}} - Votes: 0 - Error in macview.xcodeproj -- invalid dependencies - {{User|bushing Spatula}}
* {{jira|VWR-2488}} - Votes: 1 - Standalone build is almost, but not quite there. - {{User|Seg Baphomet}}
* {{jira|VWR-2546}} - Votes: 0 - Allow registering multiple message system handlers - {{User|Dale Glass}}
* {{jira|VWR-860}} - Votes: 2 - Support display memory above 512MB - {{User|Tillie Ariantho}}
* {{jira|VWR-2086}} - Votes: 8 - Alt key no longer shows "physical" when pressed. - {{User|Cliff Commons}}
* {{jira|VWR-2516}} - Votes: 1 - Flycam support for Mac OS X - {{User|abstra apparatchik}}
* {{jira|VWR-2331}} - Votes: 7 - Terraform tool variable "strength" - {{User|Gigs Taggart}}
* {{jira|VWR-2504}} - Votes: 0 - Source cleanup: Move chat sending code from LLChatBar to LLAgent - {{User|Dale Glass}}
* {{jira|VWR-2412}} - Votes: 0 - Possible crash drawpoolwater - {{User|Nicholaz Beresford}}
* {{jira|VWR-2411}} - Votes: 0 - Possible crash in pipeline.cpp - {{User|Nicholaz Beresford}}
* {{jira|VWR-1677}} - Votes: 0 - Ctrl+T does not return focus to the chat bar in IM window - {{User|Feynt Mistral}}
* {{jira|VWR-2256}} - Votes: 1 - Mac updater directory permission issues - {{User|Grazer Kline}}
* {{jira|VWR-2255}} - Votes: 1 - Mac updater does not log output. - {{User|Grazer Kline}}
* {{jira|VWR-2113}} - Votes: 0 - Mac Auto Updater "hides", giving appearance of failing - {{User|Gibson Willis}}


== Misc Pool ==
== Misc Pool ==

Revision as of 03:18, 24 September 2007


Next meeting: 2007-09-24 at 3pm in 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

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-09-24/Transcript

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.