]> ruin.nu Git - ndwebbie.git/blob - lib/NDWeb/View/TT.pm
Login/Logout and session support with roles + convert to html 4.01.
[ndwebbie.git] / lib / NDWeb / View / TT.pm
1 package NDWeb::View::TT;
2
3 use strict;
4 use base 'Catalyst::View::TT';
5
6 __PACKAGE__->config({
7         INCLUDE_PATH => [
8                 NDWeb->path_to( 'root', 'src' ),
9                 NDWeb->path_to( 'root', 'lib' )
10         ],
11         PRE_PROCESS  => 'config/main.tt2',
12         WRAPPER      => 'site/wrapper.tt2',
13         ERROR        => 'error.tt2',
14         TIMER        => 0,
15         #DEBUG        => 'undef',
16         TEMPLATE_EXTENSION => '.tt2',
17         #CACHE_SIZE => 256,
18 });
19
20 =head1 NAME
21
22 NDWeb::View::TT - Catalyst TTSite View
23
24 =head1 SYNOPSIS
25
26 See L<NDWeb>
27
28 =head1 DESCRIPTION
29
30 Catalyst TTSite View.
31
32 =head1 AUTHOR
33
34 A clever guy
35
36 =head1 LICENSE
37
38 This library is free software, you can redistribute it and/or modify
39 it under the same terms as Perl itself.
40
41 =cut
42
43 1;
44