X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2FMaypole%2FView%2FTT.pm;h=042a1b5824da5e0cd16921c6da0920fa9386d78b;hb=9def4d1b9f2f3dd6d2f0f789610954209b133703;hp=21e2485b794a7d3a3fe6f5b694b4aa58a7b1de14;hpb=8b7434d8323a8191b3c19cf65d2c0138c447d96d;p=maypole.git diff --git a/lib/Maypole/View/TT.pm b/lib/Maypole/View/TT.pm index 21e2485..042a1b5 100644 --- a/lib/Maypole/View/TT.pm +++ b/lib/Maypole/View/TT.pm @@ -2,17 +2,31 @@ package Maypole::View::TT; use base 'Maypole::View::Base'; use Maypole::Constants; use Template; +use File::Spec::Functions qw(catdir tmpdir); + +use strict; +our $VERSION = "1." . sprintf "%04d", q$Rev$ =~ /: (\d+)/; sub template { my ( $self, $r ) = @_; - my $template = Template->new( { INCLUDE_PATH => [ $self->paths($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} ], + }); + + $self->{provider}->include_path([ $self->paths($r) ]); + my $output; - if ( $template->process( $r->template, { $self->vars($r) }, \$output ) ) { + if ($self->{tt}->process( $r->template, { $self->vars($r) }, \$output )) { $r->{output} = $output; return OK; } else { - $r->{error} = $template->error; + $r->{error} = $self->{tt}->error; return ERROR; } } @@ -27,6 +41,12 @@ Maypole::View::TT - A Template Toolkit view class for Maypole BeerDB->config->view("Maypole::View::TT"); # The default anyway + # Set some Template Toolkit options + BeerDB->config->view_options( { + TRIM => 1, + COMPILE_DIR => '/var/tmp/mysite/templates', + } ); + =head1 DESCRIPTION This is the default view class for Maypole; it uses the Template Toolkit @@ -35,11 +55,13 @@ 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. +The underlying Template toolkit object is configured through +C<$r-Econfig-Eview_options>. See L