htmlparser-cvs Mailing List for HTML Parser (Page 13)
Brought to you by:
derrickoswald
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(141) |
Jun
(108) |
Jul
(66) |
Aug
(127) |
Sep
(155) |
Oct
(149) |
Nov
(72) |
Dec
(72) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(100) |
Feb
(36) |
Mar
(21) |
Apr
(3) |
May
(87) |
Jun
(28) |
Jul
(84) |
Aug
(5) |
Sep
(14) |
Oct
|
Nov
|
Dec
|
2005 |
Jan
(1) |
Feb
(39) |
Mar
(26) |
Apr
(38) |
May
(14) |
Jun
(10) |
Jul
|
Aug
|
Sep
(13) |
Oct
(8) |
Nov
(10) |
Dec
|
2006 |
Jan
|
Feb
(1) |
Mar
(17) |
Apr
(20) |
May
(28) |
Jun
(24) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Derrick O. <der...@us...> - 2004-07-22 02:22:40
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19476/src/org/htmlparser/tests/tagTests Modified Files: LinkTagTest.java Log Message: Add test case for bug #982175 False Positives on ® entity. Not reproducible (version 1.5). Index: LinkTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/LinkTagTest.java,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** LinkTagTest.java 18 Jul 2004 21:31:21 -0000 1.49 --- LinkTagTest.java 22 Jul 2004 02:22:31 -0000 1.50 *************** *** 854,856 **** --- 854,874 ---- assertEquals ("plain text", "Cities", linkTag.toPlainTextString ()); } + + /** + * See bug #982175 False Positives on ® entity + */ + public void testCharacterReferenceInLink() throws Exception + { + String html = "<a href=\"http://www.someplace.com/somepage.html?®ion=us\">Search By Region</a>" + + "<a href=\"http://www.someplace.com/somepage.html?®ion=&destination=184\">Search by Destination</a>"; + createParser (html); + parseAndAssertNodeCount (2); + assertType("node", LinkTag.class, node[0]); + LinkTag linkTag = (LinkTag)node[0]; + assertEquals ("link", "http://www.someplace.com/somepage.html?®ion=us", linkTag.getLink()); + assertType("node", LinkTag.class, node[1]); + linkTag = (LinkTag)node[1]; + assertEquals ("link", "http://www.someplace.com/somepage.html?®ion=&destination=184", linkTag.getLink()); + } + } |
From: Derrick O. <der...@us...> - 2004-07-18 21:31:58
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29557/src/org/htmlparser/tags Modified Files: FormTag.java Log Message: Fix some javadoc warnings. Index: FormTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/FormTag.java,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** FormTag.java 18 Mar 2004 04:04:08 -0000 1.48 --- FormTag.java 18 Jul 2004 21:31:20 -0000 1.49 *************** *** 213,217 **** * Extract the location of the image, given the tag, and the url * of the html page in which this tag exists. - * @param url URL of web page being parsed. */ public String extractFormLocn () --- 213,216 ---- |
From: Derrick O. <der...@us...> - 2004-07-18 21:31:58
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29557/src/org/htmlparser/util Modified Files: Translate.java Log Message: Fix some javadoc warnings. Index: Translate.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/Translate.java,v retrieving revision 1.44 retrieving revision 1.45 diff -C2 -d -r1.44 -r1.45 *** Translate.java 17 Jul 2004 13:45:05 -0000 1.44 --- Translate.java 18 Jul 2004 21:31:20 -0000 1.45 *************** *** 704,708 **** * Look up a reference by kernel. * Use a binary search on the ordered list of known references. ! * <em>This is not very efficient, use {@link #lookup(CharacterReference) } * instead.</em> * @param kernel The string to lookup, i.e. "amp". --- 704,708 ---- * Look up a reference by kernel. * Use a binary search on the ordered list of known references. ! * <em>This is not very efficient, use {@link org.htmlparser.util.Translate#lookup(org.htmlparser.util.CharacterReference) lookup(CharacterReference)} * instead.</em> * @param kernel The string to lookup, i.e. "amp". |
From: Derrick O. <der...@us...> - 2004-07-18 21:31:58
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29557/src/org/htmlparser/tests/scannersTests Modified Files: ScriptScannerTest.java Log Message: Fix some javadoc warnings. Index: ScriptScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/ScriptScannerTest.java,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** ScriptScannerTest.java 17 Jul 2004 13:45:05 -0000 1.55 --- ScriptScannerTest.java 18 Jul 2004 21:31:19 -0000 1.56 *************** *** 65,68 **** --- 65,69 ---- /** + * Test javascript tag attributes. * Bug reported by Gordon Deudney 2002-03-27 * Upon parsing : *************** *** 85,88 **** --- 86,90 ---- /** + * Test script code. * Bug check by Wolfgang Germund 2002-06-02 * Upon parsing : |
From: Derrick O. <der...@us...> - 2004-07-18 21:31:31
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/sax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29557/src/org/htmlparser/sax Modified Files: Feedback.java Log Message: Fix some javadoc warnings. Index: Feedback.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/sax/Feedback.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Feedback.java 14 Jul 2004 01:58:02 -0000 1.1 --- Feedback.java 18 Jul 2004 21:31:22 -0000 1.2 *************** *** 64,67 **** --- 64,68 ---- /** + * Information message. * <em>Just eats the info message.</em> * @param message {@inheritDoc} *************** *** 73,76 **** --- 74,78 ---- /** + * Warning message. * Calls {@link ErrorHandler#warning(SAXParseException) ErrorHandler.warning}. * @param message {@inheritDoc} *************** *** 90,93 **** --- 92,96 ---- /** + * Error message. * Calls {@link ErrorHandler#error(SAXParseException) ErrorHandler.error}. * @param message {@inheritDoc} |
From: Derrick O. <der...@us...> - 2004-07-18 21:31:31
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29557/src/org/htmlparser Modified Files: PrototypicalNodeFactory.java Log Message: Fix some javadoc warnings. Index: PrototypicalNodeFactory.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/PrototypicalNodeFactory.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** PrototypicalNodeFactory.java 2 Jul 2004 00:49:26 -0000 1.11 --- PrototypicalNodeFactory.java 18 Jul 2004 21:31:22 -0000 1.12 *************** *** 326,330 **** /** * Get the object being used to generate generic tag nodes. ! * These are returned from {@link createTagNode} when no specific tag * is found in the registered tag list. * @return The prototype for {@link Tag} nodes. --- 326,330 ---- /** * Get the object being used to generate generic tag nodes. ! * These are returned from {@link #createTagNode} when no specific tag * is found in the registered tag list. * @return The prototype for {@link Tag} nodes. *************** *** 337,343 **** /** * Set the object to be used to generate tag nodes. ! * These are returned from {@link createTagNode} when no specific tag * is found in the registered tag list. ! * @param remark The prototype for {@link Tag} nodes. */ public void setTagPrototype (Tag tag) --- 337,343 ---- /** * Set the object to be used to generate tag nodes. ! * These are returned from {@link #createTagNode} when no specific tag * is found in the registered tag list. ! * @param tag The prototype for {@link Tag} nodes. */ public void setTagPrototype (Tag tag) |
From: Derrick O. <der...@us...> - 2004-07-18 21:31:30
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/lexerTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29557/src/org/htmlparser/tests/lexerTests Modified Files: AttributeTests.java Log Message: Fix some javadoc warnings. Index: AttributeTests.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/lexerTests/AttributeTests.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** AttributeTests.java 17 Jul 2004 13:45:05 -0000 1.18 --- AttributeTests.java 18 Jul 2004 21:31:22 -0000 1.19 *************** *** 547,550 **** --- 547,551 ---- /** + * Test for lost attributes. * see bug #778781 SRC-attribute suppression in IMG-tags * & #753012 IMG SRC not parsed v1.3 & v1.4 |
From: Derrick O. <der...@us...> - 2004-07-18 21:31:30
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29557/src/org/htmlparser/tests/utilTests Modified Files: AllTests.java Log Message: Fix some javadoc warnings. Index: AllTests.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests/AllTests.java,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** AllTests.java 18 Mar 2004 04:04:08 -0000 1.55 --- AllTests.java 18 Jul 2004 21:31:21 -0000 1.56 *************** *** 35,39 **** * Insert the type's description here. * Creation date: (6/17/2001 6:07:04 PM) - * @author: Administrator */ public class AllTests extends ParserTestCase --- 35,38 ---- |
From: Derrick O. <der...@us...> - 2004-07-18 21:31:30
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/nodes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29557/src/org/htmlparser/nodes Modified Files: TagNode.java Log Message: Fix some javadoc warnings. Index: TagNode.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/nodes/TagNode.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TagNode.java 17 Jul 2004 13:45:04 -0000 1.3 --- TagNode.java 18 Jul 2004 21:31:21 -0000 1.4 *************** *** 152,156 **** /** * Create a tag like the one provided. ! * @param node The tag to emulate. * @param scanner The scanner for this tag. */ --- 152,156 ---- /** * Create a tag like the one provided. ! * @param tag The tag to emulate. * @param scanner The scanner for this tag. */ |
From: Derrick O. <der...@us...> - 2004-07-18 21:31:30
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/parserHelperTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29557/src/org/htmlparser/tests/parserHelperTests Modified Files: StringParserTest.java RemarkNodeParserTest.java Log Message: Fix some javadoc warnings. Index: RemarkNodeParserTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/parserHelperTests/RemarkNodeParserTest.java,v retrieving revision 1.46 retrieving revision 1.47 diff -C2 -d -r1.46 -r1.47 *** RemarkNodeParserTest.java 2 Jul 2004 00:49:30 -0000 1.46 --- RemarkNodeParserTest.java 18 Jul 2004 21:31:21 -0000 1.47 *************** *** 47,50 **** --- 47,51 ---- /** + * Test unparsed remark node. * The bug being reproduced is this : <BR> * <!-- saved from url=(0022)http://internet.e-mail --> *************** *** 183,186 **** --- 184,188 ---- /** + * Test tag within remark. * Reproduction of bug reported by John Zook [594301] * When we have tags like : *************** *** 362,365 **** --- 364,368 ---- /** + * Test exclamation mark ending. * Test a comment ending with !--. * See bug #788746 parser crashes on comments like <!-- foobar --!> Index: StringParserTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/parserHelperTests/StringParserTest.java,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** StringParserTest.java 24 May 2004 16:18:32 -0000 1.48 --- StringParserTest.java 18 Jul 2004 21:31:21 -0000 1.49 *************** *** 68,71 **** --- 68,72 ---- /** + * Test string containing link. * Bug reported by Kaarle Kaila of Nokia<br> * For the following HTML : |
From: Derrick O. <der...@us...> - 2004-07-18 21:31:30
|
Update of /cvsroot/htmlparser/htmlparser/src/doc-files In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29557/src/doc-files Modified Files: overview.html Log Message: Fix some javadoc warnings. Index: overview.html =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/doc-files/overview.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** overview.html 29 Feb 2004 15:09:56 -0000 1.3 --- overview.html 18 Jul 2004 21:31:21 -0000 1.4 *************** *** 25,29 **** Bugs are by far, the highest priority issues. Various reports of bugs related to the HTML Parser is available from the <A ! HREF="http://sourceforge.net/tracker/?group_id=24399&atid=381399">Bug Tracker</A> on SourceForge. Issues related to incorrect behaviour of the current parser should be logged and tracked using this mechanism. Please use --- 25,29 ---- Bugs are by far, the highest priority issues. Various reports of bugs related to the HTML Parser is available from the <A ! HREF="http://sourceforge.net/tracker/?group_id=24399&atid=381399" target="_top">Bug Tracker</A> on SourceForge. Issues related to incorrect behaviour of the current parser should be logged and tracked using this mechanism. Please use |
From: Derrick O. <der...@us...> - 2004-07-18 21:31:29
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29557/src/org/htmlparser/tests/tagTests Modified Files: ImageTagTest.java ScriptTagTest.java LinkTagTest.java Log Message: Fix some javadoc warnings. Index: ImageTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/ImageTagTest.java,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** ImageTagTest.java 24 May 2004 16:18:33 -0000 1.43 --- ImageTagTest.java 18 Jul 2004 21:31:21 -0000 1.44 *************** *** 179,182 **** --- 179,183 ---- /** + * Test empty attribute. * See bug #755929 Empty string attr. value causes attr parsing to be stopped * and bug #753012 IMG SRC not parsed v1.3 & v1.4 Index: LinkTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/LinkTagTest.java,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** LinkTagTest.java 2 Jul 2004 00:49:31 -0000 1.48 --- LinkTagTest.java 18 Jul 2004 21:31:21 -0000 1.49 *************** *** 340,343 **** --- 340,344 ---- /** + * Test mail link. * Bug #738504 MailLink != HTTPLink */ Index: ScriptTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/ScriptTagTest.java,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** ScriptTagTest.java 14 Jan 2004 02:53:47 -0000 1.43 --- ScriptTagTest.java 18 Jul 2004 21:31:21 -0000 1.44 *************** *** 76,89 **** /** ! * Bug check by Wolfgang Germund 2002-06-02 ! * Upon parsing : ! * <script language="javascript"> ! * if(navigator.appName.indexOf("Netscape") != -1) ! * document.write ('xxx'); ! * else ! * document.write ('yyy'); ! * </script> ! * check toRawString(). ! */ public void testToHTMLWG() throws ParserException { --- 76,90 ---- /** ! * Test raw string. ! * Bug check by Wolfgang Germund 2002-06-02 ! * Upon parsing : ! * <script language="javascript"> ! * if(navigator.appName.indexOf("Netscape") != -1) ! * document.write ('xxx'); ! * else ! * document.write ('yyy'); ! * </script> ! * check toRawString(). ! */ public void testToHTMLWG() throws ParserException { |
From: Derrick O. <der...@us...> - 2004-07-18 21:31:29
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/visitorsTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29557/src/org/htmlparser/tests/visitorsTests Modified Files: ScriptCommentTest.java Log Message: Fix some javadoc warnings. Index: ScriptCommentTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/visitorsTests/ScriptCommentTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ScriptCommentTest.java 24 May 2004 00:38:19 -0000 1.2 --- ScriptCommentTest.java 18 Jul 2004 21:31:20 -0000 1.3 *************** *** 121,128 **** /** * Creates a new ScriptVisitor object. - * - * @param hat param. - * @param hostString param. - * @param direction param. */ public ScriptVisitor() { --- 121,124 ---- |
From: Derrick O. <der...@us...> - 2004-07-17 13:45:46
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32539/src/org/htmlparser/tags Modified Files: ImageTag.java TitleTag.java LinkTag.java Log Message: Remove unused imports. Index: ImageTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/ImageTag.java,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -d -r1.47 -r1.48 *** ImageTag.java 2 Jul 2004 00:49:28 -0000 1.47 --- ImageTag.java 17 Jul 2004 13:45:04 -0000 1.48 *************** *** 33,37 **** import org.htmlparser.nodes.TagNode; import org.htmlparser.util.ParserUtils; - import org.htmlparser.visitors.NodeVisitor; /** --- 33,36 ---- Index: LinkTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/LinkTag.java,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** LinkTag.java 24 May 2004 00:38:17 -0000 1.50 --- LinkTag.java 17 Jul 2004 13:45:04 -0000 1.51 *************** *** 30,34 **** import org.htmlparser.util.ParserUtils; import org.htmlparser.util.SimpleNodeIterator; - import org.htmlparser.visitors.NodeVisitor; /** --- 30,33 ---- Index: TitleTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/TitleTag.java,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** TitleTag.java 24 May 2004 00:38:18 -0000 1.34 --- TitleTag.java 17 Jul 2004 13:45:04 -0000 1.35 *************** *** 27,32 **** package org.htmlparser.tags; - import org.htmlparser.visitors.NodeVisitor; - /** * A title tag. --- 27,30 ---- |
From: Derrick O. <der...@us...> - 2004-07-17 13:45:46
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/nodes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32539/src/org/htmlparser/nodes Modified Files: TextNode.java AbstractNode.java TagNode.java RemarkNode.java Log Message: Remove unused imports. Index: RemarkNode.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/nodes/RemarkNode.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RemarkNode.java 14 Jun 2004 00:06:51 -0000 1.2 --- RemarkNode.java 17 Jul 2004 13:45:04 -0000 1.3 *************** *** 30,34 **** import org.htmlparser.lexer.Cursor; import org.htmlparser.lexer.Page; - import org.htmlparser.util.NodeList; import org.htmlparser.util.ParserException; import org.htmlparser.visitors.NodeVisitor; --- 30,33 ---- Index: TextNode.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/nodes/TextNode.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TextNode.java 14 Jun 2004 00:06:51 -0000 1.2 --- TextNode.java 17 Jul 2004 13:45:04 -0000 1.3 *************** *** 30,34 **** import org.htmlparser.lexer.Cursor; import org.htmlparser.lexer.Page; - import org.htmlparser.util.NodeList; import org.htmlparser.util.ParserException; import org.htmlparser.visitors.NodeVisitor; --- 30,33 ---- Index: AbstractNode.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/nodes/AbstractNode.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AbstractNode.java 14 Jun 2004 00:06:51 -0000 1.2 --- AbstractNode.java 17 Jul 2004 13:45:04 -0000 1.3 *************** *** 29,33 **** import java.io.Serializable; - import org.htmlparser.Attribute; import org.htmlparser.Node; import org.htmlparser.NodeFilter; --- 29,32 ---- Index: TagNode.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/nodes/TagNode.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TagNode.java 2 Jul 2004 00:49:27 -0000 1.2 --- TagNode.java 17 Jul 2004 13:45:04 -0000 1.3 *************** *** 41,45 **** import org.htmlparser.util.ParserException; import org.htmlparser.util.SpecialHashtable; - import org.htmlparser.util.Translate; import org.htmlparser.visitors.NodeVisitor; --- 41,44 ---- |
From: Derrick O. <der...@us...> - 2004-07-17 13:45:46
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32539/src/org/htmlparser/tests/utilTests Modified Files: CharacterTranslationTest.java HTMLParserUtilsTest.java Log Message: Remove unused imports. Index: HTMLParserUtilsTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests/HTMLParserUtilsTest.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** HTMLParserUtilsTest.java 24 May 2004 16:18:34 -0000 1.17 --- HTMLParserUtilsTest.java 17 Jul 2004 13:45:03 -0000 1.18 *************** *** 28,32 **** import org.htmlparser.NodeFilter; - import org.htmlparser.Parser; import org.htmlparser.filters.*; import org.htmlparser.tags.*; --- 28,31 ---- Index: CharacterTranslationTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests/CharacterTranslationTest.java,v retrieving revision 1.44 retrieving revision 1.45 diff -C2 -d -r1.44 -r1.45 *** CharacterTranslationTest.java 2 Jul 2004 00:49:31 -0000 1.44 --- CharacterTranslationTest.java 17 Jul 2004 13:45:03 -0000 1.45 *************** *** 37,41 **** import java.io.PrintWriter; import java.lang.reflect.Field; - import java.lang.reflect.Method; import java.net.URL; import java.net.URLConnection; --- 37,40 ---- |
From: Derrick O. <der...@us...> - 2004-07-17 13:45:46
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32539/src/org/htmlparser/scanners Modified Files: CompositeTagScanner.java ScriptScanner.java StyleScanner.java ScriptDecoder.java Log Message: Remove unused imports. Index: ScriptDecoder.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/ScriptDecoder.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ScriptDecoder.java 28 Feb 2004 15:52:43 -0000 1.1 --- ScriptDecoder.java 17 Jul 2004 13:45:03 -0000 1.2 *************** *** 27,33 **** package org.htmlparser.scanners; - import java.io.FileInputStream; - import java.io.FileOutputStream; - import java.io.IOException; import org.htmlparser.lexer.Cursor; import org.htmlparser.lexer.Page; --- 27,30 ---- Index: StyleScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/StyleScanner.java,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** StyleScanner.java 2 Jul 2004 00:49:28 -0000 1.36 --- StyleScanner.java 17 Jul 2004 13:45:03 -0000 1.37 *************** *** 34,38 **** import org.htmlparser.Remark; import org.htmlparser.Text; - import org.htmlparser.lexer.Cursor; import org.htmlparser.lexer.Lexer; import org.htmlparser.Tag; --- 34,37 ---- Index: CompositeTagScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/CompositeTagScanner.java,v retrieving revision 1.87 retrieving revision 1.88 diff -C2 -d -r1.87 -r1.88 *** CompositeTagScanner.java 2 Jul 2004 00:49:28 -0000 1.87 --- CompositeTagScanner.java 17 Jul 2004 13:45:03 -0000 1.88 *************** *** 34,38 **** import org.htmlparser.lexer.Lexer; import org.htmlparser.lexer.Page; - import org.htmlparser.nodes.TagNode; import org.htmlparser.scanners.Scanner; import org.htmlparser.util.NodeList; --- 34,37 ---- Index: ScriptScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/ScriptScanner.java,v retrieving revision 1.59 retrieving revision 1.60 diff -C2 -d -r1.59 -r1.60 *** ScriptScanner.java 2 Jul 2004 00:49:28 -0000 1.59 --- ScriptScanner.java 17 Jul 2004 13:45:03 -0000 1.60 *************** *** 35,39 **** import org.htmlparser.Tag; import org.htmlparser.Text; - import org.htmlparser.lexer.Cursor; import org.htmlparser.lexer.Lexer; import org.htmlparser.scanners.ScriptDecoder; --- 35,38 ---- |
From: Derrick O. <der...@us...> - 2004-07-17 13:45:16
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32539/src/org/htmlparser/tests/tagTests Modified Files: StyleTagTest.java TagTest.java Log Message: Remove unused imports. Index: StyleTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/StyleTagTest.java,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** StyleTagTest.java 24 May 2004 16:18:33 -0000 1.37 --- StyleTagTest.java 17 Jul 2004 13:45:06 -0000 1.38 *************** *** 27,31 **** package org.htmlparser.tests.tagTests; - import org.htmlparser.Parser; import org.htmlparser.Text; import org.htmlparser.tags.HeadTag; --- 27,30 ---- Index: TagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/TagTest.java,v retrieving revision 1.59 retrieving revision 1.60 diff -C2 -d -r1.59 -r1.60 *** TagTest.java 2 Jul 2004 00:49:31 -0000 1.59 --- TagTest.java 17 Jul 2004 13:45:06 -0000 1.60 *************** *** 42,46 **** import org.htmlparser.util.NodeIterator; import org.htmlparser.util.ParserException; - import org.htmlparser.util.SpecialHashtable; public class TagTest extends ParserTestCase --- 42,45 ---- |
From: Derrick O. <der...@us...> - 2004-07-17 13:45:15
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/filters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32539/src/org/htmlparser/filters Modified Files: CssSelectorNodeFilter.java HasParentFilter.java Log Message: Remove unused imports. Index: HasParentFilter.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/filters/HasParentFilter.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** HasParentFilter.java 2 Jul 2004 00:49:27 -0000 1.3 --- HasParentFilter.java 17 Jul 2004 13:45:04 -0000 1.4 *************** *** 29,33 **** import org.htmlparser.Node; import org.htmlparser.NodeFilter; - import org.htmlparser.Tag; import org.htmlparser.util.NodeList; --- 29,32 ---- Index: CssSelectorNodeFilter.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/filters/CssSelectorNodeFilter.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CssSelectorNodeFilter.java 2 Jul 2004 00:49:27 -0000 1.3 --- CssSelectorNodeFilter.java 17 Jul 2004 13:45:04 -0000 1.4 *************** *** 27,31 **** package org.htmlparser.filters; - import java.net.URLConnection; import java.util.regex.Matcher; import java.util.regex.Pattern; --- 27,30 ---- *************** *** 34,39 **** import org.htmlparser.NodeFilter; import org.htmlparser.Tag; - import org.htmlparser.lexer.Lexer; - import org.htmlparser.util.NodeIterator; import org.htmlparser.util.NodeList; --- 33,36 ---- |
From: Derrick O. <der...@us...> - 2004-07-17 13:45:15
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32539/src/org/htmlparser/tests Modified Files: ParserTestCase.java Log Message: Remove unused imports. Index: ParserTestCase.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/ParserTestCase.java,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** ParserTestCase.java 2 Jul 2004 01:33:26 -0000 1.50 --- ParserTestCase.java 17 Jul 2004 13:45:04 -0000 1.51 *************** *** 28,32 **** import java.util.Enumeration; - import java.util.Iterator; import java.util.Properties; import java.util.Vector; --- 28,31 ---- *************** *** 48,52 **** import org.htmlparser.util.ParserException; import org.htmlparser.util.ParserUtils; - import org.htmlparser.util.SpecialHashtable; public class ParserTestCase extends TestCase { --- 47,50 ---- |
From: Derrick O. <der...@us...> - 2004-07-17 13:45:15
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32539/src/org/htmlparser Modified Files: Parser.java Attribute.java Log Message: Remove unused imports. Index: Attribute.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/Attribute.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Attribute.java 24 May 2004 16:18:12 -0000 1.1 --- Attribute.java 17 Jul 2004 13:45:05 -0000 1.2 *************** *** 28,33 **** import java.io.Serializable; - import org.htmlparser.lexer.Page; - import org.htmlparser.util.Translate; /** --- 28,31 ---- Index: Parser.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/Parser.java,v retrieving revision 1.95 retrieving revision 1.96 diff -C2 -d -r1.95 -r1.96 *** Parser.java 3 Jul 2004 13:56:07 -0000 1.95 --- Parser.java 17 Jul 2004 13:45:05 -0000 1.96 *************** *** 30,34 **** import java.io.IOException; import java.io.Serializable; - import java.io.UnsupportedEncodingException; import java.net.MalformedURLException; import java.net.URL; --- 30,33 ---- |
From: Derrick O. <der...@us...> - 2004-07-17 13:45:15
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32539/src/org/htmlparser/util Modified Files: Translate.java ParserUtils.java Log Message: Remove unused imports. Index: ParserUtils.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/ParserUtils.java,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** ParserUtils.java 3 Jul 2004 13:56:09 -0000 1.43 --- ParserUtils.java 17 Jul 2004 13:45:06 -0000 1.44 *************** *** 38,42 **** import org.htmlparser.lexer.Lexer; import org.htmlparser.lexer.Page; - import org.htmlparser.lexer.Source; import org.htmlparser.tags.CompositeTag; import org.htmlparser.util.NodeList; --- 38,41 ---- Index: Translate.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/Translate.java,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** Translate.java 9 Feb 2004 02:09:45 -0000 1.43 --- Translate.java 17 Jul 2004 13:45:05 -0000 1.44 *************** *** 32,48 **** import java.io.InputStream; import java.io.InputStreamReader; - import java.io.LineNumberReader; import java.io.OutputStreamWriter; import java.io.PrintStream; import java.io.PrintWriter; import java.io.Reader; - import java.io.Serializable; import java.io.UnsupportedEncodingException; - import java.util.HashMap; - import java.util.HashSet; - import java.util.Iterator; - import java.util.Map; - import org.htmlparser.util.sort.Ordered; import org.htmlparser.util.sort.Sort; --- 32,41 ---- |
From: Derrick O. <der...@us...> - 2004-07-17 13:45:15
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32539/src/org/htmlparser/tests/scannersTests Modified Files: ScriptScannerTest.java Log Message: Remove unused imports. Index: ScriptScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/ScriptScannerTest.java,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** ScriptScannerTest.java 22 May 2004 03:57:30 -0000 1.54 --- ScriptScannerTest.java 17 Jul 2004 13:45:05 -0000 1.55 *************** *** 27,32 **** package org.htmlparser.tests.scannersTests; - import java.io.IOException; - import java.io.StringReader; import java.util.Hashtable; --- 27,30 ---- |
From: Derrick O. <der...@us...> - 2004-07-17 13:45:14
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/lexer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32539/src/org/htmlparser/lexer Modified Files: InputStreamSource.java Log Message: Remove unused imports. Index: InputStreamSource.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/lexer/InputStreamSource.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** InputStreamSource.java 3 Jul 2004 13:56:08 -0000 1.1 --- InputStreamSource.java 17 Jul 2004 13:45:05 -0000 1.2 *************** *** 33,38 **** import java.io.ObjectInputStream; import java.io.ObjectOutputStream; - import java.io.Reader; - import java.io.Serializable; import java.io.UnsupportedEncodingException; --- 33,36 ---- |
From: Derrick O. <der...@us...> - 2004-07-17 13:45:14
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/lexerTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32539/src/org/htmlparser/tests/lexerTests Modified Files: AttributeTests.java Log Message: Remove unused imports. Index: AttributeTests.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/lexerTests/AttributeTests.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** AttributeTests.java 2 Jul 2004 00:49:30 -0000 1.17 --- AttributeTests.java 17 Jul 2004 13:45:05 -0000 1.18 *************** *** 27,31 **** package org.htmlparser.tests.lexerTests; - import java.util.Hashtable; import java.util.Vector; import org.htmlparser.Node; --- 27,30 ---- *************** *** 41,45 **** import org.htmlparser.util.NodeIterator; import org.htmlparser.util.ParserException; - import org.htmlparser.util.SpecialHashtable; public class AttributeTests extends ParserTestCase --- 40,43 ---- |