|
svn ci -m "Adding _ and ; to the list of allowed characters within the path component of a URL. _ is definitely allowed and ; is allowed but there are restrictions on its use and we'll need to refactor UrlValidator to properly understand how a ; may be used for path parameterization. This is with reference to #
Sending src/share/org/apache/commons/validator/UrlValidator.java This was done as a part of the day-job; so attaching a patch to signify that I passed it from my day-job role to my apache-role.
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/^(/[-\\w:@&?=+,.!/~*'%$]*)?$/
So the above url fails on the ; and the _. I don't see any reason why they're not being allowed. Looking at the ietf page, it seems to be fine there.