[Htmlparser-cvs] htmlparser/docs changes.txt,1.199,1.199.2.1 release.txt,1.58,1.58.2.1
Brought to you by:
derrickoswald
From: Derrick O. <der...@us...> - 2004-05-22 20:10:40
|
Update of /cvsroot/htmlparser/htmlparser/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29429/docs Modified Files: Tag: v1_41 changes.txt release.txt Log Message: Fix bug# 919738 Text has not been extracted correctly using StringBean and (duplicate) bug #936392 ScriptTag visitor fails for comments with ' by handling single and multiline ecmascript comments in the Lexer class when called with quotesmart true. Index: release.txt =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/docs/release.txt,v retrieving revision 1.58 retrieving revision 1.58.2.1 diff -C2 -d -r1.58 -r1.58.2.1 *** release.txt 14 Mar 2004 16:31:40 -0000 1.58 --- release.txt 22 May 2004 20:10:31 -0000 1.58.2.1 *************** *** 1,3 **** ! HTMLParser Version 1.4 (Release Build Mar 14, 2004) ********************************************* --- 1,3 ---- ! HTMLParser Version 1.41 (Release Build May 22, 2004) ********************************************* *************** *** 19,22 **** --- 19,30 ---- (v) this file + Changes since Version 1.4 + ------------------------- + + Bug Fixes + --------- + 919738 Text has not been extracted correctly using StringBean + 936392 ScriptTag visitor fails for comments with ' (duplicate of above) + Changes since Version 1.3 ------------------------- Index: changes.txt =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/docs/changes.txt,v retrieving revision 1.199 retrieving revision 1.199.2.1 diff -C2 -d -r1.199 -r1.199.2.1 *** changes.txt 14 Mar 2004 16:31:39 -0000 1.199 --- changes.txt 22 May 2004 20:10:30 -0000 1.199.2.1 *************** *** 13,16 **** --- 13,33 ---- ******************************************************************************* + Release Build 1.41 - 20040522 + -------------------------------- + + 2004-05-22 16:10 derrickoswald + + * src/org/htmlparser/: lexer/Lexer.java, + docs/changes.txt, docs/release.txt + tests/parserHelperTests/StringParserTest.java, + tests/scannersTests/ScriptScannerTest.java, + tests/visitorsTests/AllTests.java, + tests/visitorsTests/ScriptCommentTest.java: + + Fix bug# 919738 Text has not been extracted correctly using StringBean + and (duplicate) bug #936392 ScriptTag visitor fails for comments with ' + by handling single and multiline ecmascript comments in the Lexer class + when called with quotesmart true. + Release Build 1.4 - 20040314 -------------------------------- |