summaryrefslogtreecommitdiff
path: root/GroLUG/lib/GroLUG/V/TT.pm
diff options
context:
space:
mode:
Diffstat (limited to 'GroLUG/lib/GroLUG/V/TT.pm')
-rw-r--r--GroLUG/lib/GroLUG/V/TT.pm42
1 files changed, 42 insertions, 0 deletions
diff --git a/GroLUG/lib/GroLUG/V/TT.pm b/GroLUG/lib/GroLUG/V/TT.pm
new file mode 100644
index 0000000..1882af2
--- /dev/null
+++ b/GroLUG/lib/GroLUG/V/TT.pm
@@ -0,0 +1,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;
+