Difference between revisions of "Bug triage/2009-09-09"

From Second Life Wiki
Jump to navigation Jump to search
Line 9: Line 9:
</onlyinclude>
</onlyinclude>
<br>
<br>
<span style="color:#AA0000"> &nbsp; '''Please Note''': No Public Bug Triage on Wednesday September 16th &nbsp;</span>


Next meeting: {{#var:date}} at {{#var:time}} at {{#var:place}}.  See [[Bug triage]] for details.
Next meeting: {{#var:date}} at {{#var:time}} at {{#var:place}}.  See [[Bug triage]] for details.

Revision as of 11:11, 16 September 2009




  Please Note: No Public Bug Triage on Wednesday September 16th  

Next meeting: 2009-09-09 at 2:00 PM SLT at Bambers' Office at Denby. 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-34 - Votes: 122 - Right-clicking another Resident's moving object freezes it - Huns Valen

    • Already Imported

Misc Pool

Misc Pool


PJIRA Query To Wiki Markup Converter

  • SVC-4805 - 0 votes - Dividing by zero does not produce a script error in mono - Lex Neva
    • Expected Behavior
  • SVC-4803 - 0 votes - During building, object returns to last position by itself. - Cezare Blanco
    • Expected Behavior
  • WEB-1295 - 56 votes - Age verification page doesn't allow for 31 days in a month - Pips Fetid
    • Imported
  • SVC-4794 - 0 votes - It is possible for a non-age-verified user to cam into an Adult sim from an adjacent non-Adult location - Kimbeau Surveryor
    • Expected Behavior
  • WEB-1294 - 0 votes - Error in website text: "Manage your $L" - BlckCobra Shikami
    • Imported
  • WEB-1293 - 0 votes - Redirect Loop in SecondLife .com web login - Else Nexen
    • Imported
  • VWR-15379 - 0 votes - Atmospheric shaders make the sun explode - Kaluura Boa
    • Expected Behavior
  • SVC-4784 - 0 votes - uploading single textures brings two copies to inventory and two charges on account - Liliana Bethune
    • Can't Reproduce
  • SVC-4783 - 1 votes - llListen no longer delivers empty messages - Vex Streeter
    • Can't Reproduce
  • WEB-1292 - 15 votes - Age Verification Date of Birth only supports 30 days instead of 31 days - Duckie Dickins
    • Resolved - Duplicate
  • SVC-4781 - 0 votes - Search for names in a group does not work properly - searching for first name does not work, while searching for last name brings up a result - Vanity Bonetto
    • Expected Behavior
  • VWR-15366 - 0 votes - have a few small patches on my sim where the land is defaulted and wont change in texture. - Draelle Chandler
    • Resolved - Duplicate
  • VWR-15385 - 0 votes - Grey Goo fence is too strong for objects on their owner's land - Dale Innis
    • Moved to SVC and Feature Request
  • VWR-15347 - 0 votes - Ground texture does not blend smoothly. - Squirrel Wood
    • Last Triaged date added
  • VWR-15310 - 0 votes - Advanced->XUI->Save to XML doesn't set proper XML tags - Admiral Admiral
    • Last Triaged date added
  • VWR-15308 - 0 votes - Audiodg.exe cpu usage spikes when in Second LIfe - Jen Noel
    • Resolved - Needs more info
  • SVC-4757 - 0 votes - Linden God Mode Breaks Objects Owned by Lindens - darling brody
    • Expected Behavior
  • VWR-15301 - 0 votes - Login screen unable to display at 2560x1600 resolution - Norman Tisch
    • Imported
  • WEB-1275 - 1 votes - Teen Grid events page no longer shows Teen Grid events - Katharine Berry
    • Imported
  • SVC-4751 - 0 votes - Door rotation Presets no longer work when transfered from one sim to another - bella bertone
    • Resolved - Needs more info
  • MISC-3270 - 1 votes - Enceladus: Missing waterfall parts - Marianne McCann
    • Imported
  • VWR-15249 - 0 votes - Wacom mouse does not work with grabbing items and view control - Daphne Steamweaver
    • Last Triaged date added
  • VWR-15246 - 0 votes - LSL Compiler Tooltip Typo - Cypher Ragu
    • Imported
  • VWR-15240 - 0 votes - don't read any script message in channel 0 - Samira Tammas
    • Resolved - Needs more info

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

  • VWR-15363 - 0 votes - after updating my netgear modem firmware i cannot load inventory and therefore cant use SL - Khriss Lanley
    • Contact Support
  • VWR-15442 - 0 votes - At random the second life windows displays video noise that may result in a blue screen in windows. - Bohemio Vantelli
    • Contact Support

Transcript

Transcript is/will be at Bug triage/2009-09-09/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.