[Htmlparser-cvs] htmlparser build.xml,1.68,1.69
Brought to you by:
derrickoswald
From: Derrick O. <der...@us...> - 2004-07-02 00:50:05
|
Update of /cvsroot/htmlparser/htmlparser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32670 Modified Files: build.xml Log Message: Part four of a multiphase refactoring. Most internals now use the Tag interface. This interface has been broadened to add set/get scanner and set/get endtag. Removed the org.htmlparser.tags.Tag class and moved the remaining (minor) functionality to the TagNode class. So now tags inherit directly from TagNode or CompositeTag. ** NOTE: If you have subclassed org.htmlparser.tags.Tag, use org.htmlparser.nodes.TagNode now.** Removed deprecated methods getTagBegin/getTagEnd and deleted unused classes: PeekingIterator and it's Implementation. Index: build.xml =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/build.xml,v retrieving revision 1.68 retrieving revision 1.69 diff -C2 -d -r1.68 -r1.69 *** build.xml 30 May 2004 01:43:54 -0000 1.68 --- build.xml 2 Jul 2004 00:49:26 -0000 1.69 *************** *** 270,273 **** --- 270,275 ---- <include name="org/htmlparser/Tag.class"/> <include name="org/htmlparser/Text.class"/> + <include name="org/htmlparser/scanners/Scanner.class"/> + <include name="org/htmlparser/scanners/TagScanner.class"/> <include name="org/htmlparser/util/ParserException.class"/> <include name="org/htmlparser/util/ChainedException.class"/> |