Difference between revisions of "Bug triage/2007-11-07"
Line 10: | Line 10: | ||
==== Not new in 1.18.3.5 or RC 1.18.3, NOT Imported ==== | ==== Not new in 1.18.3.5 or RC 1.18.3, NOT Imported ==== | ||
* {{jira|VWR-2633}} - Votes: 6 - Not all my groups are visible and the group dialog, (Edit -> Groups...) i'm missing some groups - [[User:Dre Dagostino|Dre Dagostino]] | |||
* {{jira|VWR-2700}} - Votes: 1 - Keep the pre-voice 1.18.0.x viewer branch alive for builders - {{User|Bryon Ruxton}} | * {{jira|VWR-2700}} - Votes: 1 - Keep the pre-voice 1.18.0.x viewer branch alive for builders - {{User|Bryon Ruxton}} | ||
* {{jira|VWR-2689}} - Votes: 1 - Suspect memory leak on Mac (Intel Core Duo, OS 10.4, TIGER) - {{User|erestor streeter}} | * {{jira|VWR-2689}} - Votes: 1 - Suspect memory leak on Mac (Intel Core Duo, OS 10.4, TIGER) - {{User|erestor streeter}} |
Revision as of 16:42, 21 October 2007
Next meeting: 2007-10-31 at 3pm at Bridie's Place in Linden Village. Aric and Torley are guest-hosting while Bridie is "Out Of Office". See Bug triage for details.
Fast Track Import
(Move bugs here that have solid repros, or valid patches that you have reviewed)
New in 1.18.3.5 or RC 1.18.3?, NOT Imported
Not new in 1.18.3.5 or RC 1.18.3, NOT Imported
- VWR-2633 - Votes: 6 - Not all my groups are visible and the group dialog, (Edit -> Groups...) i'm missing some groups - Dre Dagostino
- VWR-2700 - Votes: 1 - Keep the pre-voice 1.18.0.x viewer branch alive for builders - Bryon Ruxton
- VWR-2689 - Votes: 1 - Suspect memory leak on Mac (Intel Core Duo, OS 10.4, TIGER) - erestor streeter
- VWR-2664 - Votes: 1 - Copy + Paste + Rename + Wear of Clothing item retains original name in Appearance window header - Coyote Pace
- VWR-2764 - Votes: 0 - VWR crash on changing properties of items within a sales box - Leanne Karas
- VWR-2763 - Votes: 0 - Viewer FPS Sudden Slowdowns - Kevin Susenko
- VWR-2762 - Votes: 0 - I think my Game became an invisble prim and disapered - Odda Bing
- VWR-2761 - Votes: 0 - Group Notices are shown as sent twice. - Shadowlock Holmer
- VWR-2758 - Votes: 0 - Landscape renders on top of avatar on login - Shoshana Epsilon
- VWR-2757 - Votes: 0 - Voice doesn't work - Yma Waki
- VWR-2756 - Votes: 0 - Attachments showing to owner but not to others - Solomon Draken
- VWR-2755 - Votes: 0 - duplicate PARCEL_FLAG_RESTRICT_PUSHOBJECT line in keywords.ini - Adam Marker
- VWR-2754 - Votes: 0 - rainbow avatar - Whoops Babii
- VWR-2748 - Votes: 0 - Viewer won't use physical RAM beyond 2 GB, crashes instead - Ron Crimson
- VWR-2746 - Votes: 0 - Incorrect Debug Menu key combination - Kazunori Takakura
- VWR-2745 - Votes: 0 - undefined reference to `SDL_x11_get_ic_address' while compiling Linux 1.18.3.5 - Kazunori Takakura
- VWR-2739 - Votes: 0 - time_t is assumed to be 32 bit when it is not on all systems - Michelle2 Zenovka
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-07/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)
- Look at the results of one of these queries
- General triage: "Viewer 2 Bug Triage" (sorted by LL ID, Created, Last Triaged):
- UI triage:
- https://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=10470 (The selected filter with id '10470' does not exist.)
- (Note: there's no hard and fast rule that says these are the only valid queries. If you feel there's a better query one particular week, use that.)
- Save a copy of the XML version of the query
- Run this perl script on the xml file
<perl>
- !/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.
- if you do not have access to a perl interpreter. There is a ported version of the script on PHP, located here: http://jirafiller.technokittydevelopment.com/ made by roberto salubrius