Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5661/src/org/htmlparser/util
Modified Files:
Tag: v1_41
LinkProcessor.java
Log Message:
Avoid bug #995744 Translate.decode(String)
don't apply translation to URLs
Index: LinkProcessor.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/LinkProcessor.java,v
retrieving revision 1.33
retrieving revision 1.33.2.1
diff -C2 -d -r1.33 -r1.33.2.1
*** LinkProcessor.java 2 Jan 2004 16:24:58 -0000 1.33
--- LinkProcessor.java 27 Jul 2004 11:32:23 -0000 1.33.2.1
***************
*** 83,87 ****
}
! return (Translate.decode (ret));
}
--- 83,89 ----
}
! // avoid bug #995744 Translate.decode(String)
! // don't apply translation to URLs
! return (ret);
}
|