File: README

package info (click to toggle)
libapache-ssi-perl 2.09-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 272 kB
  • ctags: 36
  • sloc: perl: 1,829
file content (30 lines) | stat: -rw-r--r-- 1,006 bytes parent folder | download
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
Hi,

This is the Apache::SSI module.  

Apache::SSI implements the functionality of mod_include for handling
server-parsed html documents.  It is meant to run under Apache's mod_perl.  

In my mind, there are two main reasons one might want to use this module:
you can sub-class it to implement your own custom SSI directives, and/or you
can use an OutputChain to get the SSI output first, then send it through
another PerlHandler.

For more specific information, please see the documentation inside SSI.pm,
by doing "pod2txt SSI.pm", or "perldoc Apache::SSI" once you've installed
the module.

To install the module:

   <make sure mod_perl and HTML::SimpleParse.pm are installed>
   perl Makefile.PL
   make
   make test
   make install

Note that mod_perl and HTML::SimpleParse must already be installed before
you install this module.  When you do "perl Makefile.PL", you'll be notified
if you don't have one or the other (for mod_perl, I check whether
Apache::Constants.pm is present).

-Ken Williams