Difference between revisions of "Bug triage/2007-07-09"

From Second Life Wiki
Jump to navigation Jump to search
(I reject your reality and substitute my own. Hehe. Seriously though we only need to re-triage previously imported reopened issues.)
(patches)
Line 42: Line 42:


== Patches ==
== Patches ==
* {{jira|VWR-1603}} - Votes: 0 - Patch to fix Duck Walk - {{User|Gigs Taggart}}
* {{jira|VWR-1598}} - Votes: 0 - Standalone build fails to link with libresolv - {{User|Seg Baphomet}}
* {{jira|VWR-1594}} - Votes: 0 - Inconsistent ' & ' use in en-us locale file - {{User|Gudmund Shepherd}}
* {{jira|VWR-1586}} - Votes: 0 - Mismatched delete in llviewerparcelmgr.cpp - {{User|Seg Baphomet}}
* {{jira|VWR-1585}} - Votes: 0 - gcc 4 build failure: llstatusbar.h:130: error: extra qualification 'LLStatusBar::' on member 'MAX_DATE_STRING_LENGTH - {{User|Seg Baphomet}}
* {{jira|VWR-1578}} - Votes: 0 - Two quirks in IM regarding "xxxx is typing" - {{User|Nicholaz Beresford}}
* {{jira|VWR-1562}} - Votes: 0 - llassert(mNumDescendantsSelected >= 0) with crash and loop. (Debug build) - {{User|Paula Innis}}
* {{jira|VWR-1549}} - Votes: 4 - Simple fix for the communicate window to move Friends and Groups tabs from left to top - {{User|Matthew Dowd}}
* {{jira|VWR-1525}} - Votes: 0 - "Standalone" build does not actually work - {{User|Seg Baphomet}}
* {{jira|VWR-1471}} - Votes: 0 - Inspect (Pie menu > More > More > Inspect) shows nothing on first use when "only select own objects" is enabled - {{User|Nicholaz Beresford}}
* {{jira|VWR-1470}} - Votes: 0 - Buttons (IM, Teleport, Profile, ...) in friends list are disabled when opening friends list window - {{User|Nicholaz Beresford}}
* {{jira|VWR-1455}} - Votes: 1 - Various source cleanup patches - {{User|Nicholaz Beresford}}
* {{jira|VWR-1350}} - Votes: 1 - Color settings do not appear to be applied to LSL default text - {{User|kerutsen sellery}}
* {{jira|VWR-365}} - Votes: 2 - Unable to use ALT in mouse mode to click on objects Such as HUDs - {{User|gearsawe stonecutter}}
* {{jira|SVC-337}} - Votes: 0 - MuteFlags set in a UpdateMuteListEntry message are discarded - {{User|able whitman}}


== Misc Pool ==
== Misc Pool ==

Revision as of 00:22, 9 July 2007


Next meeting: 2007-07-09. 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

  • MISC-378 - Votes: 42 - Linked Media on land (audio stream & video stream) can be viewable to anyone with "View Admin Options" on. Media Links in parcels should be PRIVATE ALWAYS. - Doubledown Tandino
Recommend WONTFIX, DRM/Copybot type issue. No way to protect this.
  • SVC-273 - Votes: 11 - Items sold at vendors are sometimes ending up full permissions - Angel Lamar
This must be very rare if it is happening. I IM Stroker to see what he means by having "Seen it first hand" Gigs Taggart 00:19, 9 July 2007 (PDT)

Reopened issues

This week's theme: reopened issues.


Patches


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

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.