Hello,
Can i access variables which are defined for TT from apache/mod_perl
handler? Let's say i define a hash in config/conf file and in handler i do
this:
my $template = Template->new({
OUTPUT => $r,
PRE_PROCESS => "$troot/config/conf",
});
So is there a way to view/manipulate this data that I (i mean
Template->new) PRE_PROCESS'ed before i call $template->process. I don't
want to define this hash in handler and i don't want to manipulate it from
template too. So and help is welcome :)
Rgds,
Viljo