Re: [htmltmpl] mod_perl and print_to

2003-04-05 Thread Sam Tregar
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

Re: [htmltmpl] mod_perl and print_to

2003-03-26 Thread Jody Biggs
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

Re: [htmltmpl] mod_perl and print_to

2002-12-07 Thread Smylers
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/ -

RE: [htmltmpl] mod_perl and print_to

2002-12-06 Thread Narins, Josh
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 =

[htmltmpl] mod_perl and print_to

2002-12-06 Thread Smylers
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