[Htmlparser-cvs] htmlparser/src/org/htmlparser/parserHelper CompositeTagScannerHelper.java,1.48,1.49
Brought to you by:
derrickoswald
From: <der...@us...> - 2003-10-05 13:50:27
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserHelper In directory sc8-pr-cvs1:/tmp/cvs-serv9618/parserHelper Modified Files: CompositeTagScannerHelper.java Removed Files: ScriptScannerHelper.java Log Message: Add bean like accessors for positions on Node, AbstractNode and AbstractNodeDecorator. Handle null page in Cursor. Add smartquotes mode in Lexer and CompositeTagScannerHelper. Add simple name constructor in Attribute. Remove emptyxmltag member, replace with computing accessors in TagNode. Removed ScriptScannerHelper and moved scanning logic to ScriptScanner. Reworked extractImageLocn in ImageScanner Implement extractXMLData in TagScanner. Made virtual tags zero length in TagData. Added push() to IteratorImpl. Added single node constructor to NodeList. Numerous and various test adjustments. Still 133 failures. Index: CompositeTagScannerHelper.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserHelper/CompositeTagScannerHelper.java,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** CompositeTagScannerHelper.java 28 Sep 2003 15:33:58 -0000 1.48 --- CompositeTagScannerHelper.java 5 Oct 2003 13:49:50 -0000 1.49 *************** *** 80,84 **** if (!endTagFound) { do { ! currentNode = mLexer.nextNode (); // balance_quotes ? if (currentNode==null) continue; --- 80,84 ---- if (!endTagFound) { do { ! currentNode = mLexer.nextNode (balance_quotes); if (currentNode==null) continue; --- ScriptScannerHelper.java DELETED --- |