Bug triage/2008-10-08
Jump to navigation
Jump to search
Next meeting: 2008-10-08 at 3pm PST at Bridie Linden's house.
Import? 1.21 RC5
- VWR-9338 - Votes: 5 - llSetCamera edit bug - Yamil Dagger
- VWR-9270 - Votes: 3 - Item count in Script recompile dialog shows count of prims, rather than scripts being recompiled - WarKirby Magojiro
- VWR-9509 - Votes: 3 - Texture Cache Appears Ineffectve - Carl Wilder
- VWR-9056 - Votes: 1 - Client Frame Rate drops to 3 fps (or similar) on opening map - Jahdo Ohtobide
- VWR-9513 - Votes: 1 - lost all prims even if i took a photo it seems invisible - tanisha Whitfield
- VWR-9104 - Votes: 1 - Display driver to fail and RC Viewer crashes - Davec Horsforth
- VWR-9279 - Votes: 1 - Sudden unusual crash, did not hang. Instant crash. - pulseburst flow
- VWR-9557 - Votes: 1 - a standalone build fails on Fedora with NVIDIA graphics driver: 'glActiveTextureARB' was not declared in this scope - Alissa Sabre
- VWR-8914 - Votes: 0 - Texture from large prim superimpose on alpha textures then other objects before crash - Holocluck Henly
- VWR-8919 - Votes: 0 - call to llLoadURL causes SL window to minimize when web page loads - Simone Gateaux
- VWR-8946 - Votes: 0 - Avatar - parts of suddenly turn black - shai khalifa
- VWR-9060 - Votes: 0 - llAttachToAvatar() opens inventory window - Kahiro Watanabe
- VWR-9128 - Votes: 0 - Take Snapshot does not function when dialog box is open - phoenixflames kukulcan
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
- VWR-8913 - Votes: 0 - 1.21.0 sometimes crashes when you click on something - Beware Hax (Resolved as duplicate of vwr-7399 and others-CM))
- VWR-9535 - Votes: 0 - 1.21.4 frequent forced log outs - dario darrow ((was already resolved as a duplicate of vwr-9404 by Ramzi so moving it here - CM))
- VWR-9605 - Votes: 0 - No sound or voice in Release Candidate on Vista - dorset plubeau ((tentatively resolving as duplicate of VWR-9544 which is also on the agenda already-Cm))
- VWR-9469 - Votes: 0 - tried twice to download new release viewer and if failed.. - Storyof Oh ((was already resolved as a duplicate of vwr-9467 by Ramzi so moving it here - CM))
- VWR-9543 - Votes: 0 - Inventory scrolling erratic - Lindal Kidd ((more or less duplicates or at least relates to VWR-7948 so resolved as such -CM))
- VWR-9595 - Votes: 0 - Closing Profile of multiple open results in crash - phoenixflames kukulcan((resolved as duplicate of VWR-7029 and Vwr-9526 - CM))
Transcript
Transcript is/will be at [[Bug triage/2008-10-08}/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