Clean up, more modern advice
[catagits/Catalyst-View-TT.git] / lib / Catalyst / View / TT.pm
CommitLineData
8077080c 1package Catalyst::View::TT;
2
3use strict;
6229ce0d 4use warnings;
5
7d8aa5ec 6use base qw/Catalyst::View/;
9e739e1e 7use Data::Dump 'dump';
8077080c 8use Template;
9use Template::Timer;
e8693f1b 10use MRO::Compat;
4a70bc59 11use Scalar::Util qw/blessed weaken/;
8077080c 12
26d5760a 13our $VERSION = '0.37';
85ea459d 14$VERSION = eval $VERSION;
8077080c 15
16__PACKAGE__->mk_accessors('template');
46cdc47d 17__PACKAGE__->mk_accessors('expose_methods');
e2bbd784 18__PACKAGE__->mk_accessors('include_path');
8077080c 19
9d574573 20*paths = \&include_path;
21
8077080c 22=head1 NAME
23
24Catalyst::View::TT - Template View Class
25
26=head1 SYNOPSIS
27
bd4ee63a 28# use the helper to create your View
ad50568f 29
226c1dd3 30 myapp_create.pl view Web TT
8077080c 31
226c1dd3 32# add custom configration in View/Web.pm
8cd017a8 33
940a2e8a 34 __PACKAGE__->config(
226c1dd3 35 # any TT configuration items go here
36 INCLUDE_PATH => [
37 MyApp->path_to( 'root', 'src' ),
38 MyApp->path_to( 'root', 'lib' ),
39 ],
40 TEMPLATE_EXTENSION => '.tt',
41 CATALYST_VAR => 'c',
42 TIMER => 0,
43 # Not set by default
44 PRE_PROCESS => 'config/main',
45 WRAPPER => 'site/wrapper',
46 render_die => 1, # Default for new apps, see render method docs
a6fa99df 47 expose_methods => [qw/method_in_view_class/],
ae035767 48 );
f5b61ad7 49
6229ce0d 50# render view from lib/MyApp.pm or lib/MyApp::Controller::SomeController.pm
f5b61ad7 51
8cd017a8 52 sub message : Global {
94b3529a 53 my ( $self, $c ) = @_;
54 $c->stash->{template} = 'message.tt2';
55 $c->stash->{message} = 'Hello World!';
226c1dd3 56 $c->forward( $c->view('Web') );
8cd017a8 57 }
8077080c 58
8cd017a8 59# access variables from template
60
61 The message is: [% message %].
f5b61ad7 62
8cd017a8 63 # example when CATALYST_VAR is set to 'Catalyst'
f5b61ad7 64 Context is [% Catalyst %]
65 The base is [% Catalyst.req.base %]
66 The name is [% Catalyst.config.name %]
67
8cd017a8 68 # example when CATALYST_VAR isn't set
69 Context is [% c %]
70 The base is [% base %]
71 The name is [% name %]
72
bd4ee63a 73=cut
74
75sub _coerce_paths {
76 my ( $paths, $dlim ) = shift;
77 return () if ( !$paths );
78 return @{$paths} if ( ref $paths eq 'ARRAY' );
79
80 # tweak delim to ignore C:/
81 unless ( defined $dlim ) {
82 $dlim = ( $^O eq 'MSWin32' ) ? ':(?!\\/)' : ':';
83 }
84 return split( /$dlim/, $paths );
85}
86
87sub new {
88 my ( $class, $c, $arguments ) = @_;
89 my $config = {
90 EVAL_PERL => 0,
91 TEMPLATE_EXTENSION => '',
7bd88b61 92 CLASS => 'Template',
bd4ee63a 93 %{ $class->config },
94 %{$arguments},
95 };
96 if ( ! (ref $config->{INCLUDE_PATH} eq 'ARRAY') ) {
97 my $delim = $config->{DELIMITER};
98 my @include_path
99 = _coerce_paths( $config->{INCLUDE_PATH}, $delim );
100 if ( !@include_path ) {
101 my $root = $c->config->{root};
102 my $base = Path::Class::dir( $root, 'base' );
103 @include_path = ( "$root", "$base" );
104 }
105 $config->{INCLUDE_PATH} = \@include_path;
106 }
107
108 # if we're debugging and/or the TIMER option is set, then we install
109 # Template::Timer as a custom CONTEXT object, but only if we haven't
110 # already got a custom CONTEXT defined
111
112 if ( $config->{TIMER} ) {
113 if ( $config->{CONTEXT} ) {
114 $c->log->error(
115 'Cannot use Template::Timer - a TT CONTEXT is already defined'
116 );
117 }
118 else {
119 $config->{CONTEXT} = Template::Timer->new(%$config);
120 }
121 }
122
123 if ( $c->debug && $config->{DUMP_CONFIG} ) {
9e739e1e 124 $c->log->debug( "TT Config: ", dump($config) );
bd4ee63a 125 }
6175bba7 126
e8693f1b 127 my $self = $class->next::method(
f5b61ad7 128 $c, { %$config },
6175bba7 129 );
130
131 # Set base include paths. Local'd in render if needed
132 $self->include_path($config->{INCLUDE_PATH});
f5b61ad7 133
46cdc47d 134 $self->expose_methods($config->{expose_methods});
6175bba7 135 $self->config($config);
136
137 # Creation of template outside of call to new so that we can pass [ $self ]
138 # as INCLUDE_PATH config item, which then gets ->paths() called to get list
139 # of include paths to search for templates.
f5b61ad7 140
6175bba7 141 # Use a weakend copy of self so we dont have loops preventing GC from working
142 my $copy = $self;
143 Scalar::Util::weaken($copy);
144 $config->{INCLUDE_PATH} = [ sub { $copy->paths } ];
145
bd4ee63a 146 if ( $config->{PROVIDERS} ) {
147 my @providers = ();
148 if ( ref($config->{PROVIDERS}) eq 'ARRAY') {
149 foreach my $p (@{$config->{PROVIDERS}}) {
150 my $pname = $p->{name};
151 my $prov = 'Template::Provider';
152 if($pname eq '_file_')
153 {
154 $p->{args} = { %$config };
155 }
156 else
157 {
51199593 158 if($pname =~ s/^\+//) {
159 $prov = $pname;
160 }
161 else
162 {
163 $prov .= "::$pname";
164 }
6175bba7 165 # We copy the args people want from the config
166 # to the args
167 $p->{args} ||= {};
168 if ($p->{copy_config}) {
169 map { $p->{args}->{$_} = $config->{$_} }
170 grep { exists $config->{$_} }
171 @{ $p->{copy_config} };
172 }
bd4ee63a 173 }
fc0ffed0 174 local $@;
bd4ee63a 175 eval "require $prov";
176 if(!$@) {
177 push @providers, "$prov"->new($p->{args});
178 }
179 else
180 {
181 $c->log->warn("Can't load $prov, ($@)");
182 }
183 }
184 }
185 delete $config->{PROVIDERS};
186 if(@providers) {
187 $config->{LOAD_TEMPLATES} = \@providers;
188 }
189 }
f5b61ad7 190
191 $self->{template} =
7bd88b61 192 $config->{CLASS}->new($config) || do {
193 my $error = $config->{CLASS}->error();
bd4ee63a 194 $c->log->error($error);
195 $c->error($error);
196 return undef;
197 };
198
199
200 return $self;
201}
202
203sub process {
204 my ( $self, $c ) = @_;
205
206 my $template = $c->stash->{template}
207 || $c->action . $self->config->{TEMPLATE_EXTENSION};
208
209 unless (defined $template) {
210 $c->log->debug('No template specified for rendering') if $c->debug;
211 return 0;
212 }
213
fc0ffed0 214 local $@;
cad820fe 215 my $output = eval { $self->render($c, $template) };
216 if (my $err = $@) {
c5c3c6bd 217 return $self->_rendering_error($c, $template . ': ' . $err);
316f014a 218 }
219 if (blessed($output) && $output->isa('Template::Exception')) {
220 $self->_rendering_error($c, $output);
bd4ee63a 221 }
222
223 unless ( $c->response->content_type ) {
224 $c->response->content_type('text/html; charset=utf-8');
225 }
226
227 $c->response->body($output);
228
229 return 1;
230}
231
316f014a 232sub _rendering_error {
233 my ($self, $c, $err) = @_;
234 my $error = qq/Couldn't render template "$err"/;
235 $c->log->error($error);
236 $c->error($error);
237 return 0;
238}
239
bd4ee63a 240sub render {
241 my ($self, $c, $template, $args) = @_;
242
cbb149dc 243 $c->log->debug(qq/Rendering template "$template"/) if $c && $c->debug;
bd4ee63a 244
245 my $output;
f5b61ad7 246 my $vars = {
bd4ee63a 247 (ref $args eq 'HASH' ? %$args : %{ $c->stash() }),
248 $self->template_vars($c)
249 };
250
f5b61ad7 251 local $self->{include_path} =
bd4ee63a 252 [ @{ $vars->{additional_template_paths} }, @{ $self->{include_path} } ]
253 if ref $vars->{additional_template_paths};
254
596ff245 255 unless ( $self->template->process( $template, $vars, \$output ) ) {
256 if (exists $self->{render_die}) {
257 die $self->template->error if $self->{render_die};
258 return $self->template->error;
259 }
131a8e59 260 $c->log->debug('The Catalyst::View::TT render() method will start dying on error in a future release. Unless you are calling the render() method manually, you probably want the new behaviour, so set render_die => 1 in config for ' . blessed($self) . '. If you wish to continue to return the exception rather than throwing it, add render_die => 0 to your config.') if $c->debug;
596ff245 261 return $self->template->error;
262 }
cad820fe 263 return $output;
bd4ee63a 264}
265
266sub template_vars {
267 my ( $self, $c ) = @_;
268
cbb149dc 269 return () unless $c;
bd4ee63a 270 my $cvar = $self->config->{CATALYST_VAR};
271
a6fa99df 272 my %vars = defined $cvar
bd4ee63a 273 ? ( $cvar => $c )
274 : (
275 c => $c,
276 base => $c->req->base,
277 name => $c->config->{name}
a6fa99df 278 );
279
46cdc47d 280 if ($self->expose_methods) {
a6fa99df 281 my $meta = $self->meta;
46cdc47d 282 foreach my $method_name (@{$self->expose_methods}) {
1cb1d672 283 my $method = $meta->find_method_by_name( $method_name );
a6fa99df 284 unless ($method) {
285 Catalyst::Exception->throw( "$method_name not found in TT view" );
286 }
287 my $method_body = $method->body;
4a70bc59 288 my $weak_ctx = $c;
289 weaken $weak_ctx;
a6fa99df 290 my $sub = sub {
4a70bc59 291 $self->$method_body($weak_ctx, @_);
a6fa99df 292 };
293 $vars{$method_name} = $sub;
294 }
295 }
296 return %vars;
bd4ee63a 297}
298
bd4ee63a 2991;
300
301__END__
302
8cd017a8 303=head1 DESCRIPTION
304
305This is the Catalyst view class for the L<Template Toolkit|Template>.
306Your application should defined a view class which is a subclass of
226c1dd3 307this module. Throughout this manual it will be assumed that your application
308is named F<MyApp> and you are creating a TT view named F<Web>; these names
309are placeholders and should always be replaced with whatever name you've
310chosen for your application and your view. The easiest way to create a TT
311view class is through the F<myapp_create.pl> script that is created along
312with the application:
8cd017a8 313
226c1dd3 314 $ script/myapp_create.pl view Web TT
8cd017a8 315
226c1dd3 316This creates a F<MyApp::View::Web.pm> module in the F<lib> directory (again,
8cd017a8 317replacing C<MyApp> with the name of your application) which looks
318something like this:
319
226c1dd3 320 package FooBar::View::Web;
f5b61ad7 321
8cd017a8 322 use strict;
c18eae32 323 use warnings;
f5b61ad7 324
c18eae32 325 use base 'Catalyst::View::TT';
8077080c 326
a1b7968f 327 __PACKAGE__->config(DEBUG => 'all');
8077080c 328
8cd017a8 329Now you can modify your action handlers in the main application and/or
330controllers to forward to your view class. You might choose to do this
331in the end() method, for example, to automatically forward all actions
332to the TT view class.
722fede4 333
8cd017a8 334 # In MyApp or MyApp::Controller::SomeController
f5b61ad7 335
8cd017a8 336 sub end : Private {
94b3529a 337 my( $self, $c ) = @_;
226c1dd3 338 $c->forward( $c->view('Web') );
8cd017a8 339 }
8077080c 340
2844488f 341But if you are using the standard auto-generated end action, you don't even need
342to do this!
343
344 # in MyApp::Controller::Root
345 sub end : ActionClass('RenderView') {} # no need to change this line
346
347 # in MyApp.pm
348 __PACKAGE__->config(
349 ...
226c1dd3 350 default_view => 'Web',
2844488f 351 );
352
353This will Just Work. And it has the advantages that:
354
355=over 4
356
357=item *
358
359If you want to use a different view for a given request, just set
360<< $c->stash->{current_view} >>. (See L<Catalyst>'s C<< $c->view >> method
361for details.
362
363=item *
364
365<< $c->res->redirect >> is handled by default. If you just forward to
226c1dd3 366C<View::Web> in your C<end> routine, you could break this by sending additional
2844488f 367content.
368
369=back
370
371See L<Catalyst::Action::RenderView> for more details.
372
8cd017a8 373=head2 CONFIGURATION
4687ac0d 374
8cd017a8 375There are a three different ways to configure your view class. The
376first way is to call the C<config()> method in the view subclass. This
377happens when the module is first loaded.
8077080c 378
226c1dd3 379 package MyApp::View::Web;
adb2ce78 380 use Moose;
381 extends 'Catalyst::View::TT';
722fede4 382
226c1dd3 383 __PACKAGE__->config({
8cd017a8 384 PRE_PROCESS => 'config/main',
385 WRAPPER => 'site/wrapper',
386 });
387
226c1dd3 388You may also override the configuration provided in the view class by adding
adb2ce78 389a 'View::Web' section to your application config.
390
391This should generally be used to inject the include paths into the view to
392avoid the view trying to load the application to resolve paths.
393
394 .. inside MyApp.pm ..
395 __PACKAGE__->config(
396 'View::Web' => {
397 INCLUDE_PATH => [
398 __PACKAGE__->path_to( 'root', 'templates', 'lib' ),
399 __PACKAGE__->path_to( 'root', 'templates', 'src' ),
400 ],
401 },
402 );
403
404You can also configure your view from within your config file if you're
405using L<Catalyst::Plugin::ConfigLoader>. This should be reserved for
226c1dd3 406deployment-specific concerns. For example:
8cd017a8 407
226c1dd3 408 # MyApp_local.conf (Config::General format)
f5b61ad7 409
226c1dd3 410 <View Web>
411 WRAPPER "custom_wrapper"
412 INCLUDE_PATH __path_to('root/templates/custom_site')__
413 INCLUDE_PATH __path_to('root/templates')__
414 </View>
8cd017a8 415
226c1dd3 416might be used as part of a simple way to deploy different instances of the
417same application with different themes.
8cd017a8 418
e2bbd784 419=head2 DYNAMIC INCLUDE_PATH
420
f7dfca06 421Sometimes it is desirable to modify INCLUDE_PATH for your templates at run time.
f5b61ad7 422
f7dfca06 423Additional paths can be added to the start of INCLUDE_PATH via the stash as
424follows:
425
426 $c->stash->{additional_template_paths} =
427 [$c->config->{root} . '/test_include_path'];
428
429If you need to add paths to the end of INCLUDE_PATH, there is also an
430include_path() accessor available:
431
226c1dd3 432 push( @{ $c->view('Web')->include_path }, qw/path/ );
f7dfca06 433
434Note that if you use include_path() to add extra paths to INCLUDE_PATH, you
435MUST check for duplicate paths. Without such checking, the above code will add
436"path" to INCLUDE_PATH at every request, causing a memory leak.
437
438A safer approach is to use include_path() to overwrite the array of paths
439rather than adding to it. This eliminates both the need to perform duplicate
440checking and the chance of a memory leak:
e2bbd784 441
226c1dd3 442 @{ $c->view('Web')->include_path } = qw/path another_path/;
e2bbd784 443
f5b61ad7 444If you are calling C<render> directly then you can specify dynamic paths by
9d574573 445having a C<additional_template_paths> key with a value of additonal directories
1bc9fc55 446to search. See L<CAPTURING TEMPLATE OUTPUT> for an example showing this.
447
8cd017a8 448=head2 RENDERING VIEWS
449
450The view plugin renders the template specified in the C<template>
f5b61ad7 451item in the stash.
8cd017a8 452
453 sub message : Global {
94b3529a 454 my ( $self, $c ) = @_;
455 $c->stash->{template} = 'message.tt2';
226c1dd3 456 $c->forward( $c->view('Web') );
8cd017a8 457 }
722fede4 458
c969f23a 459If a stash item isn't defined, then it instead uses the
460stringification of the action dispatched to (as defined by $c->action)
461in the above example, this would be C<message>, but because the default
462is to append '.tt', it would load C<root/message.tt>.
8cd017a8 463
464The items defined in the stash are passed to the Template Toolkit for
465use as template variables.
466
8cd017a8 467 sub default : Private {
94b3529a 468 my ( $self, $c ) = @_;
469 $c->stash->{template} = 'message.tt2';
470 $c->stash->{message} = 'Hello World!';
226c1dd3 471 $c->forward( $c->view('Web') );
8cd017a8 472 }
7b592fc7 473
8cd017a8 474A number of other template variables are also added:
8077080c 475
8cd017a8 476 c A reference to the context object, $c
477 base The URL base, from $c->req->base()
478 name The application name, from $c->config->{ name }
479
480These can be accessed from the template in the usual way:
481
482<message.tt2>:
483
484 The message is: [% message %]
485 The base is [% base %]
486 The name is [% name %]
487
8cd017a8 488
1bc9fc55 489The output generated by the template is stored in C<< $c->response->body >>.
490
491=head2 CAPTURING TEMPLATE OUTPUT
492
493If you wish to use the output of a template for some other purpose than
494displaying in the response, e.g. for sending an email, this is possible using
495L<Catalyst::Plugin::Email> and the L<render> method:
496
497 sub send_email : Local {
498 my ($self, $c) = @_;
f5b61ad7 499
1bc9fc55 500 $c->email(
501 header => [
502 To => 'me@localhost',
503 Subject => 'A TT Email',
504 ],
226c1dd3 505 body => $c->view('Web')->render($c, 'email.tt', {
9d574573 506 additional_template_paths => [ $c->config->{root} . '/email_templates'],
1bc9fc55 507 email_tmpl_param1 => 'foo'
508 }
509 ),
510 );
511 # Redirect or display a message
512 }
8cd017a8 513
514=head2 TEMPLATE PROFILING
515
1bc9fc55 516See L<C<TIMER>> property of the L<config> method.
517
caa61517 518=head2 METHODS
8077080c 519
b63ddd04 520=head2 new
2774dc77 521
f5b61ad7 522The constructor for the TT view. Sets up the template provider,
2774dc77 523and reads the application config.
524
81b7f2a2 525=head2 process($c)
8077080c 526
1bc9fc55 527Renders the template specified in C<< $c->stash->{template} >> or
ad50568f 528C<< $c->action >> (the private name of the matched action). Calls L<render> to
1bc9fc55 529perform actual rendering. Output is stored in C<< $c->response->body >>.
8077080c 530
81b7f2a2 531It is possible to forward to the process method of a TT view from inside
532Catalyst like this:
533
226c1dd3 534 $c->forward('View::Web');
81b7f2a2 535
536N.B. This is usually done automatically by L<Catalyst::Action::RenderView>.
f2ee4d6c 537
b63ddd04 538=head2 render($c, $template, \%args)
1bc9fc55 539
cad820fe 540Renders the given template and returns output. Throws a L<Template::Exception>
f5b61ad7 541object upon error.
1bc9fc55 542
75dc0329 543The template variables are set to C<%$args> if C<$args> is a hashref, or
544C<< $c->stash >> otherwise. In either case the variables are augmented with
3d543eda 545C<base> set to C<< $c->req->base >>, C<c> to C<$c>, and C<name> to
1bc9fc55 546C<< $c->config->{name} >>. Alternately, the C<CATALYST_VAR> configuration item
547can be defined to specify the name of a template variable through which the
3d543eda 548context reference (C<$c>) can be accessed. In this case, the C<c>, C<base>, and
1bc9fc55 549C<name> variables are omitted.
550
f5b61ad7 551C<$template> can be anything that Template::process understands how to
1bc9fc55 552process, including the name of a template file or a reference to a test string.
553See L<Template::process|Template/process> for a full list of supported formats.
554
f59953e1 555To use the render method outside of your Catalyst app, just pass a undef context.
cbb149dc 556This can be useful for tests, for instance.
557
81b7f2a2 558It is possible to forward to the render method of a TT view from inside Catalyst
559to render page fragments like this:
560
226c1dd3 561 my $fragment = $c->forward("View::Web", "render", $template_name, $c->stash->{fragment_data});
f2ee4d6c 562
3715305f 563=head3 Backwards compatibility note
564
565The render method used to just return the Template::Exception object, rather
566than just throwing it. This is now deprecated and instead the render method
567will throw an exception for new applications.
568
569This behaviour can be activated (and is activated in the default skeleton
570configuration) by using C<< render_die => 1 >>. If you rely on the legacy
571behaviour then a warning will be issued.
572
573To silence this warning, set C<< render_die => 0 >>, but it is recommended
574you adjust your code so that it works with C<< render_die => 1 >>.
575
576In a future release, C<< render_die => 1 >> will become the default if
577unspecified.
578
b63ddd04 579=head2 template_vars
850ee226 580
1bc9fc55 581Returns a list of keys/values to be used as the catalyst variables in the
850ee226 582template.
583
b63ddd04 584=head2 config
8077080c 585
8cd017a8 586This method allows your view subclass to pass additional settings to
4729c102 587the TT configuration hash, or to set the options as below:
588
b63ddd04 589=head2 paths
590
591The list of paths TT will look for templates in.
4729c102 592
a6fa99df 593=head2 expose_methods
594
595The list of methods in your View class which should be made available to the templates.
596
597For example:
598
582a5059 599 expose_methods => [qw/uri_for_css/],
a6fa99df 600
601 ...
602
603 sub uri_for_css {
604 my ($self, $c, $filename) = @_;
605
606 # additional complexity like checking file exists here
607
608 return $c->uri_for('/static/css/' . $filename);
609 }
610
611Then in the template:
612
613 [% uri_for_css('home.css') %]
614
f5b61ad7 615=head2 C<CATALYST_VAR>
4729c102 616
617Allows you to change the name of the Catalyst context object. If set, it will also
618remove the base and name aliases, so you will have access them through <context>.
619
226c1dd3 620For example, if CATALYST_VAR has been set to "Catalyst", a template might
621contain:
4729c102 622
623 The base is [% Catalyst.req.base %]
624 The name is [% Catalyst.config.name %]
625
b63ddd04 626=head2 C<TIMER>
4729c102 627
628If you have configured Catalyst for debug output, and turned on the TIMER setting,
629C<Catalyst::View::TT> will enable profiling of template processing
630(using L<Template::Timer>). This will embed HTML comments in the
631output from your templates, such as:
632
633 <!-- TIMER START: process mainmenu/mainmenu.ttml -->
634 <!-- TIMER START: include mainmenu/cssindex.tt -->
635 <!-- TIMER START: process mainmenu/cssindex.tt -->
636 <!-- TIMER END: process mainmenu/cssindex.tt (0.017279 seconds) -->
637 <!-- TIMER END: include mainmenu/cssindex.tt (0.017401 seconds) -->
638
639 ....
640
641 <!-- TIMER END: process mainmenu/footer.tt (0.003016 seconds) -->
642
643
b63ddd04 644=head2 C<TEMPLATE_EXTENSION>
4729c102 645
747f2b6d 646a sufix to add when looking for templates bases on the C<match> method in L<Catalyst::Request>.
4729c102 647
648For example:
649
6229ce0d 650 package MyApp::Controller::Test;
f5b61ad7 651 sub test : Local { .. }
4729c102 652
653Would by default look for a template in <root>/test/test. If you set TEMPLATE_EXTENSION to '.tt', it will look for
654<root>/test/test.tt.
655
51199593 656=head2 C<PROVIDERS>
657
658Allows you to specify the template providers that TT will use.
659
adb2ce78 660 MyApp->config(
51199593 661 name => 'MyApp',
662 root => MyApp->path_to('root'),
226c1dd3 663 'View::Web' => {
51199593 664 PROVIDERS => [
665 {
666 name => 'DBI',
667 args => {
668 DBI_DSN => 'dbi:DB2:books',
669 DBI_USER=> 'foo'
670 }
671 }, {
672 name => '_file_',
673 args => {}
674 }
675 ]
676 },
adb2ce78 677 );
51199593 678
679The 'name' key should correspond to the class name of the provider you
680want to use. The _file_ name is a special case that represents the default
681TT file-based provider. By default the name is will be prefixed with
682'Template::Provider::'. You can fully qualify the name by using a unary
683plus:
684
685 name => '+MyApp::Provider::Foo'
686
6175bba7 687You can also specify the 'copy_config' key as an arrayref, to copy those keys
688from the general config, into the config for the provider:
f5b61ad7 689
6175bba7 690 DEFAULT_ENCODING => 'utf-8',
691 PROVIDERS => [
692 {
693 name => 'Encoding',
694 copy_config => [qw(DEFAULT_ENCODING INCLUDE_PATH)]
695 }
696 ]
f5b61ad7 697
6175bba7 698This can prove useful when you want to use the additional_template_paths hack
699in your own provider, or if you need to use Template::Provider::Encoding
700
7bd88b61 701=head2 C<CLASS>
702
703Allows you to specify a custom class to use as the template class instead of
704L<Template>.
705
706 package MyApp::View::Web;
707
708 use strict;
709 use base 'Catalyst::View::TT';
710
711 use Template::AutoFilter;
712
713 __PACKAGE__->config({
714 CLASS => 'Template::AutoFilter',
715 });
716
717This is useful if you want to use your own subclasses of L<Template>, so you
718can, for example, prevent XSS by automatically filtering all output through
719C<| html>.
720
8cd017a8 721=head2 HELPERS
722
723The L<Catalyst::Helper::View::TT> and
724L<Catalyst::Helper::View::TTSite> helper modules are provided to create
725your view module. There are invoked by the F<myapp_create.pl> script:
726
226c1dd3 727 $ script/myapp_create.pl view Web TT
8cd017a8 728
226c1dd3 729 $ script/myapp_create.pl view Web TTSite
8cd017a8 730
731The L<Catalyst::Helper::View::TT> module creates a basic TT view
732module. The L<Catalyst::Helper::View::TTSite> module goes a little
733further. It also creates a default set of templates to get you
734started. It also configures the view module to locate the templates
735automatically.
736
02c64502 737=head1 NOTES
738
739If you are using the L<CGI> module inside your templates, you will
740experience that the Catalyst server appears to hang while rendering
741the web page. This is due to the debug mode of L<CGI> (which is
742waiting for input in the terminal window). Turning off the
743debug mode using the "-no_debug" option solves the
744problem, eg.:
745
746 [% USE CGI('-no_debug') %]
747
8077080c 748=head1 SEE ALSO
749
8cd017a8 750L<Catalyst>, L<Catalyst::Helper::View::TT>,
751L<Catalyst::Helper::View::TTSite>, L<Template::Manual>
8077080c 752
c0eb0527 753=head1 AUTHORS
8077080c 754
755Sebastian Riedel, C<sri@cpan.org>
c0eb0527 756
d938377b 757Marcus Ramberg, C<mramberg@cpan.org>
c0eb0527 758
722fede4 759Jesse Sheidlower, C<jester@panix.com>
c0eb0527 760
8cd017a8 761Andy Wardley, C<abw@cpan.org>
8077080c 762
0696d072 763Luke Saunders, C<luke.saunders@gmail.com>
764
8077080c 765=head1 COPYRIGHT
766
f5b61ad7 767This program is free software. You can redistribute it and/or modify it
2774dc77 768under the same terms as Perl itself.
8077080c 769
770=cut