Difference between revisions of "Bug triage/2009-03-09"

From Second Life Wiki
Jump to navigation Jump to search
(→‎Hot by Vote: importing list)
(→‎Misc Pool: importing list)
Line 25: Line 25:
== Misc Pool ==
== Misc Pool ==
[http://www.sljirastats.com/jira_search.php?search=35&output=wiki Misc Pool]
[http://www.sljirastats.com/jira_search.php?search=35&output=wiki Misc Pool]
* {{jira|SVC-3931}} - Votes: 0 - Never remove texture from objects when inventory items are removed - {{User|Day Oh}}
* {{jira|WEB-619}} - Votes: 0 - ""Update VAT ID"" link shows up on account (non-VAT resident) - {{User|Madamg Zagato}}
* {{jira|VWR-11930}} - Votes: 0 - Teleporting either Disconnects or Crashes SL - {{User|Flurry Parx}}
* {{jira|SVC-3182}} - Votes: 0 - Payment received by one vendor ended up in another avatar's transaction history - {{User|Timeless Prototype}}
* {{jira|VWR-8374}} - Votes: 0 - bandwidth indicator does not fit - {{User|wulfric chevalier}}
* {{jira|SVC-3890}} - Votes: 0 - texturechange scripts refuse to work in class4 sims - {{User|Yuukie Onmura}}
* {{jira|VWR-3063}} - Votes: 0 - Crash during tp - {{User|Luxarnia Dagger}}
* {{jira|WEB-810}} - Votes: 0 - search.secondlife.com uses meta tag redirection instead of RedirectMatch (or similar) .htaccess rule. - {{User|SignpostMarv Martin}}
* {{jira|VWR-3032}} - Votes: 0 - Linked parts, when copied will unlink the original copied from - {{User|Marc Montague}}
* {{jira|VWR-12285}} - Votes: 0 - Trunk build doesn't render water properly at aobut 800 m altitude in trunk build r 1876 - {{User|Sammy Frederix}}
* {{jira|VWR-6673}} - Votes: 0 - Ban lines over protected land and water ways - {{User|bigdaddie mumfuzz}}
* {{jira|VWR-2978}} - Votes: 0 - llRequestAgentData does not respect Make my online status visible only to friends setting - {{User|Earl Pinion}}
* {{jira|VWR-8462}} - Votes: 0 - Avatar Floats During Movement w/ Animation that Controls Legs - {{User|Mark Karlfeldt}}
* {{jira|VWR-2951}} - Votes: 0 - Build de-link at each restart (with build prim rotated only) - {{User|yol asturias}}
* {{jira|VWR-8669}} - Votes: 0 - Login Home page is missing from official client after installing the Mono Beta client - {{User|Satori Taringa}}
* {{jira|VWR-6225}} - Votes: 0 - Inventory Window Opening When Dragging Objects Out Of In World Objects - {{User|Sieben Ochs}}
* {{jira|VWR-5896}} - Votes: 0 - im recieved a message stating i did something...when i didnt - {{User|alcora beaumont}}
* {{jira|VWR-2910}} - Votes: 0 - Permissions don't seem to transfer on contents - {{User|anthony reisman}}
* {{jira|VWR-5183}} - Votes: 0 - WindowBlinds visual style causing crash on texture upload. - {{User|Ganesha Xi}}
* {{jira|VWR-5892}} - Votes: 0 - Sculpted prim with changing sculpttexture disappearing out of linkset, sometimes taking several intersecting normal prims out of set with it. - {{User|tunes Meness}}
* {{jira|VWR-2887}} - Votes: 0 - Deleting an animation that is active crashes the viewer - {{User|Ferragamo Taurog}}
* {{jira|VWR-11903}} - Votes: 4 - linux - libopenal.so.1 and 1.22.8 voice still disconnecting and reconnecting - {{User|Blinking2342 Blinker}}
* {{jira|VWR-12305}} - Votes: 0 - 1.22: BAD Textures - {{User|Gellan Glenelg}}
* {{jira|VWR-7175}} - Votes: 1 - Billionaire Bug - L$ total does not display correctly above 9,999,999 L$ - {{User|WADE1 Jya}}
* {{jira|VWR-5329}} - Votes: 0 - click and crash - {{User|shadow pawpaw}}


== Pre-meeting activity ==
== Pre-meeting activity ==

Revision as of 22:29, 8 March 2009



Next meeting: 2009-03-09 at 12:00 PM 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)

Hot by Vote

High Voted Bugs

  • SVC-1817 - Votes: 11 - Residents with proper SPF records cannot submit abuse reports because the sims spoof their email address and indra-abuse@secondlife.com honors SPF for all senders - BamBam Sachertorte
  • VWR-755 - Votes: 18 - Floating (Hover) Text penetrates walls - Ee Maculate
  • WEB-982 - Votes: 15 - Problems for blogs.secondlife.com - Argent Stonecutter

Patches

Patches

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/2009-03-09/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.