X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=lib%2FMaypole%2FView%2FTT.pm;h=59c3f8fe888388b26dbf969e14fadd6288c43ec6;hb=b6e2413ee413ce21b28429c05bbcc3f516a0754a;hp=042a1b5824da5e0cd16921c6da0920fa9386d78b;hpb=9def4d1b9f2f3dd6d2f0f789610954209b133703;p=maypole.git diff --git a/lib/Maypole/View/TT.pm b/lib/Maypole/View/TT.pm index 042a1b5..59c3f8f 100644 --- a/lib/Maypole/View/TT.pm +++ b/lib/Maypole/View/TT.pm @@ -10,13 +10,14 @@ our $VERSION = "1." . sprintf "%04d", q$Rev$ =~ /: (\d+)/; sub template { my ( $self, $r ) = @_; - my $view_options = $r->config->view_options || {}; - $self->{provider} ||= Template::Provider->new(); - $self->{tt} ||= Template->new({ - COMPILE_DIR => catdir(tmpdir(), $r->config->application_name), - %$view_options, - LOAD_TEMPLATES => [ $self->{provider} ], - }); + unless ($self->{tt}) { + my $view_options = $r->config->view_options || {}; + $self->{provider} = Template::Provider->new($view_options); + $self->{tt} = Template->new({ + %$view_options, + LOAD_TEMPLATES => [ $self->{provider} ], + }); + } $self->{provider}->include_path([ $self->paths($r) ]); @@ -49,14 +50,15 @@ Maypole::View::TT - A Template Toolkit view class for Maypole =head1 DESCRIPTION -This is the default view class for Maypole; it uses the Template Toolkit -to fill in templates with the objects produced by Maypole's model classes. -Please see the Maypole manual, and in particular, the C chapter, -for the template variables available and for a refresher on how template -components are resolved. +This is the default view class for Maypole; it uses the Template Toolkit to +fill in templates with the objects produced by Maypole's model classes. Please +see the L, and in particular, the +L chapter for the template variables available and +for a refresher on how template components are resolved. The underlying Template toolkit object is configured through -C<$r-Econfig-Eview_options>. See L