WWW::Pipeline::Services::CGISimple
This plugin for Application::Pipeline makes available a query object, which is simply a CGI::Simple instance. To access it from the Application::Pipeline subclass:
$pipeline->loadPlugin( 'CGISimple' );
$query = $pipeline->query();
Optionally, you may indicate to CGI::Simple that you want to enable uploads, like so:
$pipeline->loadPlugin( 'CGISimple', DISABLE_UPLOADS => 0 );
As CGI::Simple disables them by default.
Authors
Stephen Howard <stephen@thunkit.com>
License
This module may be distributed under the same terms as Perl itself.