Skip Menu |

This queue is for tickets about the URI CPAN distribution.

Report information
The Basics
Id: 57983
Status: resolved
Priority: 0/
Queue: URI

People
Owner: Nobody in particular
Requestors: islue [...] cpan.org
tsibley [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.54
Fixed in: (no value)



Subject: improper unreserved character set of RFC 3986
in URI::Escape my %Unsafe = ( RFC2732 => qr/[^A-Za-z0-9\-_.!~*'()]/, RFC3986 => qr/[^A-Za-z0-9\-\._~"]/, ); RFC3986 contains double quotation mark which seems like a miss-copy from the inline documents above. -- http://islue.blogspot.com/
I just noticed this as well. Any update? Thomas On Sun May 30 21:59:46 2010, ISLUE wrote: Show quoted text
> in URI::Escape > > my %Unsafe = ( > RFC2732 => qr/[^A-Za-z0-9\-_.!~*'()]/, > RFC3986 => qr/[^A-Za-z0-9\-\._~"]/, > ); > > RFC3986 contains double quotation mark which seems like a miss-copy
from Show quoted text
> the inline documents above.