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

Last change on this file since 46 was 17, checked in by nanardon, 14 years ago
  • start adding test
File size: 677 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);
19
20=head1 NAME
21
22Sophie::View::TT - TT View for Sophie
23
24=head1 DESCRIPTION
25
26TT View for Sophie.
27
28=head1 SEE ALSO
29
30L<Sophie>
31
32=head1 AUTHOR
33
34Olivier Thauvin
35
36=head1 LICENSE
37
38This library is free software. You can redistribute it and/or modify
39it under the same terms as Perl itself.
40
41=cut
42
431;
Note: See TracBrowser for help on using the repository browser.