Difference between revisions of "Bug triage/2010-07-26"

From Second Life Wiki
Jump to navigation Jump to search
(Fix Date and Location)
 
(5 intermediate revisions by 3 users not shown)
Line 13: Line 13:
[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|WEB-2477}} - Votes: 13 - Posts on the forum showing up randomly - {{User|Suspiria Finucane}}
** Fixed
* {{jira|VWR-18156}} - Votes: 4 - Line spacing to narrow when ""Enable plain text chat history"" is selected - {{User|Joel Savard}}
** Imported


== 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|WEB-2366}} - Votes: 3 - Unconsisted search results (places appears in the "Places" category but not in "Any Category" when using the search all) - {{User|Vittorio Beerbaum}}
* {{jira|VWR-10791}} - Votes: 2 - Script editor: several constants are not highlighted - {{User|Gellan Glenelg}}
* {{jira|VWR-13305}} - Votes: 2 - flickering alpha windows and trees - {{User|blaze nielsen}}
* {{jira|VWR-16694}} - Votes: 2 - Avatars start moving extremely fast if far range or i zoom out with the camera - {{User|Hardcore Blackadder}}
* {{jira|WEB-1570}} - Votes: 2 - Update billing info for paypal not working - {{User|yelmer pfeffer}}
* {{jira|WEB-1801}} - Votes: 2 - Private Adult sims showing up in seach places as PG because their group is listed as PG - {{User|Emily Darrow}}
* {{jira|MISC-2755}} - Votes: 2 - Total object loss after asset server delay - {{User|Mimika Oh}}
* {{jira|SVC-425}} - Votes: 2 - Physical script calls from non-root prims of attachments do not effect the avatar. - {{User|Argent Stonecutter}}
* {{jira|SVC-4862}} - Votes: 2 - llGetPermissionsKey() doesn't return NULL_KEY when permissions are declined - {{User|Moon Metty}}
* {{jira|SVC-4873}} - Votes: 2 - touch() events get "stuck" and continuously execute - {{User|Stickman Ingmann}}
* {{jira|SVC-5043}} - Votes: 2 - llTakeControls(0, TRUE, TRUE); triggers unexpected error msg - {{User|TigroSpottystripes Katsu}}
* {{jira|SVC-5064}} - Votes: 2 - Server group IM listener restarts without notifying clients - {{User|Morgaine Dinova}}
* {{jira|SVC-5145}} - Votes: 2 - llSensor detection is inconsistent for seated avatars - {{User|Cerise Sorbet}}
* {{jira|SVC-5263}} - Votes: 2 - Object which is not owned by parcel owner returns unexpectedly when the parcel is full. - {{User|Fake Fitzgerald}}


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

Latest revision as of 09:55, 27 July 2010

Next meeting: 2010-07-26 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

High Voted Bugs

Misc Pool

Misc Pool

  • WEB-2366 - Votes: 3 - Unconsisted search results (places appears in the "Places" category but not in "Any Category" when using the search all) - Vittorio Beerbaum
  • WEB-1801 - Votes: 2 - Private Adult sims showing up in seach places as PG because their group is listed as PG - Emily Darrow
  • SVC-4862 - Votes: 2 - llGetPermissionsKey() doesn't return NULL_KEY when permissions are declined - Moon Metty
  • SVC-5263 - Votes: 2 - Object which is not owned by parcel owner returns unexpectedly when the parcel is full. - Fake Fitzgerald

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-07-26/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.