You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by jm...@apache.org on 2008/01/04 00:43:35 UTC

svn commit: r608676 - /incubator/abdera/java/trunk/dependencies/i18n/src/main/java/org/apache/abdera/i18n/text/CharUtils.java

Author: jmsnell
Date: Thu Jan  3 15:43:30 2008
New Revision: 608676

URL: http://svn.apache.org/viewvc?rev=608676&view=rev
Log:
The validation for the iquery segment was not correct

Modified:
    incubator/abdera/java/trunk/dependencies/i18n/src/main/java/org/apache/abdera/i18n/text/CharUtils.java

Modified: incubator/abdera/java/trunk/dependencies/i18n/src/main/java/org/apache/abdera/i18n/text/CharUtils.java
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/dependencies/i18n/src/main/java/org/apache/abdera/i18n/text/CharUtils.java?rev=608676&r1=608675&r2=608676&view=diff
==============================================================================
--- incubator/abdera/java/trunk/dependencies/i18n/src/main/java/org/apache/abdera/i18n/text/CharUtils.java (original)
+++ incubator/abdera/java/trunk/dependencies/i18n/src/main/java/org/apache/abdera/i18n/text/CharUtils.java Thu Jan  3 15:43:30 2008
@@ -703,6 +703,7 @@
 
   public static boolean is_ipchar(int codepoint) {
     return is_iunreserved(codepoint) || 
+           isSubDelim(codepoint) ||
            codepoint == ':' || 
            codepoint == '@' || 
            codepoint == '&' ||