source: trunk/lib/Epoll/View/Ajax.pm @ 387

Last change on this file since 387 was 314, checked in by nanardon, 14 years ago
  • load loc macros into Ajax Template
File size: 555 bytes
Line 
1package Epoll::View::Ajax;
2
3use strict;
4use warnings;
5use base 'Catalyst::View::TT';
6
7use Epoll;
8
9__PACKAGE__->config(
10    TEMPLATE_EXTENSION => '.tt',
11    INCLUDE_PATH => Epoll->path_to( 'root', 'templates' ),
12    PLUGIN_BASE => 'Epoll::Template::Plugin',
13    PRE_PROCESS => [ 'includes/loc.tt', ],
14);
15
16=head1 NAME
17
18Epoll::View::Ajax - Catalyst View
19
20=head1 DESCRIPTION
21
22Catalyst View.
23
24=head1 AUTHOR
25
26Olivier Thauvin
27
28=head1 LICENSE
29
30This library is free software. You can redistribute it and/or modify
31it under the same terms as Perl itself.
32
33=cut
34
351;
Note: See TracBrowser for help on using the repository browser.