App::CamelPKI::View::TT - Catalyst TTSite View


App-CamelPKI documentation Contained in the App-CamelPKI distribution.

Index


Code Index:

NAME

Top

App::CamelPKI::View::TT - Catalyst TTSite View

SYNOPSIS

Top

See App::CamelPKI

DESCRIPTION

Top

Catalyst TTSite View.

AUTHOR

Top

A clever guy

LICENSE

Top

This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.


App-CamelPKI documentation Contained in the App-CamelPKI distribution.

package App::CamelPKI::View::TT;

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

__PACKAGE__->config({
    CATALYST_VAR => 'Catalyst',
    INCLUDE_PATH => [
        App::CamelPKI->path_to( 'root', 'src' ),
        App::CamelPKI->path_to( 'root', 'lib' ),
        App::CamelPKI->path_to( 'root' )
    ],
    PRE_PROCESS  => 'config/main',
    WRAPPER      => 'site/wrapper',
    ERROR        => 'error.tt2',
    TIMER        => 0,
});

1;