Difference between revisions of "Bug triage/2007-06-18"

From Second Life Wiki
Jump to navigation Jump to search
(→‎General: Dead bug)
(→‎Invalid Issue IDs: resolved group IM dupe, dead bug removal)
Line 36: Line 36:
* {{jira|MISC-285}} - Objects owned by me cnt be used by others if the object rezzes objects to operate (ie poseballs) - {{User|LadyLutha Harlow}}
* {{jira|MISC-285}} - Objects owned by me cnt be used by others if the object rezzes objects to operate (ie poseballs) - {{User|LadyLutha Harlow}}
** I IM'd LadyLutha and asked for more specific steps to attempt reproduction. [[User:Dzonatas Sol|Dzonatas Sol]] 08:13, 15 June 2007 (PDT)
** I IM'd LadyLutha and asked for more specific steps to attempt reproduction. [[User:Dzonatas Sol|Dzonatas Sol]] 08:13, 15 June 2007 (PDT)
* {{jira|VWR-918}} - Chat/IM display width is small - {{User|Kilmarac Drago}}
** Resolved, can't reproduce. [[User:Dzonatas Sol|Dzonatas Sol]] 09:34, 15 June 2007 (PDT)
* {{jira|MISC-183}} - Difficulties responding to group im's and tp'ing to events in response to tp's sent out. - {{User|Ima Peccable}}
** I IM'd Ima. This is from May 2nd, so it probably was from the upgrade traffic. [[User:Dzonatas Sol|Dzonatas Sol]] 11:54, 15 June 2007 (PDT)


=== General ===
=== General ===

Revision as of 19:05, 16 June 2007


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


Issues

New Patches

  • SVC-300 - Spam upon TP out of Help Island Public, per calling card and landmark - meade paravane
  • SVC-104 - llBase64ToInteger caveats & bugs - Strife Onizuka
    • Is there a new patch since it was imported? Dzonatas Sol 09:39, 13 June 2007 (PDT)
    • Strife has posted a new patch. I'll leave this here just for votes. Dzonatas Sol 08:40, 15 June 2007 (PDT)
  • VWR-654 - Tools / Reset all Scripts in Selection Window does not Scroll automatically - Zi Ree
    • This one was on last triage, the patch is not ready. Dzonatas Sol 12:27, 15 June 2007 (PDT)
  • VWR-893 - Patch to make View Admin Options sticky - Gigs Taggart
    • This one was on last triage, see my comments. Now, 3 votes. Dzonatas Sol 12:31, 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. Dzonatas Sol 12:38, 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
  • VWR-1204 - Add option to SConstruct to enable gcc -pg (profiling) and analysis via gprof - Stevex Janus
  • VWR-1182 - Remove LL_USE_KDU define which is no longer used from SConstruct - Stevex Janus

Tabled Issues -- Feel free to Vote on these!

Invalid Issue IDs

  • 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. 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)
  • MISC-285 - Objects owned by me cnt be used by others if the object rezzes objects to operate (ie poseballs) - LadyLutha Harlow
    • I IM'd LadyLutha and asked for more specific steps to attempt reproduction. Dzonatas Sol 08:13, 15 June 2007 (PDT)

General


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.