Make commit stat script recognize opensuse fate entries, too

Change-Id: Ia6b3e6459c5bda7ea24091024cf3dabd19746237
This commit is contained in:
Thorsten Behrens 2012-07-12 01:32:55 +02:00
parent 7a8a0127cd
commit 724b4eab1a

View file

@ -11,10 +11,11 @@ my $main_repo="core";
my @pieces=("binfilter", "dictionaries", "help", "translations");
my %bugzillas = (
fdo => "https://bugs.freedesktop.org/",
bnc => "https://bugzilla.novell.com/",
rhbz => "https://bugzilla.redhat.com/",
i => "https://issues.apache.org/ooo/",
fdo => "https://bugs.freedesktop.org/show_bug.cgi?id=",
bnc => "https://bugzilla.novell.com/show_bug.cgi?id=",
rhbz => "https://bugzilla.redhat.com/show_bug.cgi?id=",
i => "https://issues.apache.org/ooo/show_bug.cgi?id=",
fate => "https://features.opensuse.org/",
);
sub search_bugs($$$$)
@ -305,7 +306,7 @@ sub get_bug_name($$)
my $bug_number = $2; # 12345
if ( $bugzillas{$bugzilla} ) {
my $url = $bugzillas{$bugzilla} . "show_bug.cgi?id=" . $bug_number;
my $url = $bugzillas{$bugzilla} . $bug_number;
my $ua = LWP::UserAgent->new;
$ua->timeout(10);
$ua->env_proxy;