The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

  Apache::HTMLView -  Handling compiled HTMLView-fmt's as a mod_perl module in Apache

VERSION

        $Revision: 0.91 $

SYNOPSIS

In httpd.conf:

 # HTMLView
 PerlSetVar name_fmtpath /var/www/fmt
 PerlSetVar name_DBIstr "DBI:mysql:dbname"
 PerlSetVar name_DBI_User "user"
 PerlSetVar name_DBI_Password "Password"


 # Load this after the vars are set
 PerlModule Apache::HTMLView

 <Location /fmt>
 PerlSetVar Name name
 SetHandler perl-script  
 PerlHandler Apache::HTMLView
 </Location>

DESCRIPTION

This module loads compiled fmt's from the dir name_fmtpath and runs as a mod_perl module. It also loads all actions in that dir. It is possible to have many diffrent dirs with fmt's, just have diffrent names for them: name1_fmtpath, name2_fmtpath...

This module uses Apache::DBI to cache database connections and evals fmt's and actions at startup. All to inprove speed.

For information about actions and fmt's, see DBIx::HTMLView.