package SmokeOrNot::View::TT;

use strict;
use base 'Catalyst::View::TT';

__PACKAGE__->config(
    {   TEMPLATE_EXTENSION => '.tt2',
        INCLUDE_PATH       => [
            SmokeOrNot->path_to( 'root', 'src' ),
            SmokeOrNot->path_to( 'root', 'lib' )
        ],
        PRE_PROCESS => 'config/main.tt2',
        WRAPPER     => 'site/wrapper.tt2',
        ERROR       => 'error.tt2',
        TIMER       => 0,
        PRE_CHOMP   => 1,
        POST_CHOMP  => 1,
    }
);

=head1 NAME

SmokeOrNot::View::TT - Catalyst TTSite View

=head1 SYNOPSIS

See L<SmokeOrNot>

=head1 DESCRIPTION

Catalyst TTSite View.

=head1 COPYRIGHT

Copyright 2009-2010, gregor herrmann <gregor.herrmann@comodo.priv.at>

=head1 LICENSE

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

=cut

1;

