You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by bw...@apache.org on 2003/06/12 10:33:31 UTC

cvs commit: maven/src/plugins-build/jxr/src/main/org/apache/maven/jxr CodeTransform.java

bwalding    2003/06/12 01:33:30

  Modified:    src/plugins-build/jxr/src/main/org/apache/maven/jxr
                        CodeTransform.java
  Log:
  Add all valid characters for URI
  PR:MAVEN-479
  Submitted by:	Ron Blaschke
  
  Revision  Changes    Path
  1.6       +3 -3      maven/src/plugins-build/jxr/src/main/org/apache/maven/jxr/CodeTransform.java
  
  Index: CodeTransform.java
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/jxr/src/main/org/apache/maven/jxr/CodeTransform.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- CodeTransform.java	17 Apr 2003 21:18:55 -0000	1.5
  +++ CodeTransform.java	12 Jun 2003 08:33:30 -0000	1.6
  @@ -131,10 +131,10 @@
   
       /**
        * Specify the only characters that are allowed in a URI besides alpha and
  -     * numeric characters.
  +     * numeric characters. Refer RFC2396 - http://www.ietf.org/rfc/rfc2396.txt
        */
  -    public final static char[] VALID_URI_CHARS = {'?', '+', '%', '&', ':', '/', '.', '@', '_'};
  -
  +    public final static char[] VALID_URI_CHARS = {'?', '+', '%', '&', ':', '/', '.', '@', '_', ';', '=', '$', ',', '-', '!', '~', '*', '\'', '(', ')'};
  +    
       private Hashtable reservedWords = new Hashtable();
       private boolean inMultiLineComment = false;
       private boolean inJavadocComment = false;
  
  
  

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