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

From Second Life Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
#REDIRECT [[Bug triage/2007-05-14]]
{{Bug triage}}
 
No agenda yet.
 
To generate a bug list:
* Save a copy of the [https://jira.secondlife.com/sr/jira.issueviews:searchrequest-xml/10155/SearchRequest-10155.xml XML file for "Bugs, sorted by LL ID"]
* Run this perl script on the xml file
 
<pre>
#!/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};
  $reporter = $item->{reporter}->{username};
  print "* {{jira|$key}} - $title - {{User|$reporter}}\n";
}
</pre>
*  Pick a reasonable cutoff point, and save the output

Revision as of 15:01, 17 May 2007


No agenda yet.

To generate a bug list:

#!/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};
  $reporter = $item->{reporter}->{username};
  print "* {{jira|$key}} - $title - {{User|$reporter}}\n";
}
  • Pick a reasonable cutoff point, and save the output