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

From Second Life Wiki
Jump to navigation Jump to search
(Initial Creation)
 
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<!-- Edit below to add or change issues.  To update the future formatting and text of this page, change [[Template:Triage Template]] instead. -->{{Bug triage}}
<!-- Edit below to add or change issues.  To update the future formatting and text of this page, change [[Template:Triage Template]] instead. -->{{Bug triage}}


<onlyinclude>
<onlyinclude>
{{Triage Template/schedule
{{Triage Template/schedule
|Date=2009-XX-XX
|Date=2009-08-03
|Time=TIME PM SLT
|Time=12:00 NOON SLT
|Place=PLACE (FIXME)
|Place=[http://slurl.com/secondlife/Hippotropolis/241/32/23 Hippotropolis Meeting area].
|}}
|}}
</onlyinclude>
</onlyinclude>
Line 16: Line 17:
[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-4629}} - Votes: 33 - "Mono engine revs out of control on 1.27, lags sim to insane levels, need a mono engine governor." - {{User|intlibber BnT}} - Last Triaged: 7/27/2009 1:14 PM
** 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|SVC-4652}} - Votes: 0 - Some Simulators Intermittently Cannot resolve DNS after Upgrading - {{User|baron nowhere}}
** Imported
* {{jira|SVC-4639}} - Votes: 2 - "In-world voice chat" connection failure believed to be a server issue between LL servers and Vivox servers - {{User|Calli Windlow}}
** Imported
* {{jira|SVC-3787}} - Votes: 1 - Script missing from worn object after rolling restart - {{User|Glenn Rotaru}}
** Resolved - Needs More Info
* {{jira|VWR-14155}} - Votes: 0 - Prim Editor/Tool not using correct rotations in LOCAL rulermode - {{User|Zep Palen}}
** Duplicate of {{jira|VWR-11103}}
* {{jira|SVC-2658}} - Votes: 0 - Touch events in HUD objects broken at login - {{User|sensei schism}}
** Resolved - Needs More Info
* {{jira|SVC-3312}} - Votes: 0 - Linkset owner not same as root owner - {{User|Joshua Nightshade}}
** Duplicate of {{jira|SVC-369}}
* {{jira|SVC-3771}} - Votes: 0 - Content of object lost while sending objects between avatars - {{User|Albertobs88 Obolensky}}
** Imported
* {{jira|SVC-4613}} - Votes: 0 - Starting with 1.27 llHttpRequests from MONO objects sent on sim crossing first time in the sim fail - {{User|baron nowhere}}
** Resolved - Needs More Info
* {{jira|VWR-12392}} - Votes: 0 - E8400 core2duo @3ghz with 3gb ram running at 100% with SL - {{User|diegus Benelli}}
** Duplicate of {{jira|VWR-5574}}
* {{jira|VWR-13898}} - Votes: 0 - Animation Upload interprets BVH file wrong - {{User|Flavio Qissinger}}
** Resolved - Needs More Info


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

Latest revision as of 15:10, 3 August 2009




Next meeting: 2009-08-03 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)

Hot by Vote

High Voted Bugs

  • SVC-4629 - Votes: 33 - "Mono engine revs out of control on 1.27, lags sim to insane levels, need a mono engine governor." - intlibber BnT - Last Triaged: 7/27/2009 1:14 PM
    • Imported

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-08-03/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.