Bug triage/2008-03-10

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-03-10 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)

  • SVC-1806 - Votes: 0 - Terrain on Estate moves on it's own, Terraform not working properly. - Meghan Dench
    • Imported

Hot by Vote

High Voted Bugs

  • SVC-1453 - Votes: 11 - Inter-sim llEmail messages appear to be failing silently - Furia Freeloader
    • Imported for internal discussion
  • VWR-4580 - Votes: 12 - Property lines are visible through avatar, objects and through ground. - zeebster colasanti
    • Imported
  • VWR-5372 - Votes: 41 - Specific Search (People, Places, etc) queries are modified and words less then 3 characters are removed. - Harleen Gretzky
    • Already imported, Soft to create additional bug to document [FINAL SEARCH] error
    • See, VWR-5517
  • VWR-1998 - Votes: 13 - Friends list empty after ""clear cache"" log-on - Kitty Barnett
    • Closed as dupe of VWR-4570
  • SVC-1721 - Votes: 11 - Havok4 Beta: Avatar not in falling mode after walking off edge of platform - Kayla Stonecutter
    • Imported, assigned to Sidewinder Linden
  • WEB-511 - Votes: 22 - ""Friends' Page incorrectly reporting avatars online - Cruiser Gilman
    • Already imported
  • VWR-1241 - Votes: 11 - IM's not going to people who are ONLINE. Being sent to Email. - jefferey Heart
    • Imported
  • VWR-5399 - Votes: 53 - Search functionality different on mainland vs private island - Felix Oxide
    • Already imported/linked

Patches

Patches

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-03-10/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.