Greetings, In my quest for getting AuthCookie working natively under 2.0 I came across an undocumented method (undocumented in the 2.0 docs that is).
HTH, Fred --- src/docs/2.0/api/Apache/URI.pod 2004-05-05 17:48:45.293167552 -0700 +++ src/docs/2.0/api/Apache/URI.pod 2004-05-05 18:05:26.865905352 -0700 @@ -119,8 +119,24 @@ =back +=head2 C<unescape_url> +unescape_url: A handy function for unescaping URLs + my $url = join '%20', qw(one two three); + Apache::URI::unescape_url($url); + +=over 4 + +=item arg1: C<$url> (string) + +The URL to unescape + +=item ret: $url (string) + +The URL, unescaped + +=back =head1 See Also --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
