Difference between revisions of "Bug triage/2008-02-13"

From Second Life Wiki
Jump to navigation Jump to search
(+rc issues)
Line 6: Line 6:


(Move bugs here that have solid repros, or valid patches that you have reviewed)
(Move bugs here that have solid repros, or valid patches that you have reviewed)
== RC Issues ==
* {{jira|VWR-4570}} - 17 votes - Friends list is not loading, Stuck on (Waiting) - [[User:Rascal Ratelle|Rascal Ratelle]]
* {{jira|VWR-4338}} - 0 votes - Login > Not Responding, White Screen, Crashing, Unable to Connect to Login Server. - [[User:Meghan Dench|Meghan Dench]]
* {{jira|VWR-4759}} - 1 votes - Prismatic rainbow color cycling on primitives - [[User:Millie Thompson|Millie Thompson]]
* {{jira|VWR-4520}} - 1 votes - Viewer not displaying any images when SL starts - using 8600 GTS graphics card - [[User:Erdrick Balbozar|Erdrick Balbozar]]
* {{jira|VWR-2518}} - 4 votes - Performance degrades quickly in release candidate viewers - [[User:Synack Fitzgerald|Synack Fitzgerald]]
* {{jira|VWR-4178}} - 0 votes - Calling Cards + new Friendship Online Notification = slowdown on login + disconnect - [[User:Thomas Shikami|Thomas Shikami]]
* {{jira|VWR-4771}} - 0 votes - Voice Output Randomly to static  - [[User:mazzy fastback|mazzy fastback]]
* {{jira|VWR-4585}} - 0 votes - ALSA lib pcm.c:2106:(snd_pcm_open_conf) Cannot open shared library /usr/lib/alsa-lib/libasound_module_pcm_pulse.so - [[User:marceledward edman|marceledward edman]]
* {{jira|VWR-4384}} - 0 votes - Viewer Crashes As "Connecting to Region..." - [[User:Meghan Dench|Meghan Dench]]
* {{jira|VWR-4758}} - 0 votes - Friends cant enter an Friends Voice Call (also Group-Voice Chat) - [[User:Behemoth Greenwood|Behemoth Greenwood]]
* {{jira|VWR-4598}} - 2 votes - Second time teleporting I crash since the 1.19.0 update - [[User:Adelia Menges|Adelia Menges]]
* {{jira|VWR-4851}} - 1 votes - Periodic viewer lock-ups - [[User:VeC Merlin|VeC Merlin]]
* {{jira|VWR-4295}} - 3 votes - QuickTime warning is displayed and video is not enabled even though latest QT is installed - [[User:Emma Nowhere|Emma Nowhere]]
* {{jira|VWR-4556}} - 3 votes - 1.19.0: Ban lines around limited-access parcels are no longer visible - [[User:Sindy Tsure|Sindy Tsure]]
* {{jira|VWR-4048}} - 9 votes - Avatar Vertex program and Rippled Water are not available on released Nvidia 169.21 driver - [[User:Sascha Vandyke|Sascha Vandyke]]
* {{jira|VWR-4644}} - 7 votes - Group chat error when chat is initialized by someone else in the group - [[User:Aradia Dielli|Aradia Dielli]]
* {{jira|VWR-4780}} - 0 votes - Voice not working - [[User:Janise Dreamscape|Janise Dreamscape]]
* {{jira|VWR-4735}} - 1 votes - Chat error when RECEIVING Group IM - [[User:Sunn Thunders|Sunn Thunders]]
* {{jira|VWR-4694}} - 0 votes - Popup buttons do not come and like when I get an IM or the stand up on certain items that normally give out a stand up botton. - [[User:Sam Reinard|Sam Reinard]]
* {{jira|VWR-4621}} - 3 votes - Friends list and Groups list unresponsive to mouse clicks - [[User:Barney Boomslang|Barney Boomslang]]


== Hot by Vote ==
== Hot by Vote ==

Revision as of 16:09, 13 February 2008


Next meeting: 2008-02-04 at 3pm PST at Bridie Linden's house.

Fast Track Import

(Move bugs here that have solid repros, or valid patches that you have reviewed)

RC Issues


Hot by Vote

  • VWR-4570 - Votes: 17 - Friends list is not loading, Stuck on (Waiting) - Rascal Ratelle
  • WEB-493 - Votes: 14 - Novice users can create issues on JIRA - Avil Creeggan
  • VWR-2123 - Votes: 12 - Parcel name shown in menu bar does not match actual parcel information - Neo Rebus
  • VWR-4741 - Votes: 11 - llGiveInventoryList only delivers to agents that have been in the same sim with the script at some point in the past. - Brandon Shinobu

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-02-13/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.