[Htmlparser-cvs] htmlparser build.xml,1.58,1.59
Brought to you by:
derrickoswald
From: <der...@us...> - 2004-02-09 02:12:55
|
Update of /cvsroot/htmlparser/htmlparser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9169 Modified Files: build.xml Log Message: Rework character entity translation. See task 58599 enhance character reference translation. Decode now handles missing semi colons, encoding is more efficient, hexadecimal numeric character entity references are handled and both encoding and decoding make minimal use of substring(). Augmented the tests in CharacterTranslationTest significantly, and merged the Generate class into the tests. Added translate command scripts in bin, which read from stdin and write to stdout. Index: build.xml =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/build.xml,v retrieving revision 1.58 retrieving revision 1.59 diff -C2 -d -r1.58 -r1.59 *** build.xml 14 Jan 2004 02:53:46 -0000 1.58 --- build.xml 9 Feb 2004 02:09:43 -0000 1.59 *************** *** 301,304 **** --- 301,305 ---- <pathelement location="${junit.jar}"/> <pathelement location="${commons-logging.jar}"/> + <pathelement location="${java.home}/../lib/tools.jar"/> </classpath> </javac> *************** *** 309,312 **** --- 310,314 ---- <pathelement location="${junit.jar}"/> <pathelement location="${commons-logging.jar}"/> + <pathelement location="${java.home}/../lib/tools.jar"/> </classpath> <arg value="-text"/> |