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

From Second Life Wiki
Jump to navigation Jump to search
Line 8: Line 8:


== Hot by Vote ==
== Hot by Vote ==
[http://www.sljirastats.com/jira_search.php?search=33&output=wiki High Voted Bugs]
* {{jira|SVC-2604}} - Votes: 35 - llRequestSimulatorData() no longer works reliably - {{User|Kalel Venkman}}
* {{jira|VWR-1402}} - Votes: 11 - Avatar eye's turn Black - {{User|lucian overlord}}
* {{jira|VWR-1740}} - Votes: 14 - Progressive increase in SL viewer memory footprint / decrease in performance when TPing between busy areas - {{User|Dael Ra}}


[http://www.sljirastats.com/jira_search.php?search=33&output=wiki High Voted Bugs]


== Patches ==
== Patches ==
Line 16: Line 20:
== 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-8105}} - Votes: 0 - Sound volume too low - {{User|Mircea Lobo}}
* {{jira|VWR-8094}} - Votes: 0 - Ability to Mute Lindens through active speakers List - {{User|kirstenlee Cinquetti}}
* {{jira|VWR-6181}} - Votes: 1 - Physical movements problems since last patch - {{User|liane Lisle}}
* {{jira|VWR-7879}} - Votes: 0 - Could not teleport .....no valid parcel could be found - {{User|kaci soyer}}
* {{jira|VWR-7795}} - Votes: 0 - world is invisible - {{User|Davie Mougin}}
* {{jira|WEB-267}} - Votes: 0 - Email from Support points to bad URL - {{User|Sindy Tsure}}
* {{jira|VWR-7520}} - Votes: 0 - Spacenavigator apears to be triggering actions that are captured as double taps on arrow keys - {{User|Flynt Jefferson}}
* {{jira|SVC-721}} - Votes: 1 - Havok4 Collision Solver occasionally tosses an avatar when crossing a border over prim - {{User|Teravus Ousley}}
* {{jira|VWR-7434}} - Votes: 0 - Crash in repetitive multiple users - {{User|Delaier Saenz}}
* {{jira|VWR-7360}} - Votes: 0 - Login failed - {{User|bigjr Slade}}
* {{jira|VWR-6946}} - Votes: 0 - Particles do not dissappear when UI rendering off - {{User|Christopher Omega}}
* {{jira|WEB-667}} - Votes: 0 - Premium account required to even watchlist a parcel on the land auction site - {{User|Gordon Wendt}}
* {{jira|VWR-7358}} - Votes: 0 - http link open with a error msg the firefox - {{User|bigjr Slade}}
* {{jira|MISC-1353}} - Votes: 0 - Waterhead: Resident Advertisement Kiosks borked - {{User|Marianne McCann}}
* {{jira|VWR-5319}} - Votes: 0 - my mouser is moving uncontrolable & if i click on something running very slow - {{User|dollface nightfire}}
* {{jira|VWR-4164}} - Votes: 5 - Texture slow to load - {{User|Ilmira Yesheyev}}
* {{jira|SVC-1570}} - Votes: 0 - Camera position shifts in and out for no reason in Havoc 4 beta region - {{User|traverse janus}}
* {{jira|VWR-6740}} - Votes: 2 - SpaceNavigator input cross-talk to other apps - {{User|Whichway Janus}}
* {{jira|VWR-6970}} - Votes: 0 - Crash on Advanced > Character > Display Agent Target - {{User|Day Oh}}
* {{jira|SVC-1684}} - Votes: 0 - Build rezzers experiencing problems on havok4 servers only. - {{User|cal corleone}}
* {{jira|VWR-7157}} - Votes: 0 - llDetectedGrab() returns bad results for certain viewer window sizes - {{User|Lex Neva}}
* {{jira|VWR-7727}} - Votes: 0 - Access Tab in About Land bug - {{User|marineforces123 Korobase}}
* {{jira|VWR-7011}} - Votes: 0 - Camera locks into top of head view - {{User|WarKirby Magojiro}}
* {{jira|EVT-16}} - Votes: 0 - Pulling a Microsoft over run error when only buying 16m lots - {{User|Chocolate Martini}}
* {{jira|SVC-1847}} - Votes: 0 - llStringLength won't diferentiate between single and multiple byte characters, while the cap for chat will - {{User|TigroSpottystripes Katsu}}


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

Revision as of 10:39, 14 July 2008


Next meeting: 2008-07-14 at 12 PM SLT 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

High Voted Bugs


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