Bug triage/2008-02-25

From Second Life Wiki
< Bug triage
Revision as of 16:28, 24 February 2008 by Gigs Taggart (talk | contribs)
Jump to navigation Jump to search


Next meeting: 2008-02-25 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-4790 - Votes: 0 - TP freezes Viewer must Log out and relog Avatar freezes inworld on Relog forcing second Relog - sweet valentine
  • VWR-4509 - Votes: 0 - ""Failed to find body part named ... in database."" - szia shilova
  • MISC-922 - Votes: 0 - Losing friends intermittantly of my list - Meaghan Winthorpe
  • SVC-1341 - Votes: 0 - Mono beta: Large empty loops cause sim to stall. - davie zinner
  • VWR-4893 - Votes: 3 - Latest windlight release causes crashing with NVidia GeForce Go 6400 graphics card even on basic settings. - Fledhyris Proudhon
  • VWR-2606 - Votes: 0 - Appearance mode produces all black avatar texture and messed up preview windows - Seifert Surface
  • WEB-330 - Votes: 0 - Second Life FAQ: ""Is Second Life an MMORPG"" has incorrect response. - SignpostMarv Martin
  • VWR-5019 - Votes: 0 - Programme crashes whenever I am trying to edit my avatar's appearance - Caribkat Jaxxon
  • VWR-4989 - Votes: 1 - See only blue screen - annika7 dagger
  • VWR-4987 - Votes: 0 - Contradictory script reports - eren padar
  • VWR-4515 - Votes: 0 - Friends dissappaer from list - no, the other one has NOT deleted me - Rita Munro
  • VWR-4514 - Votes: 0 - money request was stale...or, when buying a FREE item: [13:07] Buy object failed because you don't have enough L$. !?!? - luna fratica
  • SVC-1237 - Votes: 0 - WHen I log in, I get to the screen asking me to select my Avatar's gender, and then the system freezes, and becomes non-responsive if I click again, ever.... - Caribkat Jaxxon
  • VWR-4980 - Votes: 0 - When zooming or panning or even just moving in a confined space, SL windlight viewer loses all graphics. Only the frame remains - Angel Sunset
  • SVC-721 - Votes: 1 - Havok4 Collision Solver occasionally tosses an avatar when crossing a border over prim - Teravus Ousley
  • SVC-682 - Votes: 4 - Objects can enter into No-Object-Entry area. - Nock Forager
  • VWR-4516 - Votes: 0 - Atmospheric shaders go fully white/black from some angles at certain times - Haravikk Mistral
  • VWR-4107 - Votes: 0 - Change the ""background"" color for textures to transparent - Domchi Underwood
  • SVC-1467 - Votes: 8 - PERMISSION_TAKE_CONTROLS doesnt act as designed for scripts in child prims - Jason Swain
  • VWR-4914 - Votes: 0 - Starting 2rd viewer in RC2 or Windlight causes one of the viewers to crash. - Alyx Jonson
  • VWR-4500 - Votes: 3 - You should be automatically landed when entering a ""No Fly"" area - Mircea Lobo
  • VWR-4201 - Votes: 3 - Grabbing prim with llDetectedGrab(), and dragging to the left, rotates camera left. - Sam Stork
  • SVC-1570 - Votes: 0 - Camera position shifts in and out for no reason in Havoc 4 beta region - traverse janus
  • SVC-1569 - Votes: 0 - Whale Product by STARAX no longer working in Havok4 - chilly charlton

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

  • VWR-4778 - Votes: 0 - Items I have created with onward modify/copy perms become non mod if they contain an animation that is no mod. - ActingIll Igaly
Can't reproduce - Gigs

Transcript

Transcript is/will be at Bug triage/2008-02-25/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.