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

From Second Life Wiki
Jump to navigation Jump to search
(Clearing for next week)
Line 1: Line 1:
{{Bug triage}}
{{Bug triage}}


Hot items:
No agenda yet.
* {{jira|MISC-204}} - Land price in Buy page and actual amount paid can differ because of changes while purchase in process - {{User|Elanthius Flagstaff}}
{{Bug List Instructions}}
* {{jira|SVC-206}} - When new users teleport into a non-empty region, Agent Time spikes and sim performance drops signfigantly for a short period time - {{User|Drew Dwi}}
* {{jira|VWR-740}} - Items in texture browser or inventory are not anymore located properly when typing the name - {{User|BlckCobra Shikami}}
 
Normal list:
 
* {{jira|VWR-771}} - Avatar Texture rendering bug. - {{User|Rascal Ratelle}}
* {{jira|VWR-770}}, dupe of {{jira|VWR-291}} - llPlaySound() Sometimes loops sound or wont even play. - {{User|dimentox travanti}}
* {{jira|VWR-769}} - "[person] is typing" in IM window disappears when entering own message - {{User|Daedalus Young}}
* {{jira|VWR-768}} - Texture Cosole opens at bottom of screen shows flash of texture but not staying to be of any use at all - {{User|Kelindra Talamasca}}
* {{jira|VWR-766}} - When looking at the world map - no AV show up on another sim until after you TP there - {{User|Xilinx Undertone}}
* {{jira|MISC-209}} - No TPing, slow level rezzing, major lag..etc - {{User|Kez Oh}}
* {{jira|VWR-758}}, dupe of {{jira|VWR-636}} - Copy/Paste Japanese characters in group-IM fail to send - {{User|Saii Hallard}}
* {{jira|VWR-757}} - Linkset of prims act like they are phantom - {{User|Saii Hallard}}
* {{jira|MISC-207}} - Morris Sandboxes Auto Return - {{User|Fallon Mills}}
* {{jira|VWR-755}} - Floating (Hover) Text penetrates walls - {{User|Ee Maculate}}
* {{jira|VWR-753}} - Chat Logging Freezes After .txt file reaches size - {{User|Ina Centaur}}
* {{jira|VWR-749}} - Bandwidth indicator: Kbps, should not have capital k - {{User|Daedalus Young}}
* {{jira|VWR-748}} - Voice doesn't work, even when enabled correctly - {{User|Target Meili}}
* {{jira|VWR-747}} - Texture resizes only proportionately to received dimensions - {{User|Alexandra Rucker}}
* {{jira|VWR-746}} - Incorrect menu item referred to when member of maximum number of groups and a group invite is received - {{User|Benja Kepler}}
* {{jira|VWR-743}} - busy mode does not show local chat except in history - {{User|DBDigital Epsilon}}
* {{jira|WEB-127}} - Updating your credit card information does not update it - {{User|Steve Mahfouz}}

Revision as of 13:38, 1 June 2007


No agenda yet. 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.