Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

catalyst::plugin::subrequest(3pm) [debian man page]

Catalyst::Plugin::SubRequest(3pm)			User Contributed Perl Documentation			 Catalyst::Plugin::SubRequest(3pm)

NAME
Catalyst::Plugin::SubRequest - Make subrequests to actions in Catalyst SYNOPSIS
use Catalyst 'SubRequest'; my $res_body = $c->subreq('/test/foo/bar', { template => 'magic.tt' }); my $res_body = $c->subreq( { path => '/test/foo/bar', body => $body }, { template => 'magic.tt' }); # Get the full response object my $res = $c->subreq_res('/test/foo/bar', { template => 'mailz.tt' }, { param1 => 23 }); $c->log->warn( $res->content_type ); DESCRIPTION
Make subrequests to actions in Catalyst. Uses the catalyst dispatcher, so it will work like an external url call. Methods are provided both to get the body of the response and the full response (Catalyst::Response) object. METHODS
subreq [path as string or hash ref], [stash as hash ref], [parameters as hash ref] subrequest sub_request 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. An optional second argument as hashref can contain data to put into the stash of the subrequest. An optional third argument as hashref can contain data to pass as parameters to the subrequest. Returns the body of the response. subreq_res [path as string or hash ref], [stash as hash ref], [parameters as hash ref] subrequest_response sub_request_response Like "sub_request()", but returns a full Catalyst::Response object. SEE ALSO
Catalyst. AUTHORS
Marcus Ramberg, "mramberg@cpan.org" Tomas Doran (t0m) "bobtfish@bobtfish.net" MAINTAINERS
Eden Cardim (edenc) "eden@insoli.de" THANK YOU
SRI, for writing the awesome Catalyst framework MIYAGAWA, for writing the awesome Plack toolkit COPYRIGHT
Copyright (c) 2005 - 2011 the Catalyst::Plugin::SubRequest "AUTHORS" as listed above. LICENSE
This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-06-20 Catalyst::Plugin::SubRequest(3pm)

Check Out this Related Man Page

Catalyst::Plugin::Unicode(3pm)				User Contributed Perl Documentation			    Catalyst::Plugin::Unicode(3pm)

NAME
Catalyst::Plugin::Unicode - Unicode aware Catalyst (old style) SYNOPSIS
# DO NOT USE THIS - Use Catalyst::Plugin::Unicode::Encoding instead # which is both more correct, and handles more cases. use Catalyst qw[Unicode]; DESCRIPTION
On request, decodes all params from UTF-8 octets into a sequence of logical characters. On response, encodes body into UTF-8 octets. Note that this plugin tries to autodetect if your response is encoded into characters before trying to encode it into a byte stream. This is bad as sometimes it can guess wrongly and cause problems. As an example, latin1 characters such as A~X (e-accute) will not actually cause the output to be encoded as utf8. Using Catalyst::Plugin::Unicode::Encoding is much more recommended, and that also does additional things (like decoding file upload filenames and request parameters which this plugin does not). This plugin should be considered deprecated, but is maintained as a large number of applications are using it already. OVERLOADED METHODS
finalize Encodes body into UTF-8 octets. prepare_parameters Decodes parameters into a sequence of logical characters. SEE ALSO
utf8, Catalyst. AUTHORS
Christian Hansen, "<ch@ngmedia.com>" Marcus Ramberg, "<mramberg@pcan.org>" Jonathan Rockway "<jrockway@cpan.org>" Tomas Doran, (t0m) "<bobtfish@bobtfish.net>" COPYRIGHT
Copyright (c) 2005 - 2009 the Catalyst::Plugin::Unicode "AUTHORS" as listed above. LICENSE
This library is free software . You can redistribute it and/or modify it under the same terms as perl itself. perl v5.14.2 2010-03-17 Catalyst::Plugin::Unicode(3pm)
Man Page