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/handler.pl | |
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/handler.pl')
-rw-r--r-- | htetc/handler.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/htetc/handler.pl b/htetc/handler.pl index f115104b1..f41db36ec 100644 --- a/htetc/handler.pl +++ b/htetc/handler.pl @@ -97,11 +97,14 @@ sub handler 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; |