Bug triage/2008-07-07

From Second Life Wiki
Jump to navigation Jump to search


Next meeting: 2008-07-07 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-2358 - Votes: 15 - Mac Client Freezes or just won't respond for a while every 10 minutes or less. - Twister Offcourse
    • Resolved as Duplicate of VWR-1749
  • SVC-2604 - Votes: 21 - llRequestSimulatorData() no longer works reliably - Kalel Venkman
    • Waiting for sample script

Patches

Patches

  • VWR-8008 - Votes: 3 - Drop-down to select preset aspect ratios in texture preview floaters - Aimee Trescothick
    • Imported - Assigned to Rx
  • VWR-8080 - Votes: 1 - Improved attachment pie menu for prim-based avatars - McCabe Maxsted
    • Imported - Assigned to Rx
  • VWR-4065 - Votes: 0 - Clarify non ability to hide owner role from group members list - Gordon Wendt
    • Imported - Assigned to Rx
  • VWR-8064 - Votes: 1 - Cleanup other viewer menu xml files - McCabe Maxsted
    • Imported - Assigned to Rx
  • VWR-8024 - Votes: 0 - simplify group invites: invite to group from groups list - McCabe Maxsted
    • Imported - Assigned to Rx
  • VWR-8056 - Votes: 2 - PATCH: Clean up menu_viewer.xml (main menu XUI) - Jacek Antonelli
    • Imported - Assigned to Rx
  • VWR-7362 - Votes: 1 - Add LSL constant EMPTY_KEY as (key)"""" please - meade paravane
    • Leaving as nice to have.

Misc Pool

Misc Pool

  • VWR-8028 - Votes: 1 - Cannot alt-arrow between Recent Items and All Items tabs in the inventory - McCabe Maxsted
    • Imported - Assigned to Rx
  • VWR-8013 - Votes: 0 - Minimap causes regular spikes in frame time when open. - Zwagoth Klaar
    • Imported - Assigned to Triage
  • VWR-2496 - Votes: 2 - Linking 255 or 256 prims results in two linksets - Ochi Wolfe
    • Imported - Assigned to Rx
  • VWR-7743 - Votes: 0 - About Land / General tab, confusing on Deed area - Trinity Coulter
    • Imported - Assigned to Rx
  • VWR-7592 - Votes: 1 - Using SpaceNavigator, using flycam mode, editing object, closing edit window causes camera to fly off into the distance. - icktoofay Kamachi
    • Imported - Assigned to Triage

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