Difference between revisions of "Bug triage/2010-05-24"

From Second Life Wiki
Jump to navigation Jump to search
m (moved Bug triage/2010-05-10 to Bug triage/2010-05-17: No triage May 10, will need to redo listing)
m (update date)
Line 3: Line 3:
<onlyinclude>
<onlyinclude>
{{Triage Template/schedule
{{Triage Template/schedule
|Date=2010-05-10
|Date=2010-05-17
|Time=12:00 NOON PDT
|Time=12:00 PM (noon) PDT
|Place=[http://slurl.com/secondlife/Hippotropolis/241/32/23 Hippotropolis Meeting area].
|Place=[http://slurl.com/secondlife/Hippotropolis/241/32/23 Hippotropolis Meeting area].
|}}
|}}

Revision as of 12:07, 10 May 2010



Next meeting: 2010-05-17 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

  • VWR-11250 - Votes: 6 - Tooltip no longer closes when typing - imnotgoing sideways
    • VWR-14758 might be a duplicate of this one and has a patch attached.
  • SVC-194 - Votes: 5 - Slow physics objects prematurely settling. - Elbereth Witte
  • VWR-14621 - Votes: 5 - Setting PrecachingDelay to 0.0 disables basic shaders - Gregory Maurer
  • SVC-5713 - Votes: 4 - ParcelAccessListReply packets have no reliable end of list indication, leading to possible data loss - Dale Glass
  • VWR-2429 - Votes: 4 - Wind sound is audible under water - Lex Neva
  • SVC-4812 - Votes: 3 - Top scripts count object double when sitting on it resulting in double counting of total script time for the sim - Zuleika Deere
  • SVC-4870 - Votes: 3 - llSetSitText() does not apply for child prims, only the main prims sit text gets displayed - Akito Tsuki
  • SVC-4871 - Votes: 3 - Script unable to llRequestURL() after crossing sim border - Ochi Wolfe
  • SVC-5504 - Votes: 3 - Avatar Scripts are counting on the land even when scripts in about land are disabled - Holger Gilruth
  • SVC-787 - Votes: 3 - llGetAgentInfo Returns AGENT_TYPING ONLY when Debug Setting playTypingAnim == TRUE - Ephemeral Rainbow
  • SVC-858 - Votes: 3 - llGetPrimitiveParams([PRIM_POINT_LIGHT]) on switched off light returns wrong parameters - Homer Horwitz
  • VWR-10639 - Votes: 3 - ALT-zoom on nametag focusses camera between avatar and original camera-position - Moon Metty - Last Triaged: 12/17/2008 2:09 PM
  • VWR-12597 - Votes: 3 - Camera Focus on ground - Camera skips and hops - Squirrel Wood
  • VWR-14096 - Votes: 3 - Group Chat sessions are being generated including OFFLINE avatars - Cummere Mayo
  • VWR-14454 - Votes: 3 - All Windows Lose Background - Garn Conover
  • VWR-15563 - Votes: 3 - Client gives up before finishing to load full inventory due to packet loss - TigroSpottystripes Katsu - Last Triaged: 9/24/2009 2:30 AM
  • VWR-3259 - Votes: 3 - Prim Alignment .0005m off upon linking and touching objects - yoshi charron
  • VWR-3361 - Votes: 3 - "Agent Updates/sec" statistic is incorrect - Lex Neva
  • VWR-4018 - Votes: 3 - Texture animations ignore repeats per face (llTextureAnim()) - Haravikk Mistral
  • VWR-4120 - Votes: 3 - When dragging item from notecard to inventory, it's put into Landmarks / Objects / Notecards / etc., instead of where it's dragged - Domchi Underwood
  • VWR-4320 - Votes: 3 - ao animations become default - gogo Wise
  • VWR-4325 - Votes: 3 - Unable to apply no-copy texture to prim from UI texture picker, but able to via script - Ashrilyn Hayashida
  • VWR-5280 - Votes: 3 - Shortcuts for moving camera and moving objects are way to similar - machiko akina
  • VWR-7972 - Votes: 3 - Grid Extents not completely visible - BETLOG Hax
  • VWR-8170 - Votes: 3 - Individual voice volume settings per avatar do not save and randomly reset - Solar Legion
  • 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
    • Why can't one vote on this one although it was reopened? Seems not to repro at the moment (one gets redirected to https, thus login is recognized), but will it stay that way?

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-05-17/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.