Difference between revisions of "Bug triage/2010-01-25"

From Second Life Wiki
Jump to navigation Jump to search
(Yell at me if I'm doing it wrong. :|)
(Adding issues that came up since last week)
Line 24: Line 24:
[http://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=11885 High Voted Bugs]
[http://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=11885 High Voted Bugs]


* {{jira|SVC-5239}} - Votes: 97 - Details... button on PERMISSION_DEBIT dialog triggers run_time_permissions() with a deny action - {{User|ZenMondo Wormser}}
* {{jira|SVC-5239}} - Votes: 99 - Details... button on PERMISSION_DEBIT dialog triggers run_time_permissions() with a deny action - {{User|ZenMondo Wormser}}
* {{jira|SVC-5271}} - Votes: 16 - "WarpPos() and PosJump() that has objects mistakenly go offworld are no longer returned to inventory, content is lost." - {{User|NeoBokrug Elytis}}
* {{jira|VWR-11712}} - Votes: 16 - Blank Texture Black - {{User|Adger Ragu}}


== Misc Pool ==
== Misc Pool ==
[http://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=11885 Misc Pool]
[http://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=11885 Misc Pool]


* {{jira|MISC-3766}} - Votes: 0 - Logged first here in JIRA, referred over to tech support, left unresolved and told to re-enter here as a bug. - {{User|Laneybug Macbain}}
* {{jira|SVC-2665}} - Votes: 8 - All llCreateLink() calls in scripts fail in Server 1.34.2.142087 - {{User|Thickbrick Sleaford}}
* {{jira|SVC-5237}} - Votes: 0 - LLGetLocalPos - {{User|Benjamin Bowenford}}
* {{jira|SVC-5237}} - Votes: 0 - LLGetLocalPos - {{User|Benjamin Bowenford}}
* {{jira|VWR-16132}} - Votes: 0 - Parts of Avatar become invisable when wearing ALPHA texture cloth(s)ing - {{User|Master Kane}} - Last Triaged: 11/16/2009 9:26 AM
* {{jira|VWR-9093}} - Votes: 4 - Female shape, torso muscularity slider bug... - {{User|Lanfer Christensen}}
* {{jira|VWR-9093}} - Votes: 4 - Female shape, torso muscularity slider bug... - {{User|Lanfer Christensen}}
* {{jira|SVC-4900}} - Votes: 3 - llUnescapeURL does not unescape + character - {{User|Dedric Mauriac}}
* {{jira|SVC-4900}} - Votes: 3 - llUnescapeURL does not unescape + character - {{User|Dedric Mauriac}}

Revision as of 22:32, 17 January 2010




Next meeting: 2010-01-18 at 12:00 NOON SLT 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)

  • VWR-6484 - Votes: 19 - Minimap height indicators all show ""lower than me"" if over the old 768 build ceiling - Buckaroo Mu
    • Status?
  • VWR-4137 - Votes: 22 - Date columns in tables are sorted alphabetically - Celierra Darling
    • Only two of the three were fixed.
  • SVC-4937 - Votes: 29 - "The server is experiencing unexpected difficulties" error when saving a notecard inside a prim. - Bones Outlander
    • Requesting status update be posted to pJIRA

Hot by Vote

High Voted Bugs

  • SVC-5239 - Votes: 99 - Details... button on PERMISSION_DEBIT dialog triggers run_time_permissions() with a deny action - ZenMondo Wormser
  • SVC-5271 - Votes: 16 - "WarpPos() and PosJump() that has objects mistakenly go offworld are no longer returned to inventory, content is lost." - NeoBokrug Elytis
  • VWR-11712 - Votes: 16 - Blank Texture Black - Adger Ragu

Misc Pool

Misc Pool

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-01-18/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.