Catalyst::Helper::View::Reproxy - Helper class for Catalyst::View::Reproxy


Catalyst-View-Reproxy documentation Contained in the Catalyst-View-Reproxy distribution.

Index


Code Index:

NAME

Top

Catalyst::Helper::View::Reproxy - Helper class for Catalyst::View::Reproxy

VERSION

Top

Version 0.05

SYNOPSIS

Top

  ./script/myapp_create.pl view MyReproxy Reproxy

METHODS

Top

mk_compclass

AUTHOR

Top

Toru Yamaguchi, <zigorou at cpan.org>

BUGS

Top

Please report any bugs or feature requests to bug-catalyst-helper-view-reproxy at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Catalyst-View-Reproxy. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc Catalyst::Helper::View::Reproxy

You can also look for information at:

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Catalyst-View-Reproxy

* CPAN Ratings

http://cpanratings.perl.org/d/Catalyst-View-Reproxy

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Catalyst-View-Reproxy

* Search CPAN

http://search.cpan.org/dist/Catalyst-View-Reproxy

ACKNOWLEDGEMENTS

Top

COPYRIGHT & LICENSE

Top


Catalyst-View-Reproxy documentation Contained in the Catalyst-View-Reproxy distribution.
package Catalyst::Helper::View::Reproxy;

use strict;
use warnings;

our $VERSION = '0.05';

sub mk_compclass {
    my ( $self, $helper ) = @_;
    $helper->render_file( 'viewclass', $helper->{file} );
    return 1;
}

1;    # End of Catalyst::Helper::View::Reproxy

__DATA__

1;