Bug triage/2008-01-16
Jump to navigation
Jump to search
Next meeting: 2008-01-16 at 3pm PST at Bridie Linden's house.
Import?
(Bugs reported in 1.18.6.4 Release Candidate — consider for import?, sorted by votes)
- VWR-4181 - Votes: 2 - ObjectData.PathShearX and ObjectData.PathShearY are U8, should be S8 - Eddy Stryker
- VWR-4158 - Votes: 1 - The prim is draggable like Ctrl-Drag when state changing in touch/touch_start event and next state do not have touch_start/touch/touch_end event. - Fake Fitzgerald
- VWR-4216 - Votes: 0 - Mac Pro (early 2008) crashes Windlight & regular viewer - Zyzzy Zarf
- VWR-3850 - Votes: 0 - nvlddmkm Graphic Failure Error with SL Only - Azildin Furst
Fast Track Import
(Move bugs here that have solid repros, or valid patches that you have reviewed)
Hot by Vote
- SVC-1166 - Votes: 12 - Temp prims are erroneously counting against sim total prim count - Ms Fortitude
Patches
- VWR-1286 - Votes: 21 - alt-zooming on hollow face mishandled - Lex Neva
- Has new comments since last triage, but looks like Gigs put development of the patch on hold
- SVC-1171 - Votes: 0 - LSL Unsigned Right Shift Operator (>>>) - Strife Onizuka
- WEB-456 - Votes: 2 - Enable interwiki linking - SignpostMarv Martin
- VWR-3749 - Votes: 0 - Windlight linkage fails on standalone build due to no boost_regex linkage - Michelle2 Zenovka
- Fix pending
Misc Pool
- VWR-2680 - Votes: 7 - Problem between Starting Second Life and NVIDIA GeForce 7600GS, 7800GS - Bonca Chikuwa
- SVC-126 - Votes: 7 - In world map image is not updating - Gigs Taggart
- SVC-200 - Votes: 5 - Prim Animation and llMessageLinked - Heather Goodliffe
- SVC-166 - Votes: 4 - Land adjacent to SIM boundary makes avatars ""sink"" and objects act like phantom - Nicaine Salome
- SVC-220 - Votes: 4 - small-change llSetRot() calls don't cause an update - Lex Neva
- SVC-188 - Votes: 3 - Server grows high (100-500) pending download count leading to rezzing failures and asset timeouts on high traffic regions. - Elbereth Witte
- SVC-194 - Votes: 3 - Slow physics objects prematurely settling. - Elbereth Witte
- WEB-102 - Votes: 2 - Cannot post events with unicode characters in event description - Leila Carroll
- VWR-2996 - Votes: 2 - Second life crashes always after hitting the button ""Connect"" or ""Preferences"" in the login screen. - Susan Koltai
- SVC-131 - Votes: 2 - Physical objects set to slow velocity sometimes stop - Ralph Doctorow
- SVC-216 - Votes: 2 - New autoreturn email message shows incorrect region name & position - Sindy Tsure
- SVC-168 - Votes: 2 - Fix LSL Memory (Heap) Leaks - Cutter Rees
- SVC-183 - Votes: 2 - key must be typecast in llParcelMediaCommandList to set media texture - ZenMondo Wormser
- SVC-148 - Votes: 2 - Teleport into full region no longer displays error message 'region is full' but instead 'teleport fail' - Drew Dwi
- SVC-165 - Votes: 1 - Clothing and skins unable to load due to ""database"" issues in 1.15 - Sadako Shikami
- SVC-223 - Votes: 1 - Replying to an offline IM does not work - imsaho fleury
- SVC-209 - Votes: 1 - Logging in and ""moved to nearby sim"" moves you to landing area - Feynt Mistral
- SVC-1117 - Votes: 0 - Sim crash caused by flying vehicles - Anora Peart
- VWR-4051 - Votes: 0 - Double instant message from same avatar - Natalya Debevec
- VWR-4012 - Votes: 0 - Show Updates + Disabling Rendering of Volumes crashes viewer. - Zwagoth Klaar
- VWR-4006 - Votes: 0 - The RC 1.18.6.2 starts but didn't connect to SL - Are Sperber
- Sooo... Is it fixed or not?
- SVC-214 - Votes: 0 - The Angular Motor doesn't reset it's start and decay timescales when the velocity is reset - Ralph Doctorow
- SVC-234 - Votes: 0 - Erroneous autoreturn behaviour can cause content loss - amanda levitsky
- SVC-156 - Votes: 0 - Groups Listing Last Login In Reverse Chronological Order - Dirk Talamasca
- SVC-226 - Votes: 0 - X-SecondLife-Region should be escaped properly - alpha zaius
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/2008-01-16/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