]> git.decadent.org.uk Git - maypole.git/blobdiff - lib/Maypole/View/TT.pm
POD updates: fleshed out some weak areas, reorganised a little and fixed some typogra...
[maypole.git] / lib / Maypole / View / TT.pm
index 40fa5651dcc9480db76f856e5f1a0a40e8aeb44b..59c3f8fe888388b26dbf969e14fadd6288c43ec6 100644 (file)
@@ -12,14 +12,8 @@ sub template {
 
     unless ($self->{tt}) {
         my $view_options = $r->config->view_options || {};
-        (my $driver_name = ref $r) =~ s/::/_/g;
-        my $compile_dir  = catdir(tmpdir(), $driver_name);
-        $self->{provider} = Template::Provider->new(
-            COMPILE_DIR    => $compile_dir,
-            %$view_options,
-        );
+        $self->{provider} = Template::Provider->new($view_options);
         $self->{tt}       = Template->new({
-            COMPILE_DIR    => $compile_dir,
             %$view_options,
             LOAD_TEMPLATES => [ $self->{provider} ],
         });
@@ -56,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<View> 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<Maypole manual|Maypole::Manual>, and in particular, the
+L<view|Maypole::Manual::View> 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-E<gt>config-E<gt>view_options>. See L<Template> for available options.
+C<$r-E<gt>config-E<gt>view_options>. See L<Template|Template> for available
+options.
 
 =over 4