Template:Bug List Instructions
Revision as of 15:11, 17 May 2007 by Rob Linden (talk | contribs)
To generate a bug list:
- Save a copy of the XML file for "Bugs, sorted by LL ID"
- Run this perl script on the xml file
#!/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