]> git.donarmstrong.com Git - bugscan.git/blobdiff - bugreport
use open_compresed file and give more output when scanlib fails
[bugscan.git] / bugreport
index 1fe0ffa24e1d9a331edb085e500f2ccb22c643e9..b68a6c65bbba7e644beb68512d177e74b0a9fba9 100755 (executable)
--- a/bugreport
+++ b/bugreport
@@ -136,6 +136,7 @@ sub MakeStatistics {
        my $ignoretotal=0;      # Total number of bugs marked ignore
        my $worrytotal=0;       # Total number of bugs we're actually worried about
        my $stabletotal=0;      # Total number of bugs affecting stable
+    my $oldstabletotal=0; # Total number of bugs affecting oldstable
        my %list;               # List of bugnumber associated with package
         my %seen_bugs;          # bugs which have already been counted
 
@@ -159,13 +160,13 @@ sub MakeStatistics {
        }
 
        if ($html) {
-               print "<strong><font color=\"red\">Total number of release-critical bugs</font>:</strong> $bugcount<BR>\n";
+               print "<strong><font color=\"#9400D3\">Total number of release-critical bugs</font>:</strong> $bugcount<BR>\n";
                printf("<strong>Number that have a patch:</strong> %d<BR>\n", $patchtotal);
                printf("<strong>Number that have a fix prepared and waiting to upload:</strong> %d<BR>\n", $pendingtotal);
                printf("<strong>Number that are being ignored:</strong> %d<BR>\n", $ignoretotal);
-               printf("<strong><font color=\"blue\">Number concerning the current stable release</font>:</strong> %d<BR>\n", $stabletotal);
-               printf("<strong><font color=\"green\">Number concerning the next release</font>:</strong> %d<P>\n", $worrytotal);
-               printf("<strong><font color=\"green\">Number concerning the previous stable release</font>:</strong> %d<P>\n", $oldstabletotal);
+               printf("<strong><font color=\"#56b4e9\">Number concerning the current stable release</font>:</strong> %d<BR>\n", $stabletotal);
+               printf("<strong><font color=\"#009e73\">Number concerning the next release</font>:</strong> %d<P>\n", $worrytotal);
+               printf("<strong><font color=\"#e69f00\">Number concerning the previous stable release</font>:</strong> %d<P>\n", $oldstabletotal);
        } else {
                print "Total number of release-critical bugs: $bugcount\n";
                printf("Number that have a patch: %d\n", $patchtotal);
@@ -199,7 +200,7 @@ sub FilterBugsStable() {
                $scanlib::packagelist{$p} = [ grep { scanlib::check_worry_stable($scanlib::bugs{$_}) } @{$scanlib::packagelist{$p}} ];
                delete $scanlib::packagelist{$p} if (scalar @{$scanlib::packagelist{$p}} == 0);
        }
-
+}
 sub FilterBugsOldStable() {
        for my $p (sort keys %scanlib::packagelist) {
                $scanlib::packagelist{$p} = [ grep { scanlib::check_worry_oldstable($scanlib::bugs{$_}) } @{$scanlib::packagelist{$p}} ];