On Wed, 26 Mar 2003, Jody Biggs wrote:
> Hey - Sam - just ran into the same issue myself (and thought, hey -
> I'll search the archive to see if I can find an answer). Can we add
> this to the docs in the output section where it mentions the print_to
> option? I'm sure there's lots of other folk
Hey - Sam - just ran into the same issue myself (and thought, hey -
I'll search the archive to see if I can find an answer). Can we add
this to the docs in the output section where it mentions the print_to
option? I'm sure there's lots of other folks who use H::T with
mod_perl...
just a thought
Yesterday Narins, Josh wrote:
> I _think_ you can
>
> tie *YOURGLOB, 'Apache';
> $self->output(print_to => *YOURGLOB);
>
> Let me know if that works,
Yes -- that works a treat!
Thanks very much.
Smylers
--
GBdirect
http://www.gbdirect.co.uk/
-
plate users
Subject: [htmltmpl] mod_perl and print_to
I have some HTML::Template-using code which runs happily enough in
CGI::Scripts to generate webpages.
Following the suggestion in the docs for speed and efficiency, pages are
emitted using print_to, like so:
$self->output(print_to =
I have some HTML::Template-using code which runs happily enough in
CGI::Scripts to generate webpages.
Following the suggestion in the docs for speed and efficiency, pages are
emitted using print_to, like so:
$self->output(print_to => *STDOUT);
Today I'm trying to get the site running under mod