diff options
author | ivan <ivan> | 2005-03-06 03:04:29 +0000 |
---|---|---|
committer | ivan <ivan> | 2005-03-06 03:04:29 +0000 |
commit | 34647c32b50ce3b8ee1b6d3d7aef4ba9d0297bdb (patch) | |
tree | faf2226212cf421ffc5d7c998f9eab9ed2ef9216 /htetc/global.asa | |
parent | f34557b8890dcc63db6c5588233dc7bfa9d39f22 (diff) |
add Excel and CSV download of templated reports and clean up their HTML formatting, closes; Bug#520, Bug#1107
Diffstat (limited to 'htetc/global.asa')
-rw-r--r-- | htetc/global.asa | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/htetc/global.asa b/htetc/global.asa index 482572a80..ed26057ea 100644 --- a/htetc/global.asa +++ b/htetc/global.asa @@ -14,11 +14,14 @@ use Tie::IxHash; use HTML::Entities; use IO::Handle; use IO::File; +use IO::Scalar; use Net::Whois::Raw qw(whois); if ( $] < 5.006 ) { eval "use Net::Whois::Raw 0.32 qw(whois)"; die $@ if $@; } +use Text::CSV_XS; +use Spreadsheet::WriteExcel; use Business::CreditCard; use String::Approx qw(amatch); use Chart::LinesPoints; |