Difference between revisions of "Bug triage/2007-06-18"

From Second Life Wiki
Jump to navigation Jump to search
(Clearing for next week)
(draft agenda)
Line 3: Line 3:
Next [[bug triage]] - Monday, 3pm at {{SLurl|region=Grasmere|x=112|y=81|z=26|title=Rob Linden's office in Grasmere}}
Next [[bug triage]] - Monday, 3pm at {{SLurl|region=Grasmere|x=112|y=81|z=26|title=Rob Linden's office in Grasmere}}


No agenda yet.
 
* {{jira|VWR-537}} - Black/test/etc. textures appearing at random - {{User|Marianne McCann}}
* {{jira|VWR-1172}} - SLVoice.exe crash on startup -  .111 and .112  - {{User|Mosley Jewell}}
* {{jira|VWR-1171}} - Velocity interpolation causes weird physical behaviour client-side - {{User|Vernes Veranes}}
* {{jira|MISC-287}} - Objects not deleting or copying into inventory (possible inventory loss too) - {{User|Helena Lycia}}
* {{jira|VWR-1170}} - LLMuteList::loadFromFile() improperly parses the mute list returned from the service - {{User|able whitman}}
* {{jira|SVC-309}} - Mute list files returned by the service are malformed - {{User|able whitman}}
* {{jira|MISC-286}} - Have not recieved last week's stipend - {{User|Gordon Wendt}}
* {{jira|VWR-1169}} - SConstruct should use pkg-config to find libraries on Linux - {{User|Seg Baphomet}}
* {{jira|VWR-1168}} - Misplacement of attachments using llSetPos()+llSetLocalRot() - {{User|Vance Vega}}
* {{jira|VWR-1167}} - Screen Monitor goes to suspend/stand by mode,  - {{User|Maxx Mackenzie}}
* {{jira|SVC-308}} - When Trying To Connect To SL I Get "Unable To Connect To A Simulator" - {{User|Kevin Paisley}}
* {{jira|SVC-307}} - Music stream setting on parcel vanishes - {{User|Maeve Ceawlin}}
* {{jira|SVC-306}} - Inventory loss - a new variant? - {{User|Maeve Ceawlin}}
* {{jira|WEB-161}} - Javascript Error on Transactions History Page (document_load() not defined) - {{User|Slip Stringfellow}}
* {{jira|SVC-305}} - Meta-Issue: Change it back! - {{User|WarKirby Magojiro}}
* {{jira|VWR-1166}} - Cyan horizon/water peeks through alpha textures - {{User|Osprey Therian}}
* {{jira|MISC-284}} - SL freezing on rezzing items causing lockups. Item loss upon relog. Random regional crashes, item loss on relog. - {{User|Simone Sautereau}}
* {{jira|VWR-1165}} - get_cpu_clock_count() not portable on Linux. - {{User|Seg Baphomet}}
* {{jira|MISC-282}} - Home Location repeatedly reset when TP'ing from Help Island Public  - {{User|Chaos Mohr}}
* {{jira|VWR-1164}} - Profile blank via Groups...IM/Call - {{User|Benja Kepler}}
* {{jira|WEB-159}} - Contradictory info for basic accts wanting billing support - {{User|Celierra Darling}}
* {{jira|SVC-304}} - CHANGED_INVENTORY not triggered by llRemoveInventory() - {{User|Qie Niangao}}
* {{jira|SVC-303}} - rotation around local axis in negative direction fails (quaternion division) - {{User|r2d2 Wunderlich}}
* {{jira|VWR-1162}} - Search Land Sales does not clear parcels listed for sale when estate resell is disallowed after parcel is listed - {{User|Rudolph Ormsby}}
* {{jira|VWR-1161}} - alignment assumptions bad for stability - {{User|Whoops Babii}}
* {{jira|VWR-1160}} - Embedded Browser does not share Mozilla Cookies - {{User|Chance Unknown}}
* {{jira|VWR-1158}} - No Atmospheric Rendering - {{User|Pezz Zenith}}
* {{jira|VWR-1154}} - Particle glitches with PSYS_PART_FOLLOW_SRC_MASK - {{User|Helena Lycia}}
* {{jira|VWR-1153}} - Sculpted prims show before their shape is known - {{User|Mark Busch}}
* {{jira|WEB-157}} - Support System is Broken  - {{User|Chance Unknown}}
* {{jira|SVC-300}} - Spam upon TP out of Help Island Public, per calling card and landmark - {{User|meade paravane}}
* {{jira|VWR-1146}} - Closed Group Proposals NOT SHOWING in Group Voting History - {{User|Lecalat Starbrook}}
 
 
 
 
{{Bug List Instructions}}
{{Bug List Instructions}}

Revision as of 00:08, 13 June 2007


Next bug triage - Monday, 3pm at Rob Linden's office in Grasmere🖈




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.