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

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