Bug triage/2008-04-21

From Second Life Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


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

  • SVC-578 - Votes: 13 - ""save object back to object contents"" no longer works - Lex Neva
    • Imported - Assigned to Triage
  • VWR-6656 - Votes: 16 - Anti Aliasing option broken - Hevenz Vansant
    • Imported - Assigned to Pastrami Linden
  • VWR-1415 - Votes: 11 - avatar falls through prim floors when crossing sim borders - AmigaDragon Greatrex
    • Imported - Assigned to Sidewinder Linden
  • VWR-6389 - Votes: 20 - SmartHeap Library error msgs immediately after log-in or on exit--viewer sometimes disappears from Windows, without error msg, immediately after log-in - MB Chevalier
    • Already imported
  • VWR-6651 - Votes: 63 - Object shout of ""Not permitted to edit this!"" is being used for harassment/grief. - Tengu Yamabushi
    • Imported - Assigned to Aric Linden
  • VWR-4027 - Votes: 13 - Animation preview only moves eyeballs - Doris Haller
    • Imported - Assigned to Aric Linden
  • VWR-6730 - Votes: 5 - Offer to mute a resident if resident or resident's objects are chatting too quickly - Soft Linden
    • Imported - Assigned to Rx
  • VWR-6728 - Votes: 12 - Add a ""Report Spam"" or ""Report Abuse"" button to the IM window - Soft Linden
    • Imported - Assigned to Rx

Patches

Patches

  • VWR-6668 - Votes: 0 - Inappropriate help text for graphics preferences panel - Alissa Sabre
    • Imported - Assigned to Ramzi Linden
  • VWR-6573 - Votes: 1 - secondlife shell script wrapper should use 'uname -m' instead of 'arch' - Vex Streeter
    • Imported - Assigned to Cube Linden
  • VWR-6718 - Votes: 0 - New ""no script"" icon - McCabe Maxsted
    • Imported - Assigned to Rx
  • VWR-6348 - Votes: 2 - Joystick: Make switch from avatar movement to object manipulation in build mode optional. - Aimee Trescothick
    • Imported - Assigned to Rx
  • VWR-6583 - Votes: 2 - Turn joystick build mode off by default - Aimee Trescothick
    • Imported - Assigned to Rx
  • VWR-6550 - Votes: 5 - Joystick Support: Add running to the range of motion available - Aimee Trescothick
    • Imported - Assigned to Rx
  • VWR-6540 - Votes: 0 - Add options to selectively render attached lights and attached particle sources - able whitman
    • Imported - Assigned to Rx
  • VWR-6360 - Votes: 2 - Joystick Support: Partially obeys the Auto Fly option - Aimee Trescothick
    • Imported - Assigned to Rx
  • VWR-6571 - Votes: 0 - Add ""touch"" option to attachment pie menu - XML patch attached - Elle Pollack
    • Imported - Assigned to Aric Linden

Misc Pool

Misc Pool

  • MISC-1124 - Votes: 2 - receiving multiple Off-line IM's from Ai Hienrichs that were not sent by her. - SterlingZen Harbour
    • Imported - Assigned to Aric Linden
  • VWR-6591 - Votes: 1 - Crashes in specific sim - Shadow Pidgeon
    • Imported - Assigned to Aric Linden
  • VWR-2610 - Votes: 5 - When I try to start up Second life, it gets onto the login screen but the login boxes and the big background image don't actually appear. It's just a black. And then it crashes and asks me to send a crash report. - Madagan Flanagan
    • Imported - Linked to pre-existing internal issue - DEV-13980

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