Bug triage/2010-06-28

From Second Life Wiki
Jump to navigation Jump to search

Next meeting: 2010-06-28 at 12:00 PM (noon) PDT 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

Misc Pool

Misc Pool

  • WEB-2098 - Votes: 8 - SL Marketplace: Wishlists -- adult items cannot be added to a user's Wishlist(s) - Rachel Darling
  • WEB-2046 - Votes: 6 - in viewer 2 search teleport button on region link tps people to 50, 50, 50 coordinates instead to 128, 128, 0 - Atine Anatine


  • WEB-2069 - Votes: 4 - Popup blocker blocking the "Purchase as Gift" dialog causes you to buy the item for yourself. - Amara Farspire
  • WEB-2066 - Votes: 4 - Customers who have bought my product or have recieved it as gifts via xstreet cannot use the buyer review rating system. They can leave Item discussion posts, but cannot rate. - Maeve Indigo
  • SVC-5890 - Votes: 4 - 'Return non-group objects' ability allows group members to change autoreturn time on group-owned land - Inner Scribe
  • WEB-1998 - Votes: 3 - Viewer2.0 Search Events Live Music - only 6 or 7 events showing, when there are actually 40 events listed in old viewer. Cannot see listings. - Lacey Lohner


  • SVC-1500 - Votes: 3 - llSetLinkTexture fails and reports an error on textures created by someone else without full permissions - Joorin Knoller
  • SVC-1797 - Votes: 3 - On sim border crossing, seated avatar pos/rot changs made with llSetLinkPrimitiveParams are reverted - Fake Fitzgerald
  • VWR-12582 - Votes: 3 - GLOW - Whan snapping a pic to the hard drive, any glow in the pic will show up a meter away from the prim the glow was applied to. - Dj Barracuda
  • VWR-19151 - Votes: 3 - Setting afk-timeout to "never" in viewer 2 sets timeout in 1.23 to zero seconds - Moon Metty

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/2010-06-28/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.