Difference between revisions of "Bug triage/2008-01-14"

From Second Life Wiki
Jump to navigation Jump to search
Line 23: Line 23:
== Misc Pool ==
== Misc Pool ==
[http://www.sljirastats.com/jira_search.php?search=35&output=wiki Misc Pool]
[http://www.sljirastats.com/jira_search.php?search=35&output=wiki Misc Pool]
* {{jira|VWR-4148}} - Votes: 0 - Able to go inside sloped land - {{User|James Benedek}}
* {{jira|SVC-1113}} - Votes: 0 - Unjoining diagonal land parcel does not set correctly - {{User|SongbirdClone Writer}}
* {{jira|WEB-397}} - Votes: 3 - Login screen web page is erroneously cached - {{User|ZigZag Freenote}}
* {{jira|VWR-2518}} - Votes: 2 - Performance degrades quickly in release candidate viewers - {{User|Synack Fitzgerald}}
* {{jira|VWR-2996}} - Votes: 2 - Second life crashes always after hitting the button ""Connect"" or ""Preferences"" in the login screen. - {{User|Susan Koltai}}
* {{jira|WEB-102}} - Votes: 2 - Cannot post events with unicode characters in event description - {{User|Leila Carroll}}
* {{jira|VWR-4006}} - Votes: 0 - The RC 1.18.6.2 starts but didn't connect to SL - {{User|Are Sperber}}
* {{jira|VWR-4051}} - Votes: 0 - Double instant message from same avatar - {{User|Natalya Debevec}}
* {{jira|VWR-877}} - Votes: 7 - Receiving private IMs that appear to be group IMs from groups I am not a member of - {{User|Ann Otoole}}
* {{jira|VWR-4012}} - Votes: 0 - Show Updates + Disabling Rendering of Volumes crashes viewer. - {{User|Zwagoth Klaar}}
* {{jira|VWR-4149}} - Votes: 0 - Involuntary Logout on Teleport - {{User|Brandon Shinobu}}
* {{jira|SVC-234}} - Votes: 0 - Erroneous autoreturn behaviour can cause content loss - {{User|amanda levitsky}}
* {{jira|SVC-1117}} - Votes: 0 - Sim crash caused by flying vehicles - {{User|Anora Peart}}
* {{jira|SVC-226}} - Votes: 0 - X-SecondLife-Region should be escaped properly - {{User|alpha zaius}}
* {{jira|SVC-223}} - Votes: 1 - Replying to an offline IM does not work - {{User|imsaho fleury}}
* {{jira|SVC-220}} - Votes: 4 - small-change llSetRot() calls don't cause an update - {{User|Lex Neva}}
* {{jira|SVC-216}} - Votes: 2 - New autoreturn email message shows incorrect region name & position - {{User|Sindy Tsure}}
* {{jira|SVC-214}} - Votes: 0 - The Angular Motor doesn't reset it's start and decay timescales when the velocity is reset - {{User|Ralph Doctorow}}
* {{jira|SVC-209}} - Votes: 1 - Logging in and ""moved to nearby sim"" moves you to landing area - {{User|Feynt Mistral}}
* {{jira|SVC-200}} - Votes: 5 - Prim Animation and llMessageLinked - {{User|Heather Goodliffe}}
* {{jira|SVC-194}} - Votes: 3 - Slow physics objects prematurely settling. - {{User|Elbereth Witte}}
* {{jira|SVC-188}} - Votes: 3 - Server grows high (100-500) pending download count leading to rezzing failures and asset timeouts on high traffic regions. - {{User|Elbereth Witte}}
* {{jira|SVC-183}} - Votes: 2 - key must be typecast in llParcelMediaCommandList to set media texture - {{User|ZenMondo Wormser}}
* {{jira|SVC-168}} - Votes: 2 - Fix LSL Memory (Heap) Leaks - {{User|Cutter Rees}}
* {{jira|SVC-166}} - Votes: 4 - Land adjacent to SIM boundary makes avatars ""sink"" and objects act like phantom - {{User|Nicaine Salome}}


== Pre-meeting activity ==
== Pre-meeting activity ==

Revision as of 13:36, 14 January 2008


Next meeting: 2008-01-14 at Noon SLT in 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

High Voted Bugs

  • VWR-3000 - Votes: 48 - Avatar attachments/bodyparts getting lost during teleportation, cannot reload them until relog - Amurtigress Korobase

Patches

Patches

Misc Pool

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/2008-01-14/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)

<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.