You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Ronald Blaschke <rb...@web.de> on 2003/06/11 11:49:12 UTC

JXR Plugin valid URI characters

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: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: JXR Plugin valid URI characters

Posted by Ronald Blaschke <rb...@web.de>.
On Thu, Jun 12, 2003 at 09:20:50AM +0200, Martin Skopp wrote:

> > The JXR URI matching need a little rework.  Currently, it says
> 
> Reasonable improvement...
> The committers love to fix it, best practise is to create a issue at
> http://jira.codehaus.org and attach a diff -u -w / patch file.

Thanks. Done that.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: JXR Plugin valid URI characters

Posted by Martin Skopp <sk...@riege.de>.
On Wed, 2003-06-11 at 11:49, Ronald Blaschke wrote:
> The JXR URI matching need a little rework.  Currently, it says

Reasonable improvement...
The committers love to fix it, best practise is to create a issue at
http://jira.codehaus.org and attach a diff -u -w / patch file.
-- 
Martin Skopp
Riege Software International GmbH
Support: mailto:maint@riege.com, Information: http://www.riege.com

This email is intended to be viewed with a nonproportional font.
Public Key on http://www.keyserver.net, Key-ID: 3D4027B5
Fingerprint: 1970 C78D 9A1D 99FA 5CE4  5C0D 29E6 6A95 3D40 27B5


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org