[Htmlparser-cvs] htmlparser build.xml,1.78,1.79
Brought to you by:
derrickoswald
From: Derrick O. <der...@us...> - 2005-06-19 12:01:21
|
Update of /cvsroot/htmlparser/htmlparser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26937/htmlparser Modified Files: build.xml Log Message: Changes to allow compilation of htmllexer.jar by gcj. Move non-JDK1.1 functionality to HttpHeader class. Unhook NodeList from filters by removing searchFor(cls) - use keepAllNodesThatMatch(new NodeClassFilter(cls)) instead. Include classes missing from closure set. Index: build.xml =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/build.xml,v retrieving revision 1.78 retrieving revision 1.79 diff -C2 -d -r1.78 -r1.79 *** build.xml 24 Apr 2005 17:48:05 -0000 1.78 --- build.xml 19 Jun 2005 12:01:13 -0000 1.79 *************** *** 270,273 **** --- 270,274 ---- <include name="org/htmlparser/Node.java"/> <include name="org/htmlparser/NodeFactory.java"/> + <include name="org/htmlparser/NodeFilter.java"/> <include name="org/htmlparser/Remark.java"/> <include name="org/htmlparser/Tag.java"/> *************** *** 282,285 **** --- 283,287 ---- <include name="org/htmlparser/util/SimpleNodeIterator.java"/> <include name="org/htmlparser/util/sort/**/*.java"/> + <include name="org/htmlparser/visitors/NodeVisitor.java"/> <include name="org/htmlparser/parserHelper/SpecialHashtable.class"/> </javac> *************** *** 308,311 **** --- 310,314 ---- <include name="org/htmlparser/Node.class"/> <include name="org/htmlparser/NodeFactory.class"/> + <include name="org/htmlparser/NodeFilter.class"/> <include name="org/htmlparser/Remark.class"/> <include name="org/htmlparser/Tag.class"/> *************** *** 324,327 **** --- 327,331 ---- <include name="org/htmlparser/util/EncodingChangeException.class"/> <include name="org/htmlparser/util/sort/**/*.class"/> + <include name="org/htmlparser/visitors/NodeVisitor.class"/> <include name="org/htmlparser/parserHelper/SpecialHashtable.class"/> <manifest> |