I don't think so. I'm pretty sure it's possible, using
mod_perl, in versions less than 2.0. Although you may be
right that the support for *module* chaining (as opposed
to stacked Perl handlers) comes with 2.0.
There's a module called Apache::OutputChain, and there's
another called Apache::Filter. Both do sort of the same
thing: they let you chain together several modules, with
each successive module being able to write to/affect STDOUT.
The OP should probably take a look at these modules. In
particular, Apache::Filter might work for him, in combination
with Apache::SSI. Something like this in httpd.conf:
PerlModule Apache::Filter;
<Files /foo>
SetHandler perl-script
PerlSetVar Filter On
PerlHandler YourModule Apache::SSI
</Files>
In YourModule, just print to STDOUT (or $r->print, I suppose).
This output will be filtered through Apache::SSI, which
(I believe) should fill in the includes.
Mind you, I've never done this myself.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.