1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
package Bundle::Apache::ASP::Extra;
$VERSION = '1.03';
1;
__END__
=head1 NAME
Bundle::Apache::ASP::Extra - Install modules that provide additional functionality to Apache::ASP
=head1 SYNOPSIS
perl -MCPAN -e 'install Bundle::Apache::ASP::Extra'
=head1 CONTENTS
Bundle::Apache::ASP - Base for Apache::ASP installation
CGI - Required for file upload, make test, and command line ./cgi/asp script
HTML::Parser - Required for HTML::FillInForm
HTML::Clean - Compress text/html with Clean config or $Response->{Clean} set to 1-9
Net::SMTP - Runtime errors can be mailed to the webmaster with MailErrorTo config
Devel::Symdump - Used for StatINC setting, which reloads modules dynamically
Apache::DBI - Cache database connections per process
Compress::Zlib - Gzip compress HTML output on the fly
Time::HiRes - Sub second timing of execution with Debug 3 or -3 enabled
HTML::FillInForm - FormFill functionality which autofills HTML forms from form data
HTML::SimpleParse - Required for SSI filtering with Apache::SSI
XML::XSLT - Required for XSLT support. May also use XML::Sablotron and XML::LibXSLT for this, which are not part of this bundle.
=head1 DESCRIPTION
This bundle contains extra modules used by Apache::ASP.
=head1 AUTHOR
Joshua Chamas
|