adelton

Apache::MakeCapital

Convert server output to uppercase

Synopsis

In the conf/access.conf file of your Apache installation, add lines like

<Files *.html>
SetHandler perl-script
PerlHandler Apache::OutputChain Apache::MakeCapital Apache::PassHtml
</Files>

Description

This is a module to show the use of module Apache::OutputChain. The function handler simply inserts this module into the chain, calling

Apache::OutputChain::handler($r, __PACKAGE__);

This is the initialization stage. The second parameter in the call to Apache::OutputChain::handler must be a name of this class, so that Apache::OutputChain will know, whom to put into the chain.

The package also must define function PRINT, that will be called in the chain. In this example, it capitalized all output being sent. It will mess up the links (A HREF's) so is really just for illustration ;-)

Author

(c) 1997--1998 Jan Pazdziora, jpx (dash) perl (at) adelton (dot) com, http://www.adelton.com/perl/ Brno, Czech Republic