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

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


* {{jira|VWR-8240}} - Votes: 2 - Touch duration calculation broken in Linux viewer, returns zero values - {{User|Stephani Honi}}
* {{jira|VWR-8240}} - Votes: 2 - Touch duration calculation broken in Linux viewer, returns zero values - {{User|Stephani Honi}}
* {{jira|VWR-8343}} - Votes: 4 - Official 1.20.15 viewer crashes with Nvidia - {{User|Chantal Fielding}}
* {{jira|SVC-1546}} - Votes: 3 - different unsit behavior - {{User|Gypsy Paz}}
* {{jira|SVC-1546}} - Votes: 3 - different unsit behavior - {{User|Gypsy Paz}}
* {{jira|VWR-8112}} - Votes: 0 - When displaying a group in HTML (new) search the button to display the group information is labeled wrong - {{User|Harleen Gretzky}}
* {{jira|VWR-8112}} - Votes: 0 - When displaying a group in HTML (new) search the button to display the group information is labeled wrong - {{User|Harleen Gretzky}}

Revision as of 09:08, 28 July 2008


Next meeting: 2008-07-28 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

  • VWR-8240 - Votes: 2 - Touch duration calculation broken in Linux viewer, returns zero values - Stephani Honi
  • VWR-8343 - Votes: 4 - Official 1.20.15 viewer crashes with Nvidia - Chantal Fielding
  • SVC-1546 - Votes: 3 - different unsit behavior - Gypsy Paz
  • VWR-8112 - Votes: 0 - When displaying a group in HTML (new) search the button to display the group information is labeled wrong - Harleen Gretzky
  • SVC-2688 - Votes: 0 - Can't terraform chunk of mainland parcel - diag anzac
  • VWR-8350 - Votes: 0 - Search box is too big to fit in 800x575 window - djaan arai
  • VWR-8301 - Votes: 0 - Animation preview does not play animations after end of loop - Doris Haller
  • VWR-7846 - Votes: 0 - English Client cannot send IM's, Notecards, teleports etc to a french client - dania daviau
  • SVC-2611 - Votes: 0 - Group invitation failed and spam mail of group invitation. - Naonao Watanabe
  • VWR-8264 - Votes: 1 - There is no way to specify a default download directory for snapshots and upload directory for textures. - Hal Klaxon
  • VWR-6740 - Votes: 2 - SpaceNavigator input cross-talk to other apps - Whichway Janus
  • VWR-6970 - Votes: 0 - Crash on Advanced > Character > Display Agent Target - Day Oh
  • SVC-1684 - Votes: 0 - Build rezzers experiencing problems on havok4 servers only. - cal corleone
  • VWR-7157 - Votes: 0 - llDetectedGrab() returns bad results for certain viewer window sizes - Lex Neva
  • VWR-7727 - Votes: 0 - Access Tab in About Land bug - marineforces123 Korobase
  • VWR-7011 - Votes: 0 - Camera locks into top of head view - WarKirby Magojiro
  • VWR-7548 - Votes: 1 - Notecard is ""locked"" when attempting to save it fails, and the ""save"" button remains disabled. - Argent Stonecutter
  • SVC-1847 - Votes: 0 - llStringLength won't diferentiate between single and multiple byte characters, while the cap for chat will - TigroSpottystripes Katsu
  • SVC-1685 - Votes: 0 - Teens unable to use the beta grid. - Liny Odell
  • VWR-7416 - Votes: 0 - Display wobbles at altitudes higher than 650m - Vinco DeCuir
  • SVC-996 - Votes: 0 - Five minute wait due to ""System Logging You Out"" happens everytime when wearing scripted HUD - Chase Marellan
  • SVC-250 - Votes: 5 - llHTTPRequest does not deliver results on URLs connecting to non standard ports - BlckCobra Shikami
  • WEB-600 - Votes: 0 - When event fails to submit and needs corrections, Location select box does not remember initial choice - Blue Revolution
  • VWR-5773 - Votes: 0 - When Basic Shaders is selected in Graphics settings, it causes a fog bar along the right side of the screen also visible in photos. In viewer 1.19.1 - cherie parker
  • VWR-5090 - Votes: 0 - Landing on a Mega Prim in Havok 4 fails and causes the avvie to float as if in Zero Gravity - Corsi Mousehold
  • VWR-7769 - Votes: 0 - Exit out of Mouselook, shattered the viewer into broken pieces, like a shattered mirror - Marc Montague
  • VWR-2964 - Votes: 3 - Land terrain textures displayed inconsistently with current release (1.18.3.5) - Jonas Ingrassia
  • MISC-1394 - Votes: 0 - Group Invite not being received in world, but received later as offline email - Mynx Carroll

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