Difference between revisions of "Bug triage/2010-08-23"
Jump to navigation
Jump to search
Moon Metty (talk | contribs) |
Alexa Linden (talk | contribs) |
||
Line 36: | Line 36: | ||
* {{jira|VWR-16195}} - Votes: 2 - Non-Trans Texture Eyedropper Duplication - {{User|Synaptiq Constantine}} | * {{jira|VWR-16195}} - Votes: 2 - Non-Trans Texture Eyedropper Duplication - {{User|Synaptiq Constantine}} | ||
* {{jira|VWR-18652}} - Votes: 2 - Skin and Sculptie Rendering Issues. - {{User|Luir Padar}} | * {{jira|VWR-18652}} - Votes: 2 - Skin and Sculptie Rendering Issues. - {{User|Luir Padar}} | ||
== Pre-meeting activity == | == Pre-meeting activity == |
Revision as of 13:13, 23 August 2010
Next meeting: 2010-08-23 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
- VWR-17069 - Votes: 12 - Implement llTextBox() in the official clients - Qie Niangao
- VWR-20639 - Votes: 11 - Unable to smooth land at edge of regions - Ryker Infinity
- VWR-16964 - Votes: 138 - PLEASE allow adjustable transparency of ""Nearby Chat"" window, Chat History and Chat ""Toasts"" in Viewer 2.0! - Michi Lumin
Misc Pool
- WEB-2531 - Votes: 9 - Blogs.secondlife.com / id.secondlife.com (processing login..) loop. - Aoife Lawson
- SVC-6225 - Votes: 8 - llGetDisplayName and llRequestDisplayName functions must reflect changes to the scriptengine instantly - Zep Palen
- VWR-20694 - Votes: 4 - Snowstorm Sprint 2: As a User, I want to undock tabs from the Viewer sidebar so that I can control what tabs are displayed and organize them on my screen in any way I want like I could do in 1.23. - Esbee Linden
- SVC-6204 - Votes: 3 - Group members still being charged group liability for "parcel directory fee" for long-abandoned land - Kiwini Oe - Last Triaged: 8/20/2010 9:33 AM
- SVC-1911 - Votes: 1 - llAddToLandBanList cannot nonpermnantly ban more than 8640 minutes(6 days) - Dasolo Sautereau - Last Triaged: 6/1/2010 3:27 PM
- VWR-13369 - Votes: 3 - Small and zoomed objects (prims) flickering - Kontor Jenkins - Last Triaged: 8/10/2010 2:30 AM
- VWR-20519 - Votes: 3 - Second Life viewer causes full screen video to freeze. - Nin Nyn
- VWR-2981 - Votes: 3 - Opening a notecard with the same name as one that is already open does not work. - Gigs Taggart
- VWR-8884 - Votes: 3 - Ground level for stand animation while sitting on an object determined by the location the user sat down on the object - Gregory Maurer
- WEB-1654 - Votes: 2 - When Classified Maturity Ratings options are selected in the search options they are not persisting after clicking next. - Yummi Honi
- SVC-1818 - Votes: 2 - New Avatar "friction" breaks content - Lex Neva
- SVC-6209 - Votes: 2 - collision detection failing in some conditions - Les White
- VWR-11943 - Votes: 2 - Reference mode can use bounding box center instead of coordinate center - Cinco Pizzicato - Last Triaged: 8/10/2010 8:44 AM
- VWR-15868 - Votes: 2 - Snapshot Freeze-Frame mode not respected by particles, animated textures, and Windlight clouds - Melinda Latynina - Last Triaged: 8/10/2010 8:47 AM
- VWR-16195 - Votes: 2 - Non-Trans Texture Eyedropper Duplication - Synaptiq Constantine
- VWR-18652 - Votes: 2 - Skin and Sculptie Rendering Issues. - Luir Padar
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-08-23/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)
- Look at the results of one of these queries
- General triage: "Viewer 2 Bug Triage" (sorted by LL ID, Created, Last Triaged):
- UI triage:
- https://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=10470 (The selected filter with id '10470' does not exist.)
- (Note: there's no hard and fast rule that says these are the only valid queries. If you feel there's a better query one particular week, use that.)
- Save a copy of the XML version of the query
- Run this perl script on the xml file
<perl>
- !/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.
- if you do not have access to a perl interpreter. There is a ported version of the script on PHP, located here: http://jirafiller.technokittydevelopment.com/ made by roberto salubrius