NAME
CGI::Builder::PathInfoMagic - Get page name from PAHT_INFO instead of p
DESCRIPTION
This module allow you to set page name from $ENV{PATH_INFO} instead of p. You can check SYNOPSYS out and you will know what this mean. :-)
This class inherits from CGI::Builder, by the way. I like CGI::Builder.
SYNOPSYS
start.cgi
#!/usr/bin/perl -w
use strict;
use Your::CGI::Builder;
my $app = Your::CGI::Builder->new();
$app->process();
__END__
Your CGI::Builder Package.
package Your::CGI::Builder;
use CGI::Builder::PathInfoMagic qw/
CGI::Builder::DFVCheck
/;
sub PH_foo_bar {
my $s = shift;
$s->page_content( 'my URL is http://localhost/script.cgi/foo/bar/?foo=whatever !!!!' );
}
sub PH_hoge {
my $s = shift;
$s->page_content = 'my URL is http://localhost/script.cgi/hoge/ !!!' );
}
MORE FUN?
Use ScriptAlias !!! This allow you to hide .cgi extension. Very fun.
ScriptAlias /secure /var/www/httpdoc/secure.cgi
# You have this start script.
http://localhost/secure.cgi
# You set script alias so , you can also access with this URL.
http://localhost/secure
# Then now...
sub PH_foo_bar {
my $s = shift;
$s->page_content = 'my URL is http://localhost/secure/foo/bar/?foo=whatever !!!' ;
}
OVER RAIDDEDMETHOD
process()
You can not set any aregument because I will set it for you . :-)
SEE ALSO
CGI::Builder
AUTHOR
Tomohiro Teranishi <tomohiro.teranishi+cpan@gmail.com>
COPYRIGHT
This program is distributed under the Artistic License