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

From Second Life Wiki
Jump to navigation Jump to search
Line 38: Line 38:
* {{jira|VWR-1465}} - Viewer crash after taking several hi-res snapshots - patch by {{User|EponymousDylan Ra}}
* {{jira|VWR-1465}} - Viewer crash after taking several hi-res snapshots - patch by {{User|EponymousDylan Ra}}
*: patch looks straightforward to me and looks like it fits the error he describes.  (see my comment there) (NB)
*: patch looks straightforward to me and looks like it fits the error he describes.  (see my comment there) (NB)
*:: Might not be as straightforward as I thought.  Will follow up on it on the JIRA. (NB)


* {{jira|WEB-164}} - Votes: 1 - Horizontal scroll bar fix (css) - {{User|Strife Onizuka}}
* {{jira|WEB-164}} - Votes: 1 - Horizontal scroll bar fix (css) - {{User|Strife Onizuka}}

Revision as of 03:19, 1 July 2007


Fast Track Import

(Move bugs here that have solid repros, or valid patches that you have reviewed)

Hot by Vote

  • SVC-155 - Votes: 15 - Sinking Through The Ground - Onder Skall
  • SVC-206 - Votes: 15 - When new users teleport into a non-empty region, Agent Time spikes and sim performance drops signfigantly for a short period time - Drew Dwi
    I'm not seeing this as much anymore Gigs Taggart 18:45, 30 June 2007 (PDT)
  • VWR-1297 - Votes: 14 - Group IM errors: "Error messaging chat session" - Don Misfit
    Still a big problem. Gigs Taggart 18:45, 30 June 2007 (PDT)
  • MISC-61 - Votes: 14 - Can not "Set home to here" on a private island unless the land is DEEDED to the group. - Ceera Murakami
    I've come across this before, it seems to be related to if a landing point is set for the parcel, and various other TP settings. Gigs Taggart 18:45, 30 June 2007 (PDT)
  • MISC-153 - Votes: 12 - Update servers and vendors failing - dataserver? - Maya Remblai
    I think this is related to email failing. Rebooting the region fixes it, for a while. Gigs Taggart 18:45, 30 June 2007 (PDT)
  • MISC-317 - Votes: 11 - orbitting "weapons" moving you to insane altitude, temp-breaking attachments, requiring one to relog. - Squirrel Wood
    The "ownage" bug. I showed this to Soft Linden and told her how to create such a weapon. Gigs Taggart 18:45, 30 June 2007 (PDT)

Patches

  • VWR-1420 - IM in chat history is rendered nearly unreadbale now in 1.17.2.0 - color not changeable - patch by Thraxis Epsilon
    Have not checked it in depth yet, but will most likely include it in my viewer (more tests tomorrow) (NB)
  • VWR-1465 - Viewer crash after taking several hi-res snapshots - patch by EponymousDylan Ra
    patch looks straightforward to me and looks like it fits the error he describes. (see my comment there) (NB)
    Might not be as straightforward as I thought. Will follow up on it on the JIRA. (NB)

Misc Pool

Imported

These issues don't need to be discussed further, but are copied to this section to archive the discussion.

  • VWR-1434 - Null pointer crash when terraforming - patch by Gigs Taggart
    obvioius, two-liner (NB)
  • IMPORTED SVC-371 - Patch for llOwnerSay (color and grammer) - patch by Thraxis Epsilon
    hot by votes (40+ at the moment). I see this one as legit and good. The default color from the previous patch does suck (almost unreadable) and going back to ": " instead of "say " is also helpful, because some objects use this in forms like "User: activates this or that". I think the "say " was a coding error anyway (fell into a default case). Will include it in my viewer. (NB)
  • VWR-1406 - Unchecking "Go Away/AFK when idle" has no effect in 1.17.2.0 - patch by Henri Beauchamp
    10 votes. The patch reverts llagent.cpp back to 1.17.0. Simple 3-liner to make the debug entry prevent the 30-min logout. I support it (it may be something which someone did intentionally, which personally I don't like, because people will find other and more sim hogging ways to stay online).
  • IMPORTED VWR-1225 - Embedded notecards not functioning - patch by Gigs Taggart
    Hot by votes (over 100). I'm not sure about the implications of the patch, but since it's from Gigs, I'm sure it's good enough (I'll include it in my viewer) (NB)
    Eh, the patch is safe to use/merge, but it's kinda a workaround and doesn't completely address the issue. Gigs Taggart 17:01, 30 June 2007 (PDT)


Resolved

These issues don't need to be discussed further, but are copied to this section to archive the discussion.

  • WEB-174 - Votes: 14 - According to the website, Lindens cannot be purchased through Lindex ATM's, but in fact, I can't purchase Linden's at all through the website either. - Jaymes Capalini

Instructions for agenda generation

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.