Add all valid characters for URI

PR:MAVEN-479
Submitted by:	Ron Blaschke


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113487 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
bwalding 2003-06-12 08:33:30 +00:00
parent 216479dfa5
commit 0f28bc89f2

View File

@ -131,10 +131,10 @@ public class CodeTransform implements Serializable
/**
* 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;