WWW::Mechanize::CGI - Use WWW::Mechanize with CGI applications.


WWW-Mechanize-CGI documentation  | view source Contained in the WWW-Mechanize-CGI distribution.

Index


NAME

Top

WWW::Mechanize::CGI - Use WWW::Mechanize with CGI applications.

SYNOPSIS

Top

    use CGI;
    use WWW::Mechanize::CGI;

    # Using a external CGI application

    $mech = WWW::Mechanize::CGI->new;
    $mech->cgi_application('/path/to/cgi/executable.cgi');

    $response = $mech->get('http://localhost/');

    


    # Using a inline CGI callback

    $mech = WWW::Mechanize::CGI->new;
    $mech->cgi( sub {

        my $q = CGI->new;

        print $q->header,
              $q->start_html('Hello World'),
              $q->h1('Hello World'),
              $q->end_html;
    });

    $response = $mech->get('http://localhost/');

DESCRIPTION

Top

Provides a convenient way of using CGI applications with WWW::Mechanize.

METHODS

Top

new

Behaves like, and calls, WWW::Mechanize's new method. Any parms passed in get passed to WWW::Mechanize's constructor.

cgi

Coderef to be used to execute the CGI application.

cgi_application('/path/to/cgi/executable.cgi')

Path to CGI executable.

env( [, key => value ] )

Set/Get additional environment variables to be used in CGI. Takes a hash and returns a hash.

    $mech->env( DOCUMENT_ROOT => '/export/www/myapp' );

fork

Set to a true value if you want to fork() before executing CGI.

SEE ALSO

Top

Test::WWW::Mechanize::CGI
WWW::Mechanize
LWP::UserAgent
HTTP::Request::AsCGI

AUTHOR

Top

Christian Hansen, ch@ngmedia.com

LICENSE

Top

This library is free software. You can redistribute it and/or modify it under the same terms as perl itself.


WWW-Mechanize-CGI documentation  | view source Contained in the WWW-Mechanize-CGI distribution.