Subject: | URI regexp should be case insensitive wrt. scheme |
The URI regexps seem to demand the URI scheme to be in lowercase, but RFC
2396 says:
http://tools.ietf.org/html/rfc2396#section-3.1
"For resiliency, programs interpreting URI should treat upper case
letters as equivalent to lower case in scheme names (e.g., allow "HTTP"
as well as "http")."
...so I suggest making the scheme matching case insensitive. This is
trivial to work around in code using Regexp-Common, but I think the
default behavior should Just Work.