Bug triage/2010-06-14

From Second Life Wiki
Jump to navigation Jump to search

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

  • SVC-5902 - Votes: 4 - Client gives up before finishing to load full inventory due to packet loss - TigroSpottystripes Katsu - Last Triaged: 5/25/2010 2:30 AM
  • WEB-277 - Votes: 4 - when I click to enter a new event I am getting a 404 Server error - amythyst Beaumont
  • SVC-1500 - Votes: 3 - llSetLinkTexture fails and reports an error on textures created by someone else without full permissions - Joorin Knoller
  • VWR-4018 - Votes: 3 - Texture animations ignore repeats per face (llTextureAnim()) - Haravikk Mistral
  • WEB-1368 - Votes: 3 - XStreetSL frontpage doesn't dispaly New Land Listings correctly - Margot LaSalle
  • WEB-1425 - Votes: 3 - If you uncheck the "Friend can see you when your online" checkbox in your friends list, then your friend can no longer see your name at all (even greyed out) in the "Friends Online" website. - Stardust Melody
  • WEB-1446 - Votes: 3 - Make Google search in the Wiki use https protocol instead of http to avoid assumed logout after search - Zai Lynch
  • WEB-1529 - Votes: 3 - Prefix added to the description block in inworld search - Shug Maitland
  • VWR-11862 - Votes: 2 - Mod ok texture products need full permission to use. - EJ Hirano
  • SVC-1797 - Votes: 2 - On sim border crossing, seated avatar pos/rot changs made with llSetLinkPrimitiveParams are reverted - Fake Fitzgerald - Last Triaged: 6/8/2010 10:40 AM
  • SVC-4241 - Votes: 2 - physical objects become non-physical, possibly when crossing parcel lines - wyvern dryke
  • SVC-425 - Votes: 2 - Physical script calls from non-root prims of attachments do not effect the avatar. - Argent Stonecutter
  • SVC-4348 - Votes: 2 - Zeroing Prim Rotation via llSetRot Has No Effect After llTargetOmega - Cyd Woolley
  • SVC-4862 - Votes: 2 - llGetPermissionsKey() doesn't return NULL_KEY when permissions are declined - Moon Metty
  • SVC-4873 - Votes: 2 - touch() events get "stuck" and continuously execute - Stickman Ingmann
  • SVC-5043 - Votes: 2 - llTakeControls(0, TRUE, TRUE); triggers unexpected error msg - TigroSpottystripes Katsu
  • SVC-5064 - Votes: 2 - Server group IM listener restarts without notifying clients - Morgaine Dinova
  • SVC-5145 - Votes: 2 - llSensor detection is inconsistent for seated avatars - Cerise Sorbet
  • SVC-5263 - Votes: 2 - Object which is not owned by parcel owner returns unexpectedly when the parcel is full. - Fake Fitzgerald
  • SVC-5291 - Votes: 2 - (vector / rotation) and (rotation / rotation) ambiguity in how the magnitude should be handled - Strife Onizuka
  • VWR-11943 - Votes: 2 - Reference Mode Alignment Mis-Match For Path Cut Objects - Cinco Pizzicato
  • VWR-12582 - Votes: 2 - 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-13018 - Votes: 2 - Nvidia GeForce G 105M unrecognized by SL viewer - aaron23 decuir
  • VWR-13369 - Votes: 2 - Small and zoomed objects (prims) flickering - Kontor Jenkins - Last Triaged: 6/11/2009 2:30 AM
  • VWR-13591 - Votes: 2 - Sun and moon lighting passes through certain avatar parts, noted on nose and ears. Highlights appear on dark side of face and shadows appear on light side of face. Highlighs also appear inside nose. - Lisa Fossett
  • VWR-14161 - Votes: 2 - Prim hair now appears with halo around semi transparent strands when using 1.23 viewer - Geo Fulton
  • VWR-14537 - Votes: 2 - llDialog user button with text "Ignore" is treated like client "Ignore" button and is dropped when clicked. - Strife Onizuka
  • VWR-14634 - Votes: 2 - Non-newline whitespace collapsed in local chat - Rex Cronon

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