source: server/trunk/web/lib/Sophie/View/TT.pm @ 107

Last change on this file since 107 was 84, checked in by nanardon, 14 years ago
  • add filter for mail and encoding
File size: 724 bytes
Line 
1package Sophie::View::TT;
2
3use strict;
4use warnings;
5use Sophie;
6
7use base 'Catalyst::View::TT';
8
9__PACKAGE__->config(
10    TEMPLATE_EXTENSION => '.html',
11    render_die => 1,
12    INCLUDE_PATH => [
13        Sophie->path_to( 'root', 'templates', 'includes' ),
14        Sophie->path_to( 'root', 'templates', 'html' ),
15    ],
16    PRE_PROCESS => 'header.tt',
17    POST_PROCESS => 'footer.tt',
18    PLUGIN_BASE => 'Sophie::Template::Plugin',
19);
20
21=head1 NAME
22
23Sophie::View::TT - TT View for Sophie
24
25=head1 DESCRIPTION
26
27TT View for Sophie.
28
29=head1 SEE ALSO
30
31L<Sophie>
32
33=head1 AUTHOR
34
35Olivier Thauvin
36
37=head1 LICENSE
38
39This library is free software. You can redistribute it and/or modify
40it under the same terms as Perl itself.
41
42=cut
43
441;
Note: See TracBrowser for help on using the repository browser.