summaryrefslogtreecommitdiffstats
path: root/collectstats.pl
diff options
context:
space:
mode:
authorcyeh%bluemartini.com <>2000-06-24 03:59:48 +0200
committercyeh%bluemartini.com <>2000-06-24 03:59:48 +0200
commit7661b31a73a3c4c6bef8cac5cdb2edaf3d955ae0 (patch)
treefd63303a2c8e82ccbff8e5732bd1dc4b06f961f1 /collectstats.pl
parent8eb2d6ffa3b01ff437f1726fb17b0a326ede653d (diff)
downloadbugzilla-7661b31a73a3c4c6bef8cac5cdb2edaf3d955ae0.tar.gz
bugzilla-7661b31a73a3c4c6bef8cac5cdb2edaf3d955ae0.tar.xz
committing to close bug 6682 "Chart all bug states". patches
contributed by mhamby@logicon.com
Diffstat (limited to 'collectstats.pl')
-rwxr-xr-xcollectstats.pl11
1 files changed, 8 insertions, 3 deletions
diff --git a/collectstats.pl b/collectstats.pl
index a1b9885a7..4789440dd 100755
--- a/collectstats.pl
+++ b/collectstats.pl
@@ -25,7 +25,8 @@
use diagnostics;
use strict;
-use vars @::legal_product;
+use vars @::legal_product,
+ @::legal_bug_status;
require "globals.pl";
@@ -64,7 +65,7 @@ sub collect_stats {
if (open DATA, ">>$file") {
push my @row, &today;
- foreach my $status ('NEW', 'ASSIGNED', 'REOPENED') {
+ foreach my $status (@::legal_bug_status) {
if( $product eq "-All-" ) {
SendSQL("select count(bug_status) from bugs where bug_status='$status'");
} else {
@@ -80,10 +81,14 @@ sub collect_stats {
#
# do not edit me! this file is generated.
#
-# fields: date|new|assigned|reopened
# product: $product
# created: $when
FIN
+ print DATA "# field: DATE";
+ foreach my $status (@::legal_bug_status) {
+ print DATA "|$status";
+ }
+ print DATA "\n";
}
print DATA (join '|', @row) . "\n";