| Rose-DBx-Garden-Catalyst documentation | Contained in the Rose-DBx-Garden-Catalyst distribution. |
Rose::DBx::Garden::Catalyst::View - base View class
Rose::DBx::Garden::Catalyst::View is a subclass of CatalystX::CRUD::YUI::View.
Configuration is the same as with Catalyst::View::TT. Read those docs.
The default config here is:
__PACKAGE__->config(
TEMPLATE_EXTENSION => '.tt',
PRE_PROCESS => 'rdgc/tt_config.tt',
WRAPPER => 'rdgc/wrapper.tt',
);
No methods are implemented in this class.
Peter Karman, <karman at cpan.org>
Please report any bugs or feature requests to
bug-rose-dbx-garden-catalyst at rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Rose-DBx-Garden-Catalyst.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Rose::DBx::Garden::Catalyst
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Rose-DBx-Garden-Catalyst
The Minnesota Supercomputing Institute http://www.msi.umn.edu/
sponsored the development of this software.
Copyright 2008 by the Regents of the University of Minnesota.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Rose-DBx-Garden-Catalyst documentation | Contained in the Rose-DBx-Garden-Catalyst distribution. |
package Rose::DBx::Garden::Catalyst::View; use strict; use warnings; use base qw( CatalystX::CRUD::YUI::View ); use Class::Inspector; use Path::Class; use Rose::DBx::Garden::Catalyst::TT; use MRO::Compat; use mro 'c3'; our $VERSION = '0.15';
# default config here instead of new() so subclasses can more easily override. # # backwards compat for INCLUDE_PATH since all templates # are now based in CatalystX::CRUD::YUI::TT my $template_base = Class::Inspector->loaded_filename('Rose::DBx::Garden::Catalyst::TT'); $template_base =~ s/\.pm$//; __PACKAGE__->config( TEMPLATE_EXTENSION => '.tt', PRE_PROCESS => 'rdgc/tt_config.tt', WRAPPER => 'rdgc/wrapper.tt', INCLUDE_PATH => [ Path::Class::dir($template_base) ], );
1; __END__