stas 2004/05/05 18:39:30 Modified: src/docs/2.0/api/Apache URI.pod Log: unescape_url doc Submitted by: [EMAIL PROTECTED] Revision Changes Path 1.3 +29 -0 modperl-docs/src/docs/2.0/api/Apache/URI.pod Index: URI.pod =================================================================== RCS file: /home/cvs/modperl-docs/src/docs/2.0/api/Apache/URI.pod,v retrieving revision 1.2 retrieving revision 1.3 diff -u -u -r1.2 -r1.3 --- URI.pod 14 Jan 2004 23:39:22 -0000 1.2 +++ URI.pod 6 May 2004 01:39:30 -0000 1.3 @@ -122,6 +122,35 @@ + +=head2 C<unescape_url> + +Unescape URLs + + unescape_url($url); + +=over 4 + +=item arg1: C<$url> (string) + +The URL to unescape + +=item ret: nothing + +The argument C<$url> is now unescaped + +=item since: 1.99_10 + +=back + +For example: + + my $url = join '%20', qw(one two three); + Apache::URI::unescape_url($url); + + + + =head1 See Also L<mod_perl 2.0 documentation|docs::2.0::index>.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]