[Htmlparser-cvs] htmlparser/docs changes.txt,1.197,1.198 release.txt,1.56,1.57
Brought to you by:
derrickoswald
From: <der...@us...> - 2004-02-29 17:07:10
|
Update of /cvsroot/htmlparser/htmlparser/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3933/docs Modified Files: changes.txt release.txt Log Message: Update version to 1.4-20040229 Index: changes.txt =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/docs/changes.txt,v retrieving revision 1.197 retrieving revision 1.198 diff -C2 -d -r1.197 -r1.198 *** changes.txt 16 Feb 2004 22:46:07 -0000 1.197 --- changes.txt 29 Feb 2004 16:48:28 -0000 1.198 *************** *** 13,16 **** --- 13,78 ---- ******************************************************************************* + Integration Build 1.4 - 20040229 + -------------------------------- + + 2004-02-29 10:09 derrickoswald + + * build.xml, src/doc-files/overview.html, + src/org/htmlparser/parserapplications/StringExtractor.java, + src/org/htmlparser/nodeDecorators/package.html, + src/org/htmlparser/tags/CompositeTag.java: + + Javadoc changes. + Fix the "low hanging fruit" javadoc issues. + + 2004-02-29 09:16 derrickoswald + + * src/org/htmlparser/: scanners/StyleScanner.java, + tags/StyleTag.java, tests/tagTests/StyleTagTest.java: + + Fix bug #900125 Style Tag Children not grouped + Added StyleScanner, a near copy of ScriptScanner. + Added testStyleChildren() in StyleTagTest to check it's operation. + + 2004-02-29 07:52 derrickoswald + + * src/org/htmlparser/: lexer/nodes/RemarkNode.java, + lexer/nodes/StringNode.java, tags/ImageTag.java, tags/LinkTag.java, + tests/ParserTest.java: + + Fix bug #900128 RemarkNode.setText() does not set Text + Add override setText() to StringNode and RemarkNode. + Add unit tests to excercise the new code. + Remove remaining XX_FILTER constants. + + 2004-02-28 20:38 derrickoswald + + * src/org/htmlparser/tags/ScriptTag.java: + + Correct booboo in ScriptTag toHtml() injected by fix to bug #902121. + + 2004-02-28 10:52 derrickoswald + + * src/org/htmlparser/: beans/StringBean.java, filters/package.html, + lexer/nodes/TagNode.java, scanners/ScriptDecoder.java, + scanners/ScriptScanner.java, tags/ScriptTag.java, tags/Tag.java, + tests/ParserTestCase.java, + tests/scannersTests/ScriptScannerTest.java: + + Fix bug #902121 StringBean throws NullPointerException. + Added ScriptDecoder to handle Microsoft Script Encoder encrypted tags. + Added accessor to ScriptTag's scriptCode property to be able to override it. + Ensured that a Tag always has a non-null name. + Skip STYLE tags in StringBean, just like SCRIPT. + + 2004-02-18 07:34 derrickoswald + + * src/org/htmlparser/: lexer/Lexer.java, + tests/lexerTests/LexerTests.java: + + Fix bug #899413 bug in javascript end detection. + Patch submitted by Gernot Fricke handles escaped quotes in strings when + lexing with smartquote turned on. Added test case in LexerTests. + Integration Build 1.4 - 20040216 -------------------------------- Index: release.txt =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/docs/release.txt,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** release.txt 16 Feb 2004 22:46:08 -0000 1.56 --- release.txt 29 Feb 2004 16:48:28 -0000 1.57 *************** *** 1,3 **** ! HTMLParser Version 1.4 (Integration Build Feb 16, 2004) ********************************************* --- 1,3 ---- ! HTMLParser Version 1.4 (Integration Build Feb 29, 2004) ********************************************* *************** *** 57,60 **** --- 57,62 ---- JDK stack, eliminating most StackOverflow exceptions. Also, a CompositeTag's "startTag()" is "this", and the CompositeTagScanner just adds children. + The ScriptScanner will now decrypt Microsoft Script Encoder encrypted script + tags. The plaintext is available via ScriptTag.getScriptCode(). Filters A new powerful filtering capability has been added, which makes extracting *************** *** 67,70 **** --- 69,76 ---- Bug Fixes --------- + 900125 Style Tag Children not grouped + 900128 RemarkNode.setText() does not set Text + 902121 StringBean throws NullPointerException. + 899413 bug in javascript end detection. 891058 Bug in lexer 865279 Documentation |