Bug triage/2008-12-01
< Bug triage
Jump to navigation
Jump to search
Revision as of 19:12, 30 November 2008 by Gordon Wendt (talk | contribs) (→Misc Pool: rm VWR-8641, widespread credit card issue)
Next meeting: 2008-12-01 at 12:00PM at Hippotropolis Meeting area🖈. 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
- SVC-2941 - Votes: 13 - OGP Beta / OpenSim : Teleporting to a different region, sometimes, causes avatar/terrain/objects not to rez - BlueWall Slade
- VWR-8759 - Votes: 12 - llTextBox in client shows blue !!TexTBox!! dialog - Kephra Nurmi
Patches
- VWR-10728 - Votes: 0 - A bug in a new function LLTexUnit::bind(LLImageGL*) in 1.22 - Alissa Sabre
- VWR-10759 - Votes: 1 - LLMediaImplGStreamer::mediaData is a pointer to an array. Delete with operator [] instead of operator delete. - Aleric Inglewood
Misc Pool
- VWR-10746 - Votes: 0 - Group Role, Membership - Edit Issues (Ownerside) - Joylia Enoch
- VWR-10725 - Votes: 0 - on the left edge of my screen , vertically there are four (4) bars of what looks like light, each aprox. 2 - 3 inches long - MrBill Kurri
- SVC-3445 - Votes: 0 - MONO - llReleaseControls() being issued in a HUD will also release them on the vehicle your sitting on - darling brody
- VWR-10713 - Votes: 0 - Inventory jumps on friend's login/logout - Silver Key
- VWR-7468 - Votes: 0 - changing fontsizemonspace causes statistic view to become unreadable - Doran Zemlja
- VWR-3707 - Votes: 0 - Local Lighting exposes Invisiprims - eren padar
- VWR-3706 - Votes: 0 - Windows installer doesn't respect the /S silent flag - OSCR Loon
- SVC-3457 - Votes: 0 - I look like a ghost, and have tried everything that i could find and am still a ghost - Xel Varnish
- MISC-1952 - Votes: 0 - can no longer teleport to First Look Isle - McCabe Maxsted
- VWR-10483 - Votes: 0 - Edit window does not regain focus when another window is open. - Joeseph Albanese
- VWR-7829 - Votes: 0 - Error message ID truncated to63 characters - AnnMarie Otoole
- VWR-8187 - Votes: 0 - Settings in Preference that has changed is not being saved - perfumed odets
- VWR-3650 - Votes: 0 - WindLight and Vista - Kaylie Sparkle
- VWR-3643 - Votes: 0 - Loading Throttle for textures effects object pickup= object loss - Garn Conover
- VWR-4534 - Votes: 0 - Screen does not black out during teleport - Liberty Tesla
- VWR-3613 - Votes: 0 - Black Particles appear when scripted object 'talks'. - Nyteshade Vesperia
- VWR-3607 - Votes: 0 - SLURL called twice looses parcel picture - Gypsy Paz
- SVC-1692 - Votes: 0 - Havok 4 sim Fry, Avatar slowly moves across the terrain, it appears that the land is moving, but the avatar location is actually changing seems to be gravity related. - carlbotd truss
- VWR-3600 - Votes: 0 - unable to create new onjects via build menu - Garn Conover
- VWR-3592 - Votes: 1 - Non-existent AV being drawn - gil druart
- VWR-8488 - Votes: 0 - On a fresh install, selecting ""play music when available"" does not trigger play button despite music playing - McCabe Maxsted
- VWR-6768 - Votes: 0 - Select ""Large/Medium/Small"" option does not apply to selection unless camera focus is changed - Nicoladie Gymnast
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
- SVC-2987 - Votes: 8 - Batch-converting scripts between LSL2 and Mono enables disabled scripts in an object - Creem Pye
- VWR-5287 - Votes: 12 - Prims turning Phantom on their own - stacyanne homewood
- SVC-1459 - Votes: 14 - Mature avatars may be moved to PG telehubs on login, due to last region unavaliable - jessica hultcrantz
- MISC-1954 - Votes: 0 - Permissions given by another resident to another to edit their prims ... - Myriah DeSantis
Transcript
Transcript is/will be at Bug triage/2008-12-01/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