| Catalyst-View-Jemplate documentation | Contained in the Catalyst-View-Jemplate distribution. |
Catalyst::Helper::View::Jemplate - Helper for Jemplate Views
script/create.pl view Jemplate Jemplate
Helper for Jemplate Views.
Tatsuhiko Miyagawa, miyagawa@bluknews.net
Daisuke Maki, daisuke@endeworks.jp
This library is free software . You can redistribute it and/or modify it under the same terms as perl itself.
[% class %] - Jemplate View for [% app %]
Jemplate View for [% app %].
[% author %]
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
| Catalyst-View-Jemplate documentation | Contained in the Catalyst-View-Jemplate distribution. |
package Catalyst::Helper::View::Jemplate; use strict;
sub mk_compclass { my ( $self, $helper ) = @_; my $file = $helper->{file}; $helper->render_file( 'compclass', $file ); }
1; __DATA__ __compclass__ package [% class %]; use strict; use base 'Catalyst::View::Jemplate';
1;