[Htmlparser-cvs] htmlparser/docs changes.txt,1.206,1.207 release.txt,1.70,1.71
Brought to you by:
derrickoswald
|
From: Derrick O. <der...@us...> - 2005-09-25 13:23:15
|
Update of /cvsroot/htmlparser/htmlparser/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13518/htmlparser/docs Modified Files: changes.txt release.txt Log Message: Update version to 1.6-20050925. Index: release.txt =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/docs/release.txt,v retrieving revision 1.70 retrieving revision 1.71 diff -C2 -d -r1.70 -r1.71 *** release.txt 14 Jun 2005 10:37:33 -0000 1.70 --- release.txt 25 Sep 2005 13:23:00 -0000 1.71 *************** *** 1,3 **** ! HTMLParser Version 1.5 (Release Build Jun 14, 2005) ********************************************* --- 1,3 ---- ! HTMLParser Version 1.6 (Integration Build Sep 25, 2005) ********************************************* *************** *** 25,28 **** --- 25,42 ---- (vi) this file, readme.txt + Changes since Version 1.5 + ------------------------- + + Refactoring + ----------- + The FilterBean now has a 'recursive' property to control descent through + children when applying filters. + The NodeList class is a little more standard now with a remove(node) method. + Some refactoring to allow the htmllexer jar file to be compiled by gcj. + + Bug Fixes + --------- + #1227213 Particular SCRIPT tags close too late + Changes since Version 1.4 ------------------------- *************** *** 144,147 **** --- 158,166 ---- [35] Enrico Triolo [36] Dave Anderson + [37] Keiron McCammon + [38] Martin Hudson + [39] Matthew Buckett + [40] Jamie McCrindle + [41] John Derrick If you find any bugs, please go to Index: changes.txt =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/docs/changes.txt,v retrieving revision 1.206 retrieving revision 1.207 diff -C2 -d -r1.206 -r1.207 *** changes.txt 14 Jun 2005 10:37:33 -0000 1.206 --- changes.txt 25 Sep 2005 13:23:00 -0000 1.207 *************** *** 16,19 **** --- 16,71 ---- ******************************************************************************* + Integration Build 1.6 - 20050925 + -------------------------------- + + 2005-09-18 22:35 derrickoswald + + * docs/contributors.html, + src/org/htmlparser/lexer/InputStreamSource.java, + src/org/htmlparser/lexer/Lexer.java, + src/org/htmlparser/tests/lexerTests/LexerTests.java: + + Apply patch #1247128 Bug Fix: #1227213 Particular SCRIPT tags close too late + from Keiron McCammon. + + 2005-09-18 19:40 derrickoswald + + * docs/contributors.html, src/org/htmlparser/beans/FilterBean.java, + src/org/htmlparser/filters/LinkRegexFilter.java: + + Add recursive property on FilterBean suggested by Martin Hudson. + + 2005-09-18 19:00 derrickoswald + + * docs/contributors.html, + src/org/htmlparser/tests/utilTests/NodeListTest.java, + src/org/htmlparser/util/NodeList.java: + + Add remove(Node) method and code suggested by Matthew Buckett. + + 2005-06-19 21:56 derrickoswald + + * src/org/htmlparser/: http/ConnectionManager.java, + lexer/Lexer.java, lexer/Page.java, lexer/Stream.java, + tags/CompositeTag.java: + + Optimizations suggested by profiling. + Correction to previous drop: + -- use extractAllNodesThatmatch to replace searchFor(cls) -- + + 2005-06-19 08:01 derrickoswald + + * build.xml, src/org/htmlparser/Parser.java, + src/org/htmlparser/http/ConnectionManager.java, + src/org/htmlparser/http/HttpHeader.java, + src/org/htmlparser/http/package.html, + src/org/htmlparser/util/NodeList.java: + + Changes to allow compilation of htmllexer.jar by gcj. + Move non-JDK1.1 functionality to HttpHeader class. + Unhook NodeList from filters by removing searchFor(cls) - + use keepAllNodesThatMatch(new NodeClassFilter(cls)) instead. + Include classes missing from closure set. + Release Build 1.5 - 20050614 -------------------------------- |