Damn, should have depended on new Cat, never mind
[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 AUTHORS
29     Marcus Ramberg, "mramberg@cpan.org"
30
31     Tomas Doran (t0m) "bobtfish@bobtfish.net"
32
33 THANK YOU
34     SRI, for writing the awesome Catalyst framework
35
36 COPYRIGHT
37     Copyright (c) 2005 - 2008 the Catalyst::Plugin::SubRequest "AUTHORS" as
38     listed above.
39
40 LICENSE
41     This program is free software, you can redistribute it and/or modify it
42     under the same terms as Perl itself.
43