NAME
Apache2::ASP::Parser - ASP -> Perl parsing engine
SYNOPSIS
my $parsed_file = Apache2::ASP::Parser->parse_file( $asp_filename );
my $parsed_str = Apache2::ASP::Parser->parse_string( $asp_string );
DESCRIPTION
Converts ASP code like:
<%
$Response->Write("Hello, World!");
$Response->End;
%>
Into Perl code like:
$Response->Write(q~~);
$Response->Write("Hello, World!");
return;
;$Response->Write(q~
~);
METHODS
parse_file( $path_to_file )
Returns the contents of that file, parsed into ASP Perl.
parse_string( $str )
Returns $str
, parsed into ASP Perl.
BUGS
It's possible that some bugs have found their way into this release.
Use RT http://rt.cpan.org/NoAuth/Bugs.html?Dist=Apache2-ASP to submit bug reports.
HOMEPAGE
Please visit the Apache2::ASP homepage at http://apache2-asp.no-ip.org/ to see examples of Apache2::ASP in action.
AUTHOR
John Drago mailto:jdrago_999@yahoo.com
COPYRIGHT AND LICENSE
Copyright 2007 John Drago, All rights reserved.
This software is free software. It may be used and distributed under the same terms as Perl itself.