[Htmlparser-cvs] htmlparser build.xml,1.52,1.53
Brought to you by:
derrickoswald
From: <der...@us...> - 2003-11-08 21:30:59
|
Update of /cvsroot/htmlparser/htmlparser In directory sc8-pr-cvs1:/tmp/cvs-serv18855 Modified Files: build.xml Log Message: Implement generic node filtering. Added the NodeFilter interface and the filter package. Sideline tag specific scanners; tags now use only one scanner of each type, TagScanner or CompositeTagScanner (except for ScriptScanner). Obviated PeekingIterator by moving the META tag semantics to doSemanticAction, much simpler, old IteratorImpl is now PeekingIteratorImpl but deprecated. Index: build.xml =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/build.xml,v retrieving revision 1.52 retrieving revision 1.53 diff -C2 -d -r1.52 -r1.53 *** build.xml 29 Oct 2003 03:31:17 -0000 1.52 --- build.xml 8 Nov 2003 21:30:55 -0000 1.53 *************** *** 262,265 **** --- 262,266 ---- <include name="org/htmlparser/AbstractNode.class"/> <include name="org/htmlparser/Node.class"/> + <include name="org/htmlparser/NodeFilter.class"/> <include name="org/htmlparser/util/ParserException.class"/> <include name="org/htmlparser/util/ChainedException.class"/> *************** *** 269,272 **** --- 270,274 ---- <include name="org/htmlparser/util/SpecialHashtable.class"/> <include name="org/htmlparser/util/LinkProcessor.class"/> + <include name="org/htmlparser/util/Translate.class"/> <include name="org/htmlparser/util/sort/**/*.class"/> <include name="org/htmlparser/parserHelper/SpecialHashtable.class"/> |