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