New bugzilla status whiteboard / issues.txt

Pekka Savola pekkas at netcore.fi
Sun May 1 06:36:57 UTC 2005


Hi,

On Tue, 12 Apr 2005, Dominic Hargreaves wrote:
> I've transferred all the information from issues.txt into the status
> whiteboard at bugzilla.redhat.com.
>
> The tags I've used are as follows, they should all be self-explanatory:
>
> NEEDSWORK (retain from bugzilla.fedora.us)
> discussion
> publish-rhl73
> publish-rhl9
> publish-core1
> publish-fc2
> verify-rhl73
> verify-rhl9
> verify-core1
> verify-fc2
> needsbuild
> needsrelease

I got a bit bored at looking at the tinyurls and having to surf them 
back and forth looking for stuff that I could help with; having just 
one page which would include all the relevant information would be 
good.

Hence, I hacked up two scripts to fetch the information from bugzilla 
and merge it on one page. See for example:

http://netcore.fi/pekkas/buglist.html

The scripts are attached.

Maybe someone can clean the output a bit (if needed) and run them 
regularly somewhere ?  "All packages needing new packages" certainly 
looks a bit redundant..


-- 
Pekka Savola                 "You each name yourselves king, yet the
Netcore Oy                    kingdom bleeds."
Systems. Networks. Security. -- George R.R. Martin: A Clash of Kings
-------------- next part --------------
A non-text attachment was scrubbed...
Name: create-buglist.sh
Type: application/x-sh
Size: 1691 bytes
Desc: 
URL: <http://listman.redhat.com/archives/fedora-legacy-list/attachments/20050501/73dc32b8/attachment.sh>
-------------- next part --------------
#!/usr/bin/perl

$inputfile='-';
$match_buglist=0;

open(FILE, $inputfile) || die "Can't open $inputfile: $!\n";
while(<FILE>) {
  $match_buglist=1 if (/table class=/ && $match_buglist != -1);
  next unless $match_buglist eq 1;
  $match_buglist=-1 if /<\/table>/;
  print;
}


More information about the fedora-legacy-list mailing list