Hi!
The JXR URI matching need a little rework. Currently, it says
CodeTransform.java:
/**
* Specify the only characters that are allowed in a URI besides alpha and
* numeric characters.
*/
public final static char[] VALID_URI_CHARS = {'?', '+', '%', '&', ':', '/', '.',
'@', '_'};
This failed on my project to correctly identify an URI that contains a '-'
character.
After a look at RFC 2396 (http://www.ietf.org/rfc/rfc2396.txt) I'd suggest
changing the above to:
public final static char[] VALID_URI_CHARS = {'?', '+', '%', '&', ':', '/', '.',
'@', '_', ';', '=', '$', ',', '-', '!', '~', '*', ''', '(', ')'};
Opinions?
Regards,
Ron
--
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]