
Catalyst::Plugin::SubRequest - Make subrequests to actions in Catalyst

use Catalyst 'SubRequest';
$c->subreq('/test/foo/bar', { template => 'magic.tt' });
$c->subreq( { path => '/test/foo/bar',
body => $body },
{ template => 'magic.tt' });

Make subrequests to actions in Catalyst. Uses the catalyst dispatcher, so it will work like an external url call.

Takes a full path to a path you'd like to dispatch to. If the path is passed as a hash ref then it can include body, action, match and path. Any additional parameters are put into the stash.


Marcus Ramberg, mramberg@cpan.org
Tomas Doran (t0m) bobtfish@bobtfish.net

SRI, for writing the awesome Catalyst framework

Copyright (c) 2005 - 2008 the Catalyst::Plugin::SubRequest "AUTHORS" as listed above.

This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.