[Htmlparser-cvs] htmlparser/src/org/htmlparser/scanners CompositeTagScanner.java,1.89,1.90
Brought to you by:
derrickoswald
From: Derrick O. <der...@us...> - 2005-04-10 23:20:59
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30655/htmlparser/src/org/htmlparser/scanners Modified Files: CompositeTagScanner.java Log Message: Documentation revamp part one. Deprecated node decorators. Added doSemanticAction for Text and Comment nodes. Added missing sitecapturer scripts. Fixed DOS batch files to work when called from any location. Index: CompositeTagScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/CompositeTagScanner.java,v retrieving revision 1.89 retrieving revision 1.90 diff -C2 -d -r1.89 -r1.90 *** CompositeTagScanner.java 31 Jul 2004 16:42:32 -0000 1.89 --- CompositeTagScanner.java 10 Apr 2005 23:20:44 -0000 1.90 *************** *** 233,237 **** --- 233,240 ---- } else + { addChild (ret, node); + node.doSemanticAction (); + } } |