Bug triage/2008-04-14

From Second Life Wiki
Jump to navigation Jump to search


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

  • VWR-6244 - Votes: 14 - Building outlines gets dissorted/out of position when moving the camera on v1.20 - byakuya runo
    • Imported - Assigned to Steve Linden
  • VWR-6301 - Votes: 54 - Pulsating/glowing/fading outlines when building. Is this absolutely neccessary?? HELL when building for hours in RC 1.20!!! - Michi Lumin
    • Imported - Assigned to Pastrami Linden
  • SVC-688 - Votes: 24 - Scripted email failing from certain objects - Escort DeFarge
    • Imported - Assigned to Matthew Linden
  • VWR-6259 - Votes: 16 - SLURL and secondlife:// links open a second SL viewer - Royanna McCallen
    • Imported - Assigned to Steve Linden
  • SVC-2093 - Votes: 21 - Community Gateway Wien has high physics load since havok 4 - newbies deployed into a laggy situation - ice stawberry
    • Imported - Assigned to Sidewinder Linden
  • VWR-6243 - Votes: 125 - Bring Back the Friends Menu in the Map Window - WarKirby Magojiro
    • Fix Pending
  • VWR-6240 - Votes: 12 - Full snapshots not complete - tucor Capalini
    • Imported - Assigned to Steve Linden
  • VWR-2909 - Votes: 13 - Users are misled into thinking texture permissions do anything. - Gigs Taggart
    • Imported - Assigned to Triage
  • SVC-1975 - Votes: 38 - Havok 4: Avatar jump height is greatly lessened - WarKirby Magojiro
    • Imported - Assigned to Aric Linden
  • SVC-2060 - Votes: 11 - Physical Objects using llMovetoTarget Break on Region Restarts - blaccard burks
    • Fix Pending

Patches

Patches

  • VWR-6430 - Votes: 0 - Comment area of ""Debug Settings"" floater (dialog box) is aligned badly - Alissa Sabre
    • Imported - Assigned to Rx
  • MISC-431 - Votes: 19 - LSL multiline comments - Elwe Ewing
    • Imported - Assigned to Babbage Linden
  • VWR-6482 - Votes: 1 - Joystick Support: Motion restricted to dominant axis in avatar mode - Aimee Trescothick
    • Imported - Assigned to Triage
  • VWR-6354 - Votes: 1 - Joystick Support: Pressing the jump button interrupts other motion. - Aimee Trescothick
    • Imported - Assigned to Triage

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