Bug triage/2007-06-18

From Second Life Wiki
< Bug triage
Revision as of 15:26, 18 June 2007 by Gigs Taggart (talk | contribs) (reorder)
Jump to navigation Jump to search


Next bug triage - Monday, 3pm at Rob Linden's office in Grasmere🖈

Stats

Not Resolved: 1195

  • Updated Monday: 117
    • Of those still open: 100
    • Of those being reopened: 6

Triage Queue: 942

  • Blockers: 22
  • Critical: 70
  • Others (votes>=3): 192


Issues Ready for Discussion

  • VWR-893 - Patch to make View Admin Options sticky - Gigs Taggart
    • This one was on last triage, see my comments. (Votes: 5) Dzonatas Sol 12:31, 15 June 2007 (PDT)
  • VWR-157 - incorrect line endings in tar.gz source packages - SpacedOut Frye
    • The files with problems keep changing :-/ This problems exists in 1.17.0.12
    • (Votes: 5) Dzonatas Sol 21:30, 17 June 2007 (PDT)
  • Topic: "reopened" issues. See talk page - Rob Linden

Discussed

  • VWR-895 - Texture latency - texturing all sides of a prim at once results in one side not being textured, has to be selected individually - Cory Edo
    • I IM'd Cory to see if issue can still be reproduced. Moved old refs out of LLIID and into comments. (Votes: 2) Dzonatas Sol 08:04, 15 June 2007 (PDT)
    • Cory demo'd it to me. All the textures change on all sides, but the one side then reverts back. Dzonatas Sol 09:56, 15 June 2007 (PDT)
  • SVC-171 - Objects in a user's inventory show 00000-00-00-00000 for UUIDs when tried to attach - Montana Corleone
    • IM'd Montana. This was one that has more votes on the issue it marks as duplicate (but misfiled). Objects still exist and can repro. (Votes: 2) Dzonatas Sol 21:18, 14 June 2007 (PDT)

New Patches



others

  • VWR-1171 - Velocity interpolation causes weird physical behaviour client-side - Vernes Veranes
    • Reproducible. (Votes: 2) Dzonatas Sol 13:22, 15 June 2007 (PDT)
  • WEB-161 - Javascript Error on Transactions History Page (document_load() not defined) - Slip Stringfellow
    • (IM'd) Slip is a web page developer, and there wasn't more we could find why the error occurred except that it called an undefined function. (Votes: 2) Dzonatas Sol 21:07, 17 June 2007 (PDT)
  • WEB-159 - Contradictory info for basic accts wanting billing support - Celierra Darling
    • (Votes: 2) Looks importable, as-is. Dzonatas Sol 21:45, 17 June 2007 (PDT)
  • VWR-1153 - Sculpted prims show before their shape is known - Mark Busch
  • VWR-654 - Tools / Reset all Scripts in Selection Window does not Scroll automatically - Zi Ree
    • Re-reviewed, this is actually a new feature. The patch confused me, and the patch can't be used. (Votes: 2) Dzonatas Sol 12:27, 15 June 2007 (PDT)
  • VWR-1162 - Search Land Sales does not clear parcels listed for sale when estate resell is disallowed after parcel is listed - Rudolph Ormsby
    • (Votes: 1) Somewhat major bug if it can be reproduced. Move to SVC? Dzonatas Sol 21:45, 17 June 2007 (PDT)
  • VWR-1172 - SLVoice.exe crash on startup - .111 and .112 - Mosley Jewell
    • I IM'd Mosely, see comments. (Votes: 1) Dzonatas Sol 12:59, 15 June 2007 (PDT)
  • VWR-1109 - Some source files in *.zip source distribution contain lines that end with LF only - Alissa Sabre
    • probably fixed already with 1.17. (NB)
    • Commented & IM'd Alissa. (Votes: 1) Dzonatas Sol 12:38, 15 June 2007 (PDT)
  • VWR-1161 - alignment assumptions bad for stability - Whoops Babii
    • (Votes: 1) Commented. Maybe not importable, yet. Dzonatas Sol 21:45, 17 June 2007 (PDT)
  • VWR-1154 - Particle glitches with PSYS_PART_FOLLOW_SRC_MASK - Helena Lycia
    • (Votes: 1) Does this really need a patch? Dzonatas Sol 21:45, 17 June 2007 (PDT)

Tabled & Not Ready For Today's Triage


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.