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