Bug triage/2007-11-07

From Second Life Wiki
Jump to navigation Jump to search


Next meeting: 2007-10-24 at 3:00 SLT at Levenhall. See Bug triage for details.

1.18.4 RC Bugs

  • VWR-2843 - Votes: 0 - Issue with horizontal and vertical texture repeats per face in Release Candidate Viewer 1.18.4 - Myria Boa
    • Dupe of VWR-2797 - Votes: 26 - Edits to Texture Repeats do not commit correctly - Ryozu Kojima
    • Which is already imported :)
  • VWR-2834 - Votes: 0 - Standalone builds fail on 1.18.4.0 with no mozlib - Michelle2 Zenovka
  • VWR-2830 - Votes: 1 - Search->Places : results show "[AREA] sq. m." in parcel details - meade paravane
  • VWR-2827 - Votes: 0 - right click of existing folder --> new folder while in inventory places you in 'rename' position of existing folder instead of creating a new sub-folder. - Charlene Trudeau
  • VWR-2826 - Votes: 11 - Several problems on handling Japanese input (and possiblly Chinese/Korean also) - Alissa Sabre
  • VWR-2824 - Votes: 0 - Incorrect information in View Groups - Raloc Dorado
  • VWR-2823 - Votes: 2 - Show in Search option is retained when tranfering or selling the object - Matthew Dowd
  • VWR-2821 - Votes: 2 - Can't change Search option in No Mod objects - Matthew Dowd
  • VWR-2817 - Votes: 1 - Edit Window Displays Copy Tools Differently - Dirk Talamasca
  • VWR-2803 - Votes: 2 - Lag Meter network ping metric doesn't account for residents outside the USA - Jayden Beresford
  • VWR-2795 - Votes: 0 - New Land Description Multiline box does not allow Line Return formatting - converts to ? - Charlene Trudeau

1.18.4 Bugs also seen in 1.18.3

  • VWR-2847 - Votes: 0 - Wrong hover text in Japanese UI - Alissa Sabre
  • VWR-2829 - Votes: 0 - Texture Picker Jumps Between Multiple Highlighted Textures - Big Enigma
  • VWR-2633 - Votes: 6 - Not all my groups are visible and the group dialog, (Edit -> Groups...) i'm missing some groups - Dre Dagostino

Server-side bug related to 1.18.4 RC distribution

  • SVC-846 - Votes: 0 - Can't start 1.18.3(5) RC viewer after 1.18.4(0) RC appeared - Alissa Sabre

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/2007-11-07/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.