Update to work with latest Catalyst and not warn
[catagits/Catalyst-Plugin-SubRequest.git] / README
1 NAME
2     Catalyst::Plugin::SubRequest - Make subrequests to actions in Catalyst
3
4 SYNOPSIS
5         use Catalyst 'SubRequest';
6
7         $c->subreq('/test/foo/bar', { template => 'magic.tt' });
8
9         $c->subreq(        {       path            => '/test/foo/bar',
10                            body            => $body        },
11                    {       template        => 'magic.tt'           });
12
13 DESCRIPTION
14     Make subrequests to actions in Catalyst. Uses the catalyst dispatcher,
15     so it will work like an external url call.
16
17 METHODS
18     subreq [path as string or hash ref], [stash as hash ref], [parameters as
19     hash ref]
20     sub_request
21         Takes a full path to a path you'd like to dispatch to. If the path
22         is passed as a hash ref then it can include body, action, match and
23         path. Any additional parameters are put into the stash.
24
25 SEE ALSO
26     Catalyst.
27
28 AUTHOR
29     Marcus Ramberg, "mramberg@cpan.org"
30
31 THANK YOU
32     SRI, for writing the awesome Catalyst framework
33
34 COPYRIGHT
35     Copyright (c) 2005 - 2008 the Catalyst::Plugin::SubRequest "AUTHOR" as
36     listed above.
37
38 LICENSE
39     This program is free software, you can redistribute it and/or modify it
40     under the same terms as Perl itself.
41