[Htmlparser-cvs] htmlparser/docs changes.txt,1.208,1.209 release.txt,1.72,1.73
Brought to you by:
derrickoswald
From: Derrick O. <der...@us...> - 2006-03-20 00:26:06
|
Update of /cvsroot/htmlparser/htmlparser/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5259/htmlparser/docs Modified Files: changes.txt release.txt Log Message: Update version to 1.6-20060319. Index: release.txt =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/docs/release.txt,v retrieving revision 1.72 retrieving revision 1.73 diff -C2 -d -r1.72 -r1.73 *** release.txt 12 Nov 2005 15:11:45 -0000 1.72 --- release.txt 20 Mar 2006 00:26:01 -0000 1.73 *************** *** 1,3 **** ! HTMLParser Version 1.6 (Integration Build Nov 12, 2005) ********************************************* --- 1,3 ---- ! HTMLParser Version 1.6 (Integration Build Mar 19, 2006) ********************************************* *************** *** 37,40 **** --- 37,42 ---- The TextNode class has an added isWhiteSpace method that returns true when it contains no printable characters. + NodeTreeWalker, a utility class to traverse a tree of Node objects using + either depth-first or breadth-first tree order has been added. Refactoring *************** *** 47,50 **** --- 49,56 ---- Bug Fixes --------- + #1445795 return as TextNode when processing jsp + #1445309 XML processing instructions are returned as text + #1376851 Null-valued cookies cause exception + #1375230 some javascript breaks stringbean #1344687 A bug when set cookies #1334408 Exception occurs based on string length Index: changes.txt =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/docs/changes.txt,v retrieving revision 1.208 retrieving revision 1.209 diff -C2 -d -r1.208 -r1.209 *** changes.txt 12 Nov 2005 15:11:45 -0000 1.208 --- changes.txt 20 Mar 2006 00:26:01 -0000 1.209 *************** *** 16,19 **** --- 16,109 ---- ******************************************************************************* + Integration Build 1.6 - 20060319 + -------------------------------- + 2006-03-19 19:02 derrickoswald + + * src/org/htmlparser/tests/tagTests/BodyTagTest.java: + + Fix unit test for body tag. + + 2006-03-19 17:13 derrickoswald + + * docs/panel.html: + + Fix name of current build. + + 2006-03-19 17:03 derrickoswald + + * build.xml, docs/bug.html, docs/panel.html: + + Fix bug #1363500 http://htmlparser.sourceforge.net/bug.html is wrong + Take down the wiki. + + 2006-03-19 16:26 derrickoswald + + * src/org/htmlparser/: lexer/Lexer.java, tags/BodyTag.java: + + Fix bug #1375230 some javascript breaks stringbean + Retrace non-conforming end of remark. + + 2006-03-19 15:14 derrickoswald + + * src/org/htmlparser/http/: ConnectionManager.java, Cookie.java: + + Fix bug #1376851 Null-valued cookies cause exception + Add handling for namewless cookies. + + 2006-03-19 13:40 derrickoswald + + * src/org/htmlparser/http/ConnectionManager.java: + + Remove deflate option from default request properties. + See RFE #1394144 handle deflate encoding. + + 2006-03-19 12:09 derrickoswald + + * src/org/htmlparser/lexer/Page.java: + + Typo. + + 2006-03-19 11:11 derrickoswald + + * src/org/htmlparser/lexer/Lexer.java: + + Fix bug #1445795 return as TextNode when processing jsp + Handle single and double line comments within jsp nodes. + Suggested alteration to handle jsp tags within tag attributes wasn't implemented. + + 2006-03-19 10:01 derrickoswald + + * docs/contributors.html, + src/org/htmlparser/PrototypicalNodeFactory.java, + src/org/htmlparser/lexer/Lexer.java, + src/org/htmlparser/tags/ProcessingInstructionTag.java, + src/org/htmlparser/tests/lexerTests/LexerTests.java: + + Incorporated patch #1450095 Fix for Bug 1445309 from Trejkaz Xaoza. + Addition of code to parse XML processing instructions. + + 2006-02-13 09:50 ian_macfarlane + + * src/org/htmlparser/util/NodeTreeWalker.java: + + A utility class to traverse a tree of Node objects using either depth-first or breadth-first tree traversal. Kind of like a NodeIterator for DOM-type trees of Nodes instead of linear sequences of Nodes. + + Post to the dev mailing list about this on the way. + + 2005-11-14 21:09 derrickoswald + + * src/org/htmlparser/: Attribute.java, Node.java, Parser.java, + PrototypicalNodeFactory.java, Remark.java, StringNodeFactory.java, + Tag.java, Text.java: + + Fix warnings flagged by doccheck. + + 2005-11-12 11:44 derrickoswald + + * src/org/htmlparser/tests/: lexerTests/LexerTests.java, + tagTests/FormTagTest.java, tagTests/LinkTagTest.java: + + Update tests for addition of Paragraph tag. + Integration Build 1.6 - 20051112 -------------------------------- |