Difference between revisions of "Bug triage/2008-06-30"

From Second Life Wiki
Jump to navigation Jump to search
Line 33: Line 33:
* {{jira|VWR-2496}} - Votes: 2 - Linking 255 or 256 prims results in two linksets - {{User|Ochi Wolfe}}
* {{jira|VWR-2496}} - Votes: 2 - Linking 255 or 256 prims results in two linksets - {{User|Ochi Wolfe}}
* {{jira|VWR-7743}} - Votes: 0 - About Land / General tab, confusing on Deed area - {{User|Trinity Coulter}}
* {{jira|VWR-7743}} - Votes: 0 - About Land / General tab, confusing on Deed area - {{User|Trinity Coulter}}
* {{jira|VWR-7592}} - Votes: 1 - Using SpaceNavigator, using flycam mode, editing object, closing edit window causes camera to fly off into the distance. - {{User|icktoofay Kamachi}}
* {{jira|SVC-1731}} - Votes: 2 - Unable to access Region from Teleport /LandMark or from logging into Second Life. Only flying in from an adjacent region works. - {{User|taradesh jewell}}
* {{jira|SVC-1731}} - Votes: 2 - Unable to access Region from Teleport /LandMark or from logging into Second Life. Only flying in from an adjacent region works. - {{User|taradesh jewell}}
* {{jira|VWR-7795}} - Votes: 0 - world is invisible - {{User|Davie Mougin}}
* {{jira|VWR-7795}} - Votes: 0 - world is invisible - {{User|Davie Mougin}}

Revision as of 11:21, 30 June 2008


Next meeting: 2008-06-30 at 12 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)

  • SVC-32 - Votes: 37 - Person kicked remains in chat session - SiRiS Asturias
    • This was fixed, but seems the fix either got removed or is now broken also.

Hot by Vote

High Voted Bugs

  • WEB-510 - Votes: 11 - SLURL Map Contents Change According to the Map Zoom factor and/or Not Current - leo Linden
  • SVC-2513 - Votes: 16 - Push (llPushObject) not working correctly when applied to an avatar! - Abramelin Wolfe
  • SVC-2514 - Votes: 32 - Potential security vulnerability with account that was able to ""copybot"" not just items and attachments but also profiles and access closed-enrollment groups - phoenix psaltery
  • SVC-2585 - Votes: 48 - Abuse Report Emails Now Devoid of Useful Information - Kalel Venkman

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/2008-06-30/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.