[Htmlparser-cvs] htmlparser/docs changes.txt,1.207,1.208 release.txt,1.71,1.72
Brought to you by:
derrickoswald
From: Derrick O. <der...@us...> - 2005-11-12 15:11:53
|
Update of /cvsroot/htmlparser/htmlparser/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28975/htmlparser/docs Modified Files: changes.txt release.txt Log Message: Update version to 1.5-20051112. Index: release.txt =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/docs/release.txt,v retrieving revision 1.71 retrieving revision 1.72 diff -C2 -d -r1.71 -r1.72 *** release.txt 25 Sep 2005 13:23:00 -0000 1.71 --- release.txt 12 Nov 2005 15:11:45 -0000 1.72 *************** *** 1,3 **** ! HTMLParser Version 1.6 (Integration Build Sep 25, 2005) ********************************************* --- 1,3 ---- ! HTMLParser Version 1.6 (Integration Build Nov 12, 2005) ********************************************* *************** *** 28,31 **** --- 28,41 ---- ------------------------- + New Functionality + ----------------- + Support has been added for commonly requested composite tags, P and H1-H6. + Definition list tags (dl, dt, dd), are also now included in the standard + set of tags recognized by the parser. + The node interface has been augmented with get first/last child and + get previous/next sibling methods to ease traversing the HTML document. + The TextNode class has an added isWhiteSpace method that returns true + when it contains no printable characters. + Refactoring ----------- *************** *** 37,42 **** --- 47,59 ---- Bug Fixes --------- + #1344687 A bug when set cookies + #1334408 Exception occurs based on string length + #1322686 when illegal charset specified #1227213 Particular SCRIPT tags close too late + Patches + ------- + #1338534 Support get first/last child, previous/next sibling + Changes since Version 1.4 ------------------------- Index: changes.txt =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/docs/changes.txt,v retrieving revision 1.207 retrieving revision 1.208 diff -C2 -d -r1.207 -r1.208 *** changes.txt 25 Sep 2005 13:23:00 -0000 1.207 --- changes.txt 12 Nov 2005 15:11:45 -0000 1.208 *************** *** 16,19 **** --- 16,82 ---- ******************************************************************************* + Integration Build 1.6 - 20051112 + -------------------------------- + 2005-11-12 09:19 derrickoswald + + * src/org/htmlparser/http/ConnectionManager.java, + docs/contributors.html, + src/org/htmlparser/PrototypicalNodeFactory.java: + + Add cookie processing changes suggested by Marcus Mattern. + + 2005-11-04 10:49 ian_macfarlane + + * src/org/htmlparser/nodes/TextNode.java: + + Add method isWhiteSpace to TextNode that returns if the node is nothing + but white space (or null) or if it contains some characters. + + 2005-11-01 03:55 ian_macfarlane + + * src/org/htmlparser/nodeDecorators/AbstractNodeDecorator.java: + + Add methods first/last child previous/next sibling added to AbstractNode. + This is required to enable the project to compile. + + 2005-10-31 11:26 ian_macfarlane + + * src/org/htmlparser/: PrototypicalNodeFactory.java, + tags/DefinitionList.java, tags/DefinitionListBullet.java, + tags/HeadingTag.java, tags/ParagraphTag.java, + tags/TableColumn.java, tags/TableHeader.java, tags/TableRow.java: + + Added support for P and h1-h6 tags. + Added support for definition list tags (dl, dt, dd). + Let table row/column tags know when to close if encounter TBODY/TFOOT/THEAD. + + 2005-10-26 18:01 derrickoswald + + * docs/contributors.html, src/org/htmlparser/Node.java, + src/org/htmlparser/nodes/AbstractNode.java: + + Incorporate patch #1338534 Support get first/last child, previous/next sibling + from Ian Macfarlane. No unit tests. + + 2005-10-24 22:06 derrickoswald + + * src/org/htmlparser/: lexer/Page.java, tags/MetaTag.java: + + Fix bug 1322686 when illegal charset specified + Use current source charset as the default if there is already a source. + + 2005-10-24 21:26 derrickoswald + + * src/org/htmlparser/lexer/InputStreamSource.java: + + Fixed bug #1334408 Exception occurs based on string length + Changed >= test to > to avoid off-by-one error. + + 2005-09-25 21:01 derrickoswald + + * build.xml: + + Fix htmlparser target. + Integration Build 1.6 - 20050925 -------------------------------- |