Bug triage/2008-07-14

From Second Life Wiki
< Bug triage
Revision as of 12:10, 15 July 2008 by Alexa Linden (talk | contribs) (→‎Misc Pool)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


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

  • SVC-2604 - Votes: 35 - llRequestSimulatorData() no longer works reliably - Kalel Venkman
    • Imported - Assigned to Triage
  • VWR-1402 - Votes: 11 - Avatar eye's turn Black - lucian overlord
    • Resolved - Needs more info
  • VWR-1740 - Votes: 14 - Progressive increase in SL viewer memory footprint / decrease in performance when TPing between busy areas - Dael Ra
    • Requested additional details

Patches

Patches

Misc Pool

Misc Pool

  • VWR-8105 - Votes: 0 - Sound volume too low - Mircea Lobo
    • Won't Fix
  • VWR-8094 - Votes: 0 - Ability to Mute Lindens through active speakers List - kirstenlee Cinquetti
    • Resolved - Needs more info
  • VWR-6181 - Votes: 1 - Physical movements problems since last patch - liane Lisle
    • Resolved - Needs more info
  • VWR-7879 - Votes: 0 - Could not teleport .....no valid parcel could be found - kaci soyer
    • Contact Support
  • VWR-7795 - Votes: 0 - world is invisible - Davie Mougin
    • Resolved - Needs more info
  • WEB-267 - Votes: 0 - Email from Support points to bad URL - Sindy Tsure
    • Imported - Assigned to Web
  • VWR-7520 - Votes: 0 - Spacenavigator apears to be triggering actions that are captured as double taps on arrow keys - Flynt Jefferson
    • Resolved - Needs more info
  • SVC-721 - Votes: 1 - Havok4 Collision Solver occasionally tosses an avatar when crossing a border over prim - Teravus Ousley
    • Resolved - Dup of VWR-1667
  • VWR-7434 - Votes: 0 - Crash in repetitive multiple users - Delaier Saenz
        • Resolved - Needs more info
  • VWR-7360 - Votes: 0 - Login failed - bigjr Slade
    • Resolved - Needs more info
  • VWR-6946 - Votes: 0 - Particles do not dissappear when UI rendering off - Christopher Omega
    • Resolved - Dup of VWR-4232
  • WEB-667 - Votes: 0 - Premium account required to even watchlist a parcel on the land auction site - Gordon Wendt
    • Imported - Assigned to Web
  • VWR-7358 - Votes: 0 - http link open with a error msg the firefox - bigjr Slade
    • Suggested trying latest RC and to get back to us

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