summaryrefslogtreecommitdiff
path: root/GroLUG/lib/GroLUG/V/TT.pm
blob: 1882af26df8351b631f64705e30a9bdfbf1e9ddb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package GroLUG::V::TT; 
 
use strict;
use base 'Catalyst::View::TT';
 
__PACKAGE__->config({
    CATALYST_VAR => 'Catalyst',
    INCLUDE_PATH => [
        GroLUG->path_to( 'root''src' ),
        GroLUG->path_to( 'root''lib' )
    ],
    PRE_PROCESS  => 'config/main',
    WRAPPER      => 'site/wrapper',
    ERROR        => 'error.tt2',
    TIMER        => 0
});
 
=head1 NAME
 
GroLUG::V::TT - Catalyst TTSite View
 
=head1 SYNOPSIS
 
See L<GroLUG>
 
=head1 DESCRIPTION
 
Catalyst TTSite View.
 
=head1 AUTHOR
 
A clever guy
 
=head1 LICENSE
 
This library is free software, you can redistribute it and/or modify
it under the same terms as Perl itself.
 
=cut
 
1;