Difference between revisions of "Bug triage/2007-08-06"

From Second Life Wiki
Jump to navigation Jump to search
(Added mondo misc list, sorted by priority)
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)
* {{jira|VWR-315}} - Votes: 14 - Script text loading twice - {{User|Rita Cummings}}
:Already imported, but BLT has revealed a new solid repro.  Please update PJIRA [[User:Gigs Taggart|Gigs Taggart]]


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


* {{jira|WEB-257}} - Votes: 51 - Grid-Login and www.secondlife.com fails: DNS not resoved after  ae-4-4.car2.SanFrancisco1.Level3.net - {{User|Jim Gustafson}}
:next bug possible duplicate? [[User:Gigs Taggart|Gigs Taggart]]
* {{jira|MISC-502}} - Votes: 3 - Unable to connect to Second Life. DNS could not resolve the host name. - {{User|Michele Martynov}}
* {{jira|VWR-718}} - Votes: 10 - Particles -> Slows to a trickle over time -> as of 1.15.x - {{User|Winter Ventura}}
* {{jira|MISC-501}} - Votes: 10 - Crashing during logging in - {{User|Annemie Lilliehook}}


== Patches ==
== Patches ==
* {{jira|VWR-749}} - Votes: 3 - Bandwidth indicator: Kbps, should not have capital k - {{User|Daedalus Young}}
* {{jira|VWR-2003}} - Votes: 1 - Possible crash in lltooldraganddrop.cpp - {{User|Nicholaz Beresford}}
* {{jira|VWR-1990}} - Votes: 0 - Possible (theoretical) crash in llfloater.cpp  - {{User|Nicholaz Beresford}}
* {{jira|VWR-1976}} - Votes: 0 - Solaris' fprintf segfaults on NULL arguments - {{User|Renault Clio}}
* {{jira|VWR-1968}} - Votes: 0 - Possible crash in llmultigesture.cpp - {{User|Nicholaz Beresford}}
== "Showstoppers" ==
* {{jira|WEB-234}} - Votes: 0 - SVG images: XML Parsing Error: no element found - {{User|SignpostMarv Martin}}
* {{jira|WEB-185}} - Votes: 1 - HTML in support link - {{User|SignpostMarv Martin}}
* {{jira|WEB-131}} - Votes: 5 - jira.secondlife.com is overloaded - {{User|Lex Neva}}
* {{jira|VWR-2019}} - Votes: 0 - Teleporting to many regions causes log out [since Friday July 24] - {{User|Lunarlie Anzac}}
* {{jira|VWR-2005}} - Votes: 0 - Unable to connect to SecondLife---DNS could not resolve host name, but i can see website fine. - {{User|goose bechir}}
* {{jira|VWR-1977}} - Votes: 0 - Vivox Daemon Restart Loop - {{User|otakup0pe neumann}}
* {{jira|VWR-1921}} - Votes: 9 - No Login possible after crash / crash report - {{User|kruemmelmonster bury}}
* {{jira|VWR-1665}} - Votes: 0 - System hang on Connect - {{User|Alphons Jano}}
* {{jira|VWR-1532}} - Votes: 5 - Voice Functionality Doesn't Work on Mac OS X - {{User|Taran Asbrink}}
* {{jira|VWR-1208}} - Votes: 8 - Mac Voice Client borked - {{User|Saijanai Kuhn}}
* {{jira|VWR-1016}} - Votes: 3 - WindLight not usable due performance issue - WinXP  - ATI MOBILITY RADEON  - {{User|Ralf Haifisch}}
* {{jira|SVC-416}} - Votes: 1 - Unable to teleport ouside of island - {{User|Fingus Flanagan}}
* {{jira|SVC-364}} - Votes: 7 - Downloaded and installed 1.17.1. Now can not log into SL. "Unable to connect to SL. DNS could not resolve the hostname. "  - {{User|Chris Eggplant}}
* {{jira|MISC-517}} - Votes: 0 - It will not me log in, it says a unknown error has occurred, and if it doesnt say that it says go to the website. - {{User|Chappelle Woller}}


== Misc Pool ==
== Misc Pool ==

Revision as of 12:33, 4 August 2007


Next meeting: 2007-08-06. Host: Rob Linden See Bug triage for details.

Fast Track Import

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

Already imported, but BLT has revealed a new solid repro. Please update PJIRA Gigs Taggart


Hot by Vote

  • WEB-257 - Votes: 51 - Grid-Login and www.secondlife.com fails: DNS not resoved after ae-4-4.car2.SanFrancisco1.Level3.net - Jim Gustafson
next bug possible duplicate? Gigs Taggart

Patches


"Showstoppers"

Misc Pool

Sorted by priority. This probably isn't immediately useful, but we should figure out why it isn't, and figure out a community solution for making this a useful sort order.


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

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.