Difference between revisions of "Bug triage/2007-12-17"
Jump to navigation
Jump to search
Alexa Linden (talk | contribs) |
Alexa Linden (talk | contribs) |
||
Line 15: | Line 15: | ||
== Patches == | == Patches == | ||
* {{jira|VWR-3655}} - Votes: 0 - Extra qualifier in LLWaterParamSet definition, making gcc choke (considered an error). - {{User|Henri Beauchamp}} | * {{jira|VWR-3655}} - Votes: 0 - Extra qualifier in LLWaterParamSet definition, making gcc choke (considered an error). - {{User|Henri Beauchamp}} | ||
** Imported - Assigned to Soft Linden | |||
* {{jira|VWR-3813}} - Votes: 1 - gtk_check_version() API changed to return const gchar * - causes gcc ERROR - {{User|Michelle2 Zenovka}} | * {{jira|VWR-3813}} - Votes: 1 - gtk_check_version() API changed to return const gchar * - causes gcc ERROR - {{User|Michelle2 Zenovka}} | ||
** Imported - Assigned to Soft Linden | |||
* {{jira|VWR-3835}} - Votes: 1 - Copy UUID Pie Menu Item - {{User|Eddy Stryker}} | * {{jira|VWR-3835}} - Votes: 1 - Copy UUID Pie Menu Item - {{User|Eddy Stryker}} | ||
** Imported - Assigned to RX | |||
== Misc Pool == | == Misc Pool == |
Revision as of 12:13, 18 December 2007
Next meeting: 2007-XX-XX at TIME and PLACE (FIXME). 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
- SVC-1032 - Votes: 11 - Age Verification status shows in profile - WarKirby Magojiro
- Fixed
- SVC-1072 - Votes: 39 - Havok 4 -- Objects can exist up to 4096 meters up, but scripted rez above 1024 meters fails silently - Jcool410 Wildcat
- Linked to DEV-7422
Patches
- VWR-3655 - Votes: 0 - Extra qualifier in LLWaterParamSet definition, making gcc choke (considered an error). - Henri Beauchamp
- Imported - Assigned to Soft Linden
- VWR-3813 - Votes: 1 - gtk_check_version() API changed to return const gchar * - causes gcc ERROR - Michelle2 Zenovka
- Imported - Assigned to Soft Linden
- VWR-3835 - Votes: 1 - Copy UUID Pie Menu Item - Eddy Stryker
- Imported - Assigned to RX
Misc Pool
- VWR-3416 - Votes: 1 - Dramatic performance drop when avatar is in view - Umbra Lunardi
- SVC-961 - Votes: 3 - can easily walk up walls in havok 4 beta - Lex Neva
- WEB-406 - Votes: 0 - SLMAP API - Map images very outdated - Gypsy Paz
- WEB-309 - Votes: 1 - Transaction History .xls is unable to be opened by iWorks 08 - Drew Dwi
- VWR-3627 - Votes: 0 - Graphics Card Crashes on logout. - Kilmarac Drago
- VWR-3521 - Votes: 0 - Oddly shapes Horizons in Windlight above about 600 meters and very well defined sim corners above just 50 meters - sean marsi
- VWR-3514 - Votes: 0 - Windlight client 1.18.5 (74642) graphics rendering problem on medium quality settings with nVidia chipset at high altitudes - Dark Troglodite
- VWR-3523 - Votes: 0 - The Void water is rendered at too high of a level for me - sean marsi
- VWR-3522 - Votes: 0 - Object-Object Occlusion Possible Memory Leak - Windlight 1.18.5 (74642) - fa nyak
- VWR-3373 - Votes: 2 - Daylight settings in Estate tools missing - Ralf Haifisch
- VWR-3118 - Votes: 2 - Windlight: Bump Mapping and Shiny display problems - Braya White
- SVC-1030 - Votes: 0 - Particle objects are not working correctly on Sim Galactica and working correctly on other sims - cammi hudson
- VWR-3630 - Votes: 0 - Avatar disspears when camera zooms out - Nadja Travanti
- SVC-976 - Votes: 3 - Repeated Crashes - MyoKa Murakami
- SVC-872 - Votes: 0 - Havok4 Beta: Eye texture not loaded. - Kitto Flora
- VWR-3633 - Votes: 0 - Avatar impostor of not-yet-rezzed avatar not appearing - Shirley Marquez
- VWR-3536 - Votes: 0 - Highlights on objects dissappear when moving while using land info tools - Ryder Dryke
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-12-17/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)
- Look at the results of one of these queries
- General triage: "Viewer 2 Bug Triage" (sorted by LL ID, Created, Last Triaged):
- UI triage:
- https://jira.secondlife.com/secure/IssueNavigator.jspa?mode=hide&requestId=10470 (The selected filter with id '10470' does not exist.)
- (Note: there's no hard and fast rule that says these are the only valid queries. If you feel there's a better query one particular week, use that.)
- Save a copy of the XML version of the query
- Run this perl script on the xml file
<perl>
- !/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.
- if you do not have access to a perl interpreter. There is a ported version of the script on PHP, located here: http://jirafiller.technokittydevelopment.com/ made by roberto salubrius