mod_xmlns adds XML Namespace support to Apache, and may form the basis
of XML-driven publishing systems. It runs as an output filter, so it
works automatically with any content generator.
Apache::AuthCookie allows you to intercept a user's first
unauthenticated access to a protected document. The user will be
presented with a custom form where they can enter authentication
credentials. The credentials are posted to the server where AuthCookie
verifies them and returns a session key.
Apache::AuthTicket* modules implement a cookie-based authentication system
similar to the ticket access system describde in the mod_perl eagle book.
Apache::Clean uses HTML::Clean to tidy up large, messy HTML, saving
bandwidth. It is particularly useful with Apache::Compress for
ultimate savings.
The Apache::ConfigParser module is used to load an Apache configuration
file to allow programs to determine Apache's configuration directives and
contexts. The resulting object contains a tree based structure using the
Apache::ConfigParser::Directive class, which is a subclass of
Tree::DAG_node, so all of the methods that enable tree based searches and
modifications from Tree::DAG_Node are also available. The tree structure
is used to represent the ability to nest sections, such as <VirtualHost>,
<Directory>, etc.
Apache does a great job of checking Apache configuration files for errors
and this modules leaves most of that to Apache. This module does minimal
configuration file checking. The module currently checks for:
Start and end context names match
The module checks if the start and end context names match. If the end
context name does not match the start context name, then it is ignored.
The module does not even check if the configuration contexts have valid
names.
This package provides debugging and profiling tools for mod_perl:
Apache::DB - Hooks for the interactive Perl debugger
Apache::DProf - Hooks for Devel::DProf
Apache::SmallProf - Hooks for Devel::SmallProf
These modules are supposed to be used with the Apache server together
with an embedded perl interpreter like mod_perl. They provide support
for basic authentication and authorization as well as support for
persistent database connections via Perl's Database Independent
Interface (DBI).
o AuthDBI.pm provides authentication and authorization:
- optional shared cache for passwords to minimize database load -
configurable cleanup-handler deletes outdated entries from the cache
o DBI.pm provides persistent database connections:
- connections can be established during server-startup - configurable
rollback to ensure data integrity - configurable verification of the
connections to avoid time-outs.
Apache::Gallery creates an thumbnail index of each directory and
allows viewing pictures in different resolutions. Pictures are
resized on the fly and cached.
Compile a log format string to perl-code. For faster generating
access_log line.