~ubuntu-branches/ubuntu/vivid/libhtml-formhandler-model-dbic-perl/vivid

« back to all changes in this revision

Viewing changes to t/lib/BookDB/View/TT.pm

  • Committer: Package Import Robot
  • Author(s): Dominique Dumont
  • Date: 2012-10-17 13:41:10 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20121017134110-r7qpiotadfu3v1b0
Tags: 0.23-1
* new upstream release
* control: bumped Depends libhtml-formhandler-perl to >= 0.40016
  as done by upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package BookDB::View::TT;
2
 
 
3
 
use strict;
4
 
use base 'Catalyst::View::TT';
5
 
 
6
 
=head1 NAME
7
 
 
8
 
BookDB::V::TT - TT View Component
9
 
 
10
 
=head1 SYNOPSIS
11
 
 
12
 
See L<BookDB>
13
 
 
14
 
=head1 DESCRIPTION
15
 
 
16
 
TT View Component.
17
 
 
18
 
=cut
19
 
 
20
 
BookDB::View::TT->config({
21
 
    TEMPLATE_EXTENSION => '.tt',
22
 
    INCLUDE => [ BookDB->path_to('root') ],
23
 
});
24
 
 
25
 
 
26
 
=head1 AUTHOR
27
 
 
28
 
Gerda Shank
29
 
 
30
 
=head1 LICENSE
31
 
 
32
 
This library is free software . You can redistribute it and/or modify
33
 
it under the same terms as perl itself.
34
 
 
35
 
=cut
36
 
 
37
 
1;