htmlparser-cvs Mailing List for HTML Parser (Page 55)
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: <jke...@us...> - 2003-06-13 20:27:09
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util In directory sc8-pr-cvs1:/tmp/cvs-serv17851/src/org/htmlparser/util Modified Files: NodeList.java Log Message: Renamed Node to AbstractNode, extracted the new interface, Node, and moved line separator code from AbstractNode to Parser. Index: NodeList.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/NodeList.java,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** NodeList.java 1 Jun 2003 20:50:18 -0000 1.30 --- NodeList.java 13 Jun 2003 20:27:04 -0000 1.31 *************** *** 32,35 **** --- 32,36 ---- import java.util.NoSuchElementException; + import org.htmlparser.AbstractNode; import org.htmlparser.Node; *************** *** 46,50 **** size = 0; capacity = INITIAL_CAPACITY; ! nodeData = new Node[capacity]; capacityIncrement = capacity*2; numberOfAdjustments = 0; --- 47,51 ---- size = 0; capacity = INITIAL_CAPACITY; ! nodeData = new AbstractNode[capacity]; capacityIncrement = capacity*2; numberOfAdjustments = 0; *************** *** 74,78 **** capacityIncrement *= 2; Node oldData [] = nodeData; ! nodeData = new Node[capacity]; System.arraycopy(oldData, 0, nodeData, 0, size); numberOfAdjustments++; --- 75,79 ---- capacityIncrement *= 2; Node oldData [] = nodeData; ! nodeData = new AbstractNode[capacity]; System.arraycopy(oldData, 0, nodeData, 0, size); numberOfAdjustments++; *************** *** 111,115 **** public Node [] toNodeArray() { ! Node [] nodeArray = new Node[size]; System.arraycopy(nodeData, 0, nodeArray, 0, size); return nodeArray; --- 112,116 ---- public Node [] toNodeArray() { ! Node [] nodeArray = new AbstractNode[size]; System.arraycopy(nodeData, 0, nodeArray, 0, size); return nodeArray; *************** *** 138,142 **** size = 0; capacity = INITIAL_CAPACITY; ! nodeData = new Node[capacity]; capacityIncrement = capacity*2; numberOfAdjustments = 0; --- 139,143 ---- size = 0; capacity = INITIAL_CAPACITY; ! nodeData = new AbstractNode[capacity]; capacityIncrement = capacity*2; numberOfAdjustments = 0; |
From: <jke...@us...> - 2003-06-13 20:27:08
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/visitors In directory sc8-pr-cvs1:/tmp/cvs-serv17851/src/org/htmlparser/visitors Modified Files: ObjectFindingVisitor.java Log Message: Renamed Node to AbstractNode, extracted the new interface, Node, and moved line separator code from AbstractNode to Parser. Index: ObjectFindingVisitor.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/visitors/ObjectFindingVisitor.java,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** ObjectFindingVisitor.java 1 Jun 2003 20:50:18 -0000 1.23 --- ObjectFindingVisitor.java 13 Jun 2003 20:27:04 -0000 1.24 *************** *** 61,65 **** } ! public Node [] getTags() { return tags.toNodeArray(); } --- 61,65 ---- } ! public Node[] getTags() { return tags.toNodeArray(); } |
From: <jke...@us...> - 2003-06-13 20:27:08
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserHelper In directory sc8-pr-cvs1:/tmp/cvs-serv17851/src/org/htmlparser/parserHelper Modified Files: StringParser.java TagParser.java Log Message: Renamed Node to AbstractNode, extracted the new interface, Node, and moved line separator code from AbstractNode to Parser. Index: StringParser.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserHelper/StringParser.java,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** StringParser.java 1 Jun 2003 20:50:10 -0000 1.24 --- StringParser.java 13 Jun 2003 20:27:04 -0000 1.25 *************** *** 29,34 **** package org.htmlparser.parserHelper; ! import org.htmlparser.Node; import org.htmlparser.NodeReader; import org.htmlparser.StringNode; --- 29,35 ---- package org.htmlparser.parserHelper; ! import org.htmlparser.AbstractNode; import org.htmlparser.NodeReader; + import org.htmlparser.Parser; import org.htmlparser.StringNode; *************** *** 73,77 **** * encountering quotes. */ ! public Node find(NodeReader reader,String input,int position, boolean balance_quotes) { StringBuffer textBuffer = new StringBuffer(); --- 74,78 ---- * encountering quotes. */ ! public AbstractNode find(NodeReader reader,String input,int position, boolean balance_quotes) { StringBuffer textBuffer = new StringBuffer(); *************** *** 122,126 **** input = reader.getNextLine(); if (input!=null && input.length()==0) ! textBuffer.append(Node.getLineSeparator()); } while (input!=null && input.length()==0); --- 123,127 ---- input = reader.getNextLine(); if (input!=null && input.length()==0) ! textBuffer.append(Parser.getLineSeparator()); } while (input!=null && input.length()==0); *************** *** 131,135 **** } else { ! textBuffer.append(Node.getLineSeparator()); inputLen = input.length(); i=-1; --- 132,136 ---- } else { ! textBuffer.append(Parser.getLineSeparator()); inputLen = input.length(); i=-1; Index: TagParser.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserHelper/TagParser.java,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** TagParser.java 1 Jun 2003 20:50:11 -0000 1.32 --- TagParser.java 13 Jun 2003 20:27:04 -0000 1.33 *************** *** 31,36 **** import java.util.StringTokenizer; - import org.htmlparser.Node; import org.htmlparser.NodeReader; import org.htmlparser.tags.Tag; import org.htmlparser.tags.data.TagData; --- 31,36 ---- import java.util.StringTokenizer; import org.htmlparser.NodeReader; + import org.htmlparser.Parser; import org.htmlparser.tags.Tag; import org.htmlparser.tags.data.TagData; *************** *** 289,293 **** } else { // This means this is just a new line, hence add the new line character ! tag.append(Node.getLineSeparator()); } --- 289,293 ---- } else { // This means this is just a new line, hence add the new line character ! tag.append(Parser.getLineSeparator()); } |
From: <jke...@us...> - 2003-06-13 20:27:08
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests In directory sc8-pr-cvs1:/tmp/cvs-serv17851/src/org/htmlparser/tests/utilTests Modified Files: NodeListTest.java Log Message: Renamed Node to AbstractNode, extracted the new interface, Node, and moved line separator code from AbstractNode to Parser. Index: NodeListTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests/NodeListTest.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** NodeListTest.java 25 May 2003 18:58:01 -0000 1.8 --- NodeListTest.java 13 Jun 2003 20:27:04 -0000 1.9 *************** *** 2,5 **** --- 2,6 ---- + import org.htmlparser.AbstractNode; import org.htmlparser.Node; import org.htmlparser.tests.ParserTestCase; *************** *** 78,82 **** public void testElements() throws Exception { createTestDataAndPutInVector(11); ! Node [] resultNodes = new Node[11]; int i = 0; for (SimpleNodeIterator e = nodeList.elements();e.hasMoreNodes();) { --- 79,83 ---- public void testElements() throws Exception { createTestDataAndPutInVector(11); ! Node [] resultNodes = new AbstractNode[11]; int i = 0; for (SimpleNodeIterator e = nodeList.elements();e.hasMoreNodes();) { *************** *** 89,93 **** private Node createHTMLNodeObject() { ! Node node = new Node(10,20) { public void accept(NodeVisitor visitor) { } --- 90,94 ---- private Node createHTMLNodeObject() { ! Node node = new AbstractNode(10,20) { public void accept(NodeVisitor visitor) { } *************** *** 112,116 **** private void createTestDataAndPutInVector(int nodeCount) { ! testNodes = new Node[nodeCount]; for (int i=0;i<nodeCount;i++) { testNodes[i]= createHTMLNodeObject(); --- 113,117 ---- private void createTestDataAndPutInVector(int nodeCount) { ! testNodes = new AbstractNode[nodeCount]; for (int i=0;i<nodeCount;i++) { testNodes[i]= createHTMLNodeObject(); |
From: <jke...@us...> - 2003-06-13 20:27:08
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests In directory sc8-pr-cvs1:/tmp/cvs-serv17851/src/org/htmlparser/tests/tagTests Modified Files: TagTest.java ObjectCollectionTest.java FormTagTest.java BodyTagTest.java Log Message: Renamed Node to AbstractNode, extracted the new interface, Node, and moved line separator code from AbstractNode to Parser. Index: TagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/TagTest.java,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** TagTest.java 1 Jun 2003 20:50:17 -0000 1.29 --- TagTest.java 13 Jun 2003 20:27:05 -0000 1.30 *************** *** 670,674 **** { Node newNode = e.nextNode (); // Get the next HTML Node ! temp = newNode.toHTML (); } assertNotNull ("No nodes", temp); --- 670,674 ---- { Node newNode = e.nextNode (); // Get the next HTML Node ! temp = newNode.toHtml(); } assertNotNull ("No nodes", temp); Index: ObjectCollectionTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/ObjectCollectionTest.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ObjectCollectionTest.java 13 Apr 2003 06:28:06 -0000 1.5 --- ObjectCollectionTest.java 13 Jun 2003 20:27:05 -0000 1.6 *************** *** 58,62 **** NodeList nodeList = new NodeList(); div.collectInto(nodeList,Span.class); ! Node [] spans = nodeList.toNodeArray(); assertSpanContent(spans); } --- 58,62 ---- NodeList nodeList = new NodeList(); div.collectInto(nodeList,Span.class); ! Node[] spans = nodeList.toNodeArray(); assertSpanContent(spans); } Index: FormTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/FormTagTest.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** FormTagTest.java 1 Jun 2003 20:50:16 -0000 1.21 --- FormTagTest.java 13 Jun 2003 20:27:05 -0000 1.22 *************** *** 81,85 **** assertEquals("Should have found nodes",1,nodeList.size()); ! Node [] nodes = nodeList.toNodeArray(); assertEquals("Number of nodes found",1,nodes.length); --- 81,85 ---- assertEquals("Should have found nodes",1,nodeList.size()); ! Node[] nodes = nodeList.toNodeArray(); assertEquals("Number of nodes found",1,nodes.length); Index: BodyTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/BodyTagTest.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** BodyTagTest.java 3 May 2003 02:33:33 -0000 1.5 --- BodyTagTest.java 13 Jun 2003 20:27:05 -0000 1.6 *************** *** 29,37 **** package org.htmlparser.tests.tagTests; - import java.util.Enumeration; import java.util.Hashtable; import junit.framework.TestSuite; import org.htmlparser.Node; - import org.htmlparser.Parser; import org.htmlparser.scanners.BodyScanner; --- 29,35 ---- |
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser In directory sc8-pr-cvs1:/tmp/cvs-serv17851/src/org/htmlparser Modified Files: Node.java RemarkNode.java RemarkNodeParser.java Parser.java StringNode.java NodeReader.java Added Files: AbstractNode.java Log Message: Renamed Node to AbstractNode, extracted the new interface, Node, and moved line separator code from AbstractNode to Parser. --- NEW FILE: AbstractNode.java --- // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // For any questions or suggestions, you can write to me at : // Email :so...@in... // // Postal Address : // Somik Raha // Extreme Programmer & Coach // Industrial Logic Corporation // 2583 Cedar Street, Berkeley, // CA 94708, USA // Website : http://www.industriallogic.com package org.htmlparser; import java.io.*; import org.htmlparser.tags.*; import org.htmlparser.util.*; import org.htmlparser.visitors.*; /** * AbstractNode, which implements the Node interface, is the base class for all types of nodes, including tags, string elements, etc */ public abstract class AbstractNode implements Node, Serializable { /** * The beginning position of the tag in the line */ protected int nodeBegin; /** * The ending position of the tag in the line */ protected int nodeEnd; /** * If parent of this tag */ protected CompositeTag parent = null; public AbstractNode(int nodeBegin, int nodeEnd) { this.nodeBegin = nodeBegin; this.nodeEnd = nodeEnd; } /** * Returns a string representation of the node. This is an important method, it allows a simple string transformation * of a web page, regardless of a node.<br> * Typical application code (for extracting only the text from a web page) would then be simplified to :<br> * <pre> * Node node; * for (Enumeration e = parser.elements();e.hasMoreElements();) { * node = (Node)e.nextElement(); * System.out.println(node.toPlainTextString()); // Or do whatever processing you wish with the plain text string * } * </pre> */ public abstract String toPlainTextString(); /** * This method will make it easier when using html parser to reproduce html pages (with or without modifications) * Applications reproducing html can use this method on nodes which are to be used or transferred as they were * recieved, with the original html */ public abstract String toHtml(); /** * Return the string representation of the node. * Subclasses must define this method, and this is typically to be used in the manner<br> * <pre>System.out.println(node)</pre> * @return java.lang.String */ public abstract String toString(); /** * Collect this node and its child nodes (if-applicable) into the collection parameter, provided the node * satisfies the filtering criteria. <P/> * * This mechanism allows powerful filtering code to be written very easily, without bothering about collection * of embedded tags separately. e.g. when we try to get all the links on a page, it is not possible to get it * at the top-level, as many tags (like form tags), can contain links embedded in them. We could get the links * out by checking if the current node is a form tag, and going through its contents. However, this ties us down * to specific tags, and is not a very clean approach. <P/> * * Using collectInto(), programs get a lot shorter. Now, the code to extract all links from a page would look * like : * <pre> * NodeList collectionList = new NodeList(); * Node node; * String filter = LinkTag.LINK_TAG_FILTER; * for (NodeIterator e = parser.elements(); e.hasMoreNodes();) { * node = e.nextNode(); * node.collectInto (collectionVector, filter); * } * </pre> * Thus, collectionList will hold all the link nodes, irrespective of how * deep the links are embedded. This of course implies that tags must * fulfill their responsibilities toward honouring certain filters. * * <B>Important:</B> In order to keep performance optimal, <B>do not create</B> you own filter strings, as * the internal matching occurs with the pre-existing filter string object (in the relevant class). i.e. do not * make calls like : * <I>collectInto(collectionList,"-l")</I>, instead, make calls only like : * <I>collectInto(collectionList,LinkTag.LINK_TAG_FILTER)</I>.<P/> * * To find out if your desired tag has filtering support, check the API of the tag. */ public abstract void collectInto(NodeList collectionList, String filter); /** * Collect this node and its child nodes (if-applicable) into the collection parameter, provided the node * satisfies the filtering criteria. <P/> * * This mechanism allows powerful filtering code to be written very easily, without bothering about collection * of embedded tags separately. e.g. when we try to get all the links on a page, it is not possible to get it * at the top-level, as many tags (like form tags), can contain links embedded in them. We could get the links * out by checking if the current node is a form tag, and going through its contents. However, this ties us down * to specific tags, and is not a very clean approach. <P/> * * Using collectInto(), programs get a lot shorter. Now, the code to extract all links from a page would look * like : * <pre> * NodeList collectionList = new NodeList(); * Node node; * for (NodeIterator e = parser.elements(); e.hasMoreNodes();) { * node = e.nextNode(); * node.collectInto (collectionVector, LinkTag.class); * } * </pre> * Thus, collectionList will hold all the link nodes, irrespective of how * deep the links are embedded. */ public void collectInto(NodeList collectionList, Class nodeType) { if (nodeType.getName().equals(this.getClass().getName())) { collectionList.add(this); } } /** * Returns the beginning position of the tag. */ public int elementBegin() { return nodeBegin; } /** * Returns the ending position fo the tag */ public int elementEnd() { return nodeEnd; } public abstract void accept(NodeVisitor visitor); /** * @deprecated - use toHtml() instead */ public final String toHTML() { return toHtml(); } /** * Get the parent of this tag * @return The parent of this node, if it's been set, <code>null</code> otherwise. */ public CompositeTag getParent() { return parent; } /** * Sets the parent of this tag * @param tag */ public void setParent(CompositeTag tag) { parent = tag; } } Index: Node.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/Node.java,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** Node.java 1 Jun 2003 20:50:08 -0000 1.23 --- Node.java 13 Jun 2003 20:27:04 -0000 1.24 *************** *** 1,91 **** - // HTMLParser Library v1_4_20030601 - A java-based parser for HTML - // Copyright (C) Dec 31, 2000 Somik Raha - // - // This library is free software; you can redistribute it and/or - // modify it under the terms of the GNU Lesser General Public - // License as published by the Free Software Foundation; either - // version 2.1 of the License, or (at your option) any later version. - // - // This library is distributed in the hope that it will be useful, - // but WITHOUT ANY WARRANTY; without even the implied warranty of - // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - // Lesser General Public License for more details. - // - // You should have received a copy of the GNU Lesser General Public - // License along with this library; if not, write to the Free Software - // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - // - // For any questions or suggestions, you can write to me at : - // Email :so...@in... - // - // Postal Address : - // Somik Raha - // Extreme Programmer & Coach - // Industrial Logic Corporation - // 2583 Cedar Street, Berkeley, - // CA 94708, USA - // Website : http://www.industriallogic.com - package org.htmlparser; ! import java.io.*; ! ! import org.htmlparser.tags.*; ! import org.htmlparser.util.*; ! import org.htmlparser.visitors.*; ! ! /** ! * A Node interface is implemented by all types of nodes (tags, string elements, etc) ! */ ! public abstract class Node implements Serializable { ! /** ! * The beginning position of the tag in the line ! */ ! protected int nodeBegin; ! ! /** ! * The ending position of the tag in the line ! */ ! protected int nodeEnd; ! ! /** ! * If parent of this tag ! */ ! protected CompositeTag parent; ! ! /** ! * Variable to store lineSeparator. ! * This is setup to read <code>line.separator</code> from the System property. ! * However it can also be changed using the mutator methods. ! * This will be used in the toHTML() methods in all the sub-classes of Node. ! */ ! protected static String lineSeparator = System.getProperty("line.separator", "\n"); ! ! public Node(int nodeBegin, int nodeEnd) { ! this.nodeBegin = nodeBegin; ! this.nodeEnd = nodeEnd; ! this.parent = null; ! } ! ! public Node(int nodeBegin, int nodeEnd, CompositeTag parent) { ! this.nodeBegin = nodeBegin; ! this.nodeEnd = nodeEnd; ! this.parent = parent; ! } ! ! /** ! * @param lineSeparator New Line separator to be used ! */ ! public static void setLineSeparator(String lineSeparator) { ! Node.lineSeparator = lineSeparator; ! } ! ! /** ! * @return String lineSeparator that will be used in toHTML() ! */ ! public static String getLineSeparator() { ! return Node.lineSeparator; ! } /** * Returns a string representation of the node. This is an important method, it allows a simple string transformation --- 1,9 ---- package org.htmlparser; ! import org.htmlparser.tags.CompositeTag; ! import org.htmlparser.util.NodeList; ! import org.htmlparser.visitors.NodeVisitor; + public interface Node { /** * Returns a string representation of the node. This is an important method, it allows a simple string transformation *************** *** 101,105 **** */ public abstract String toPlainTextString(); - /** * This method will make it easier when using html parser to reproduce html pages (with or without modifications) --- 19,22 ---- *************** *** 108,112 **** */ public abstract String toHtml(); - /** * Return the string representation of the node. --- 25,28 ---- *************** *** 116,120 **** */ public abstract String toString(); - /** * Collect this node and its child nodes (if-applicable) into the collection parameter, provided the node --- 32,35 ---- *************** *** 151,155 **** */ public abstract void collectInto(NodeList collectionList, String filter); - /** * Collect this node and its child nodes (if-applicable) into the collection parameter, provided the node --- 66,69 ---- *************** *** 175,222 **** * deep the links are embedded. */ ! public void collectInto(NodeList collectionList, Class nodeType) { ! if (nodeType.getName().equals(this.getClass().getName())) { ! collectionList.add(this); ! } ! } ! /** * Returns the beginning position of the tag. */ ! public int elementBegin() { ! return nodeBegin; ! } ! /** * Returns the ending position fo the tag */ ! public int elementEnd() { ! return nodeEnd; ! } ! public abstract void accept(NodeVisitor visitor); - /** * @deprecated - use toHtml() instead */ ! public final String toHTML() { ! return toHtml(); ! } ! /** * Get the parent of this tag * @return The parent of this node, if it's been set, <code>null</code> otherwise. */ ! public CompositeTag getParent() { ! return parent; ! } ! /** * Sets the parent of this tag * @param tag */ ! public void setParent(CompositeTag tag) { ! parent = tag; ! } ! ! } --- 89,115 ---- * deep the links are embedded. */ ! public abstract void collectInto(NodeList collectionList, Class nodeType); /** * Returns the beginning position of the tag. */ ! public abstract int elementBegin(); /** * Returns the ending position fo the tag */ ! public abstract int elementEnd(); public abstract void accept(NodeVisitor visitor); /** * @deprecated - use toHtml() instead */ ! public abstract String toHTML(); /** * Get the parent of this tag * @return The parent of this node, if it's been set, <code>null</code> otherwise. */ ! public abstract CompositeTag getParent(); /** * Sets the parent of this tag * @param tag */ ! public abstract void setParent(CompositeTag tag); ! } \ No newline at end of file Index: RemarkNode.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/RemarkNode.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** RemarkNode.java 1 Jun 2003 20:50:08 -0000 1.18 --- RemarkNode.java 13 Jun 2003 20:27:04 -0000 1.19 *************** *** 36,40 **** * The remark tag is identified and represented by this class. */ ! public class RemarkNode extends Node { public final static String REMARK_NODE_FILTER="-r"; --- 36,40 ---- * The remark tag is identified and represented by this class. */ ! public class RemarkNode extends AbstractNode { public final static String REMARK_NODE_FILTER="-r"; Index: RemarkNodeParser.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/RemarkNodeParser.java,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** RemarkNodeParser.java 1 Jun 2003 20:50:08 -0000 1.20 --- RemarkNodeParser.java 13 Jun 2003 20:27:04 -0000 1.21 *************** *** 149,153 **** // We need to continue parsing to the next line //input = reader.getNextLine(); ! tagContents.append(Node.getLineSeparator()); do { input = reader.getNextLine(); --- 149,153 ---- // We need to continue parsing to the next line //input = reader.getNextLine(); ! tagContents.append(Parser.getLineSeparator()); do { input = reader.getNextLine(); Index: Parser.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/Parser.java,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** Parser.java 1 Jun 2003 20:50:08 -0000 1.43 --- Parser.java 13 Jun 2003 20:27:04 -0000 1.44 *************** *** 217,220 **** --- 217,228 ---- protected transient BufferedInputStream input; + /** + * Variable to store lineSeparator. + * This is setup to read <code>line.separator</code> from the System property. + * However it can also be changed using the mutator methods. + * This will be used in the toHTML() methods in all the sub-classes of Node. + */ + protected static String lineSeparator = System.getProperty("line.separator", "\n"); + /** * A quiet message sink. *************** *** 238,244 **** * @param lineSeparator New Line separator to be used */ ! public static void setLineSeparator(String lineSeparator) { ! Node.setLineSeparator(lineSeparator); } --- 246,252 ---- * @param lineSeparator New Line separator to be used */ ! public static void setLineSeparator(String lineSeparatorString) { ! lineSeparator = lineSeparatorString; } *************** *** 1193,1196 **** --- 1201,1211 ---- parser.addScanner(new LinkScanner(LinkTag.LINK_TAG_FILTER)); return parser; + } + + /** + * @return String lineSeparator that will be used in toHTML() + */ + public static String getLineSeparator() { + return lineSeparator; } } Index: StringNode.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/StringNode.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** StringNode.java 1 Jun 2003 20:50:08 -0000 1.19 --- StringNode.java 13 Jun 2003 20:27:04 -0000 1.20 *************** *** 36,40 **** * Normal text in the html document is identified and represented by this class. */ ! public class StringNode extends Node { public static final String STRING_FILTER="-string"; --- 36,40 ---- * Normal text in the html document is identified and represented by this class. */ ! public class StringNode extends AbstractNode { public static final String STRING_FILTER="-string"; Index: NodeReader.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/NodeReader.java,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** NodeReader.java 1 Jun 2003 20:50:08 -0000 1.32 --- NodeReader.java 13 Jun 2003 20:27:04 -0000 1.33 *************** *** 336,340 **** public static void setLineSeparator(String lineSeparator) { ! Node.setLineSeparator(lineSeparator); } --- 336,340 ---- public static void setLineSeparator(String lineSeparator) { ! Parser.setLineSeparator(lineSeparator); } *************** *** 345,349 **** public static String getLineSeparator() { ! return (Node.getLineSeparator()); } /** --- 345,349 ---- public static String getLineSeparator() { ! return (Parser.getLineSeparator()); } /** |
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests In directory sc8-pr-cvs1:/tmp/cvs-serv17851/src/org/htmlparser/tests/scannersTests Modified Files: ImageScannerTest.java FormScannerTest.java HeadScannerTest.java LinkScannerTest.java LabelScannerTest.java SpanScannerTest.java Log Message: Renamed Node to AbstractNode, extracted the new interface, Node, and moved line separator code from AbstractNode to Parser. Index: ImageScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/ImageScannerTest.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** ImageScannerTest.java 1 Jun 2003 20:50:16 -0000 1.19 --- ImageScannerTest.java 13 Jun 2003 20:27:04 -0000 1.20 *************** *** 28,31 **** --- 28,32 ---- package org.htmlparser.tests.scannersTests; + import org.htmlparser.AbstractNode; import org.htmlparser.Node; import org.htmlparser.Parser; *************** *** 164,168 **** createParser("<small><a href=s/5926>Air</a>, <a href=s/5927>Hotel</a>, <a href=s/5928>Vacations</a>, <a href=s/5929>Cruises</a></small></td><td align=center><a href=\"http://rd.yahoo.com/M=218794.2020165.3500581.220161/D=yahoo_top/S=2716149:NP/A=1041273/?http://adfarm.mediaplex.com/ad/ck/990-1736-1039-211\" target=\"_top\"><img width=230 height=33 src=\"http://us.a1.yimg.com/us.yimg.com/a/co/columbiahouse/4for49Freesh_230x33_redx2.gif\" alt=\"\" border=0></a></td><td nowrap align=center width=215>Find your match on<br><a href=s/2734><b>Yahoo! Personals</b></a></td></tr><tr><td colspan=3 align=center><input size=30 name=p>\n"+ "<input type=submit value=Search> <a href=r/so>advanced search</a></td></tr></table><table border=0 cellspacing=0 cellpadding=3 width=640><tr><td nowrap align=center><table border=0 cellspacing=0 cellpadding=0><tr><td><a href=s/5948><img src=\"http://us.i1.yimg.com/us.yimg.com/i/ligans/klgs/eet.gif\" width=20 height=20 border=0></a></td><td> <a href=s/1048><b>Yahooligans!</b></a> - <a href=s/5282>Eet & Ern</a>, <a href=s/5283>Games</a>, <a href=s/5284>Science</a>, <a href=s/5285>Sports</a>, <a href=s/5286>Movies</a>, <a href=s/1048>more</a> </td><td><a href=s/5948><img src=\"http://us.i1.yimg.com/us.yimg.com/i/ligans/klgs/ern.gif\" width=20 height=20 border=0></a></td></tr></table></td></tr><tr><td nowrap align=center><small><b>Shop</b> \n","http://www.yahoo.com"); ! Node [] node = new Node[10]; // Register the image scanner parser.addScanner(new ImageScanner("-i",new LinkProcessor())); --- 165,169 ---- createParser("<small><a href=s/5926>Air</a>, <a href=s/5927>Hotel</a>, <a href=s/5928>Vacations</a>, <a href=s/5929>Cruises</a></small></td><td align=center><a href=\"http://rd.yahoo.com/M=218794.2020165.3500581.220161/D=yahoo_top/S=2716149:NP/A=1041273/?http://adfarm.mediaplex.com/ad/ck/990-1736-1039-211\" target=\"_top\"><img width=230 height=33 src=\"http://us.a1.yimg.com/us.yimg.com/a/co/columbiahouse/4for49Freesh_230x33_redx2.gif\" alt=\"\" border=0></a></td><td nowrap align=center width=215>Find your match on<br><a href=s/2734><b>Yahoo! Personals</b></a></td></tr><tr><td colspan=3 align=center><input size=30 name=p>\n"+ "<input type=submit value=Search> <a href=r/so>advanced search</a></td></tr></table><table border=0 cellspacing=0 cellpadding=3 width=640><tr><td nowrap align=center><table border=0 cellspacing=0 cellpadding=0><tr><td><a href=s/5948><img src=\"http://us.i1.yimg.com/us.yimg.com/i/ligans/klgs/eet.gif\" width=20 height=20 border=0></a></td><td> <a href=s/1048><b>Yahooligans!</b></a> - <a href=s/5282>Eet & Ern</a>, <a href=s/5283>Games</a>, <a href=s/5284>Science</a>, <a href=s/5285>Sports</a>, <a href=s/5286>Movies</a>, <a href=s/1048>more</a> </td><td><a href=s/5948><img src=\"http://us.i1.yimg.com/us.yimg.com/i/ligans/klgs/ern.gif\" width=20 height=20 border=0></a></td></tr></table></td></tr><tr><td nowrap align=center><small><b>Shop</b> \n","http://www.yahoo.com"); ! Node [] node = new AbstractNode[10]; // Register the image scanner parser.addScanner(new ImageScanner("-i",new LinkProcessor())); Index: FormScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/FormScannerTest.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** FormScannerTest.java 1 Jun 2003 20:50:15 -0000 1.22 --- FormScannerTest.java 13 Jun 2003 20:27:04 -0000 1.23 *************** *** 29,32 **** --- 29,33 ---- package org.htmlparser.tests.scannersTests; + import org.htmlparser.AbstractNode; import org.htmlparser.Node; import org.htmlparser.Parser; *************** *** 309,313 **** parser.registerScanners (); i = 0; ! nodes = new Node[50]; for (NodeIterator e = parser.elements(); e.hasMoreNodes();) nodes[i++] = e.nextNode(); --- 310,314 ---- parser.registerScanners (); i = 0; ! nodes = new AbstractNode[50]; for (NodeIterator e = parser.elements(); e.hasMoreNodes();) nodes[i++] = e.nextNode(); Index: HeadScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/HeadScannerTest.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** HeadScannerTest.java 1 Jun 2003 20:50:16 -0000 1.5 --- HeadScannerTest.java 13 Jun 2003 20:27:04 -0000 1.6 *************** *** 1,95 **** ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML ! // Copyright (C) Dec 31, 2000 Somik Raha ! // ! // This library is free software; you can redistribute it and/or ! // modify it under the terms of the GNU Lesser General Public ! // License as published by the Free Software Foundation; either ! // version 2.1 of the License, or (at your option) any later version. ! // ! // This library is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! // Lesser General Public License for more details. ! // ! // You should have received a copy of the GNU Lesser General Public ! // License along with this library; if not, write to the Free Software ! // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! // ! // For any questions or suggestions, you can write to me at : ! // Email :so...@in... ! // ! // Postal Address : ! // Somik Raha ! // Extreme Programmer & Coach ! // Industrial Logic Corporation ! // 2583 Cedar Street, Berkeley, ! // CA 94708, USA ! // Website : http://www.industriallogic.com ! // ! // This class was contributed by Dhaval Udani ! // dha...@or... ! ! package org.htmlparser.tests.scannersTests; ! ! import java.util.*; ! import junit.framework.TestSuite; ! import org.htmlparser.*; ! import org.htmlparser.scanners.*; ! import org.htmlparser.tags.*; ! import org.htmlparser.tests.ParserTestCase; ! import org.htmlparser.util.ParserException; ! ! public class HeadScannerTest extends ParserTestCase { ! ! public HeadScannerTest(String name) { ! super(name); ! } ! ! public void testSimpleHead() throws ParserException { ! createParser("<HTML><HEAD></HEAD></HTML>"); ! HeadScanner headScanner = new HeadScanner(); ! parser.registerDomScanners(); ! parseAndAssertNodeCount(1); ! assertTrue(node[0] instanceof Html); ! Html htmlTag = (Html)node[0]; ! assertTrue(htmlTag.getChild(0) instanceof HeadTag); ! } ! ! public void testSimpleHeadWithoutEndTag() throws ParserException { ! createParser("<HTML><HEAD></HTML>"); ! HeadScanner headScanner = new HeadScanner(); ! parser.registerDomScanners(); ! parseAndAssertNodeCount(1); ! assertTrue(node[0] instanceof Html); ! Html htmlTag = (Html)node[0]; ! assertTrue(htmlTag.getChild(0) instanceof HeadTag); ! HeadTag headTag = (HeadTag)htmlTag.getChild(0); ! assertEquals("toHtml()","<HEAD></HEAD>",headTag.toHtml()); ! assertEquals("toHtml()","<HTML><HEAD></HEAD></HTML>",htmlTag.toHtml()); ! } ! ! public void testSimpleHeadWithBody() throws ParserException { ! createParser("<HTML><HEAD><BODY></HTML>"); ! HeadScanner headScanner = new HeadScanner(); ! parser.registerDomScanners(); ! parseAndAssertNodeCount(1); ! assertTrue(node[0] instanceof Html); ! Html htmlTag = (Html)node[0]; ! assertTrue(htmlTag.getChild(0) instanceof HeadTag); ! //assertTrue(htmlTag.getChild(1) instanceof BodyTag); ! HeadTag headTag = (HeadTag)htmlTag.getChild(0); ! assertEquals("toHtml()","<HEAD></HEAD>",headTag.toHtml()); ! assertEquals("toHtml()","<HTML><HEAD></HEAD><BODY></BODY></HTML>",htmlTag.toHtml()); ! } ! ! ! public static TestSuite suite() { ! return new TestSuite(HeadScannerTest.class); ! } ! ! public static void main(String[] args) ! { ! new junit.awtui.TestRunner().start(new String[] {HeadScannerTest.class.getName()}); ! } ! ! } --- 1,93 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML ! // Copyright (C) Dec 31, 2000 Somik Raha ! // ! // This library is free software; you can redistribute it and/or ! // modify it under the terms of the GNU Lesser General Public ! // License as published by the Free Software Foundation; either ! // version 2.1 of the License, or (at your option) any later version. ! // ! // This library is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! // Lesser General Public License for more details. ! // ! // You should have received a copy of the GNU Lesser General Public ! // License along with this library; if not, write to the Free Software ! // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! // ! // For any questions or suggestions, you can write to me at : ! // Email :so...@in... ! // ! // Postal Address : ! // Somik Raha ! // Extreme Programmer & Coach ! // Industrial Logic Corporation ! // 2583 Cedar Street, Berkeley, ! // CA 94708, USA ! // Website : http://www.industriallogic.com ! // ! // This class was contributed by Dhaval Udani ! // dha...@or... ! ! package org.htmlparser.tests.scannersTests; ! ! import junit.framework.TestSuite; ! import org.htmlparser.scanners.*; ! import org.htmlparser.tags.*; ! import org.htmlparser.tests.ParserTestCase; ! import org.htmlparser.util.ParserException; ! ! public class HeadScannerTest extends ParserTestCase { ! ! public HeadScannerTest(String name) { ! super(name); ! } ! ! public void testSimpleHead() throws ParserException { ! createParser("<HTML><HEAD></HEAD></HTML>"); ! HeadScanner headScanner = new HeadScanner(); ! parser.registerDomScanners(); ! parseAndAssertNodeCount(1); ! assertTrue(node[0] instanceof Html); ! Html htmlTag = (Html)node[0]; ! assertTrue(htmlTag.getChild(0) instanceof HeadTag); ! } ! ! public void testSimpleHeadWithoutEndTag() throws ParserException { ! createParser("<HTML><HEAD></HTML>"); ! HeadScanner headScanner = new HeadScanner(); ! parser.registerDomScanners(); ! parseAndAssertNodeCount(1); ! assertTrue(node[0] instanceof Html); ! Html htmlTag = (Html)node[0]; ! assertTrue(htmlTag.getChild(0) instanceof HeadTag); ! HeadTag headTag = (HeadTag)htmlTag.getChild(0); ! assertEquals("toHtml()","<HEAD></HEAD>",headTag.toHtml()); ! assertEquals("toHtml()","<HTML><HEAD></HEAD></HTML>",htmlTag.toHtml()); ! } ! ! public void testSimpleHeadWithBody() throws ParserException { ! createParser("<HTML><HEAD><BODY></HTML>"); ! HeadScanner headScanner = new HeadScanner(); ! parser.registerDomScanners(); ! parseAndAssertNodeCount(1); ! assertTrue(node[0] instanceof Html); ! Html htmlTag = (Html)node[0]; ! assertTrue(htmlTag.getChild(0) instanceof HeadTag); ! //assertTrue(htmlTag.getChild(1) instanceof BodyTag); ! HeadTag headTag = (HeadTag)htmlTag.getChild(0); ! assertEquals("toHtml()","<HEAD></HEAD>",headTag.toHtml()); ! assertEquals("toHtml()","<HTML><HEAD></HEAD><BODY></BODY></HTML>",htmlTag.toHtml()); ! } ! ! ! public static TestSuite suite() { ! return new TestSuite(HeadScannerTest.class); ! } ! ! public static void main(String[] args) ! { ! new junit.awtui.TestRunner().start(new String[] {HeadScannerTest.class.getName()}); ! } ! ! } Index: LinkScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/LinkScannerTest.java,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** LinkScannerTest.java 1 Jun 2003 20:50:16 -0000 1.26 --- LinkScannerTest.java 13 Jun 2003 20:27:04 -0000 1.27 *************** *** 30,33 **** --- 30,34 ---- + import org.htmlparser.AbstractNode; import org.htmlparser.Node; import org.htmlparser.Parser; *************** *** 246,250 **** LinkTag linkTag = (LinkTag)node[0]; // Get the link data and cross-check ! Node [] dataNode= new Node[10]; int i = 0; for (SimpleNodeIterator e = linkTag.children();e.hasMoreNodes();) --- 247,251 ---- LinkTag linkTag = (LinkTag)node[0]; // Get the link data and cross-check ! Node [] dataNode= new AbstractNode[10]; int i = 0; for (SimpleNodeIterator e = linkTag.children();e.hasMoreNodes();) *************** *** 332,336 **** assertEquals("Link URL","http://transfer.go.com/cgi/atransfer.pl?goto=http://www.signs.movies.com&name=114332&srvc=nws&context=283&guid=4AD5723D-C802-4310-A388-0B24E1A79689",linkTag.getLink()); assertEquals("Link Text","",linkTag.getLinkText()); ! Node [] containedNodes = new Node[10]; int i=0; for (SimpleNodeIterator e = linkTag.children();e.hasMoreNodes();) { --- 333,337 ---- assertEquals("Link URL","http://transfer.go.com/cgi/atransfer.pl?goto=http://www.signs.movies.com&name=114332&srvc=nws&context=283&guid=4AD5723D-C802-4310-A388-0B24E1A79689",linkTag.getLink()); assertEquals("Link Text","",linkTag.getLinkText()); ! Node [] containedNodes = new AbstractNode[10]; int i=0; for (SimpleNodeIterator e = linkTag.children();e.hasMoreNodes();) { *************** *** 484,488 **** // Get the image tag from the link ! Node insideNodes [] = new Node[10]; int j =0 ; for (SimpleNodeIterator e = linkTag.children();e.hasMoreNodes();) { --- 485,489 ---- // Get the image tag from the link ! Node insideNodes [] = new AbstractNode[10]; int j =0 ; for (SimpleNodeIterator e = linkTag.children();e.hasMoreNodes();) { Index: LabelScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/LabelScannerTest.java,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** LabelScannerTest.java 1 Jun 2003 20:50:16 -0000 1.24 --- LabelScannerTest.java 13 Jun 2003 20:27:04 -0000 1.25 *************** *** 34,39 **** import java.util.*; import junit.framework.TestSuite; - import org.htmlparser.Node; - import org.htmlparser.StringNode; import org.htmlparser.scanners.LabelScanner; import org.htmlparser.tags.LabelTag; --- 34,37 ---- Index: SpanScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/SpanScannerTest.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** SpanScannerTest.java 1 Jun 2003 20:50:16 -0000 1.19 --- SpanScannerTest.java 13 Jun 2003 20:27:04 -0000 1.20 *************** *** 29,33 **** package org.htmlparser.tests.scannersTests; - import org.htmlparser.Node; import org.htmlparser.scanners.SpanScanner; --- 29,32 ---- |
From: <der...@us...> - 2003-06-03 00:01:46
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/lexerTests In directory sc8-pr-cvs1:/tmp/cvs-serv28471/lexerTests Log Message: Directory /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/lexerTests added to the repository |
From: <der...@us...> - 2003-06-03 00:01:32
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/lexer In directory sc8-pr-cvs1:/tmp/cvs-serv28369/lexer Log Message: Directory /cvsroot/htmlparser/htmlparser/src/org/htmlparser/lexer added to the repository |
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests In directory sc8-pr-cvs1:/tmp/cvs-serv18708/htmlparser/src/org/htmlparser/tests/scannersTests Modified Files: AllTests.java AppletScannerTest.java BaseHREFScannerTest.java DivScannerTest.java FormScannerTest.java FrameScannerTest.java FrameSetScannerTest.java HeadScannerTest.java ImageScannerTest.java InputTagScannerTest.java JspScannerTest.java LabelScannerTest.java LinkScannerTest.java MetaTagScannerTest.java OptionTagScannerTest.java ScriptScannerTest.java SelectTagScannerTest.java SpanScannerTest.java StyleScannerTest.java TableScannerTest.java TagScannerTest.java TextareaTagScannerTest.java TitleScannerTest.java XmlEndTagScanningTest.java package.html Log Message: Update version headers to 1.4-20030601 and update changelog. Index: AllTests.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/AllTests.java,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** AllTests.java 31 May 2003 17:48:19 -0000 1.38 --- AllTests.java 1 Jun 2003 20:50:15 -0000 1.39 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // *************** *** 19,23 **** // Email :so...@ki... // ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 19,23 ---- // Email :so...@ki... // ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: AppletScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/AppletScannerTest.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** AppletScannerTest.java 26 May 2003 00:26:49 -0000 1.16 --- AppletScannerTest.java 1 Jun 2003 20:50:15 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: BaseHREFScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/BaseHREFScannerTest.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** BaseHREFScannerTest.java 26 May 2003 00:26:50 -0000 1.16 --- BaseHREFScannerTest.java 1 Jun 2003 20:50:15 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: DivScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/DivScannerTest.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** DivScannerTest.java 26 May 2003 00:26:50 -0000 1.22 --- DivScannerTest.java 1 Jun 2003 20:50:15 -0000 1.23 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: FormScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/FormScannerTest.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** FormScannerTest.java 31 May 2003 17:48:19 -0000 1.21 --- FormScannerTest.java 1 Jun 2003 20:50:15 -0000 1.22 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: FrameScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/FrameScannerTest.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** FrameScannerTest.java 26 May 2003 00:26:50 -0000 1.16 --- FrameScannerTest.java 1 Jun 2003 20:50:15 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: FrameSetScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/FrameSetScannerTest.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** FrameSetScannerTest.java 26 May 2003 00:26:50 -0000 1.16 --- FrameSetScannerTest.java 1 Jun 2003 20:50:15 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: HeadScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/HeadScannerTest.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** HeadScannerTest.java 26 May 2003 00:26:50 -0000 1.4 --- HeadScannerTest.java 1 Jun 2003 20:50:16 -0000 1.5 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: ImageScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/ImageScannerTest.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** ImageScannerTest.java 26 May 2003 00:26:50 -0000 1.18 --- ImageScannerTest.java 1 Jun 2003 20:50:16 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: InputTagScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/InputTagScannerTest.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** InputTagScannerTest.java 26 May 2003 00:26:50 -0000 1.16 --- InputTagScannerTest.java 1 Jun 2003 20:50:16 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: JspScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/JspScannerTest.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** JspScannerTest.java 26 May 2003 00:26:50 -0000 1.17 --- JspScannerTest.java 1 Jun 2003 20:50:16 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: LabelScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/LabelScannerTest.java,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** LabelScannerTest.java 26 May 2003 00:26:50 -0000 1.23 --- LabelScannerTest.java 1 Jun 2003 20:50:16 -0000 1.24 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: LinkScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/LinkScannerTest.java,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** LinkScannerTest.java 26 May 2003 00:26:50 -0000 1.25 --- LinkScannerTest.java 1 Jun 2003 20:50:16 -0000 1.26 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: MetaTagScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/MetaTagScannerTest.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** MetaTagScannerTest.java 26 May 2003 00:26:50 -0000 1.17 --- MetaTagScannerTest.java 1 Jun 2003 20:50:16 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: OptionTagScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/OptionTagScannerTest.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** OptionTagScannerTest.java 31 May 2003 17:48:19 -0000 1.18 --- OptionTagScannerTest.java 1 Jun 2003 20:50:16 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: ScriptScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/ScriptScannerTest.java,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** ScriptScannerTest.java 28 May 2003 17:02:03 -0000 1.26 --- ScriptScannerTest.java 1 Jun 2003 20:50:16 -0000 1.27 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: SelectTagScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/SelectTagScannerTest.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** SelectTagScannerTest.java 31 May 2003 17:48:19 -0000 1.18 --- SelectTagScannerTest.java 1 Jun 2003 20:50:16 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: SpanScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/SpanScannerTest.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** SpanScannerTest.java 26 May 2003 00:26:50 -0000 1.18 --- SpanScannerTest.java 1 Jun 2003 20:50:16 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: StyleScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/StyleScannerTest.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** StyleScannerTest.java 26 May 2003 00:26:50 -0000 1.17 --- StyleScannerTest.java 1 Jun 2003 20:50:16 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TableScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/TableScannerTest.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** TableScannerTest.java 26 May 2003 00:26:50 -0000 1.22 --- TableScannerTest.java 1 Jun 2003 20:50:16 -0000 1.23 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TagScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/TagScannerTest.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** TagScannerTest.java 26 May 2003 00:26:50 -0000 1.17 --- TagScannerTest.java 1 Jun 2003 20:50:16 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TextareaTagScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/TextareaTagScannerTest.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** TextareaTagScannerTest.java 31 May 2003 17:48:19 -0000 1.16 --- TextareaTagScannerTest.java 1 Jun 2003 20:50:16 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TitleScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/TitleScannerTest.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** TitleScannerTest.java 26 May 2003 00:26:50 -0000 1.17 --- TitleScannerTest.java 1 Jun 2003 20:50:16 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: XmlEndTagScanningTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/XmlEndTagScanningTest.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** XmlEndTagScanningTest.java 26 May 2003 00:26:50 -0000 1.19 --- XmlEndTagScanningTest.java 1 Jun 2003 20:50:16 -0000 1.20 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: package.html =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/package.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** package.html 26 May 2003 00:26:50 -0000 1.5 --- package.html 1 Jun 2003 20:50:16 -0000 1.6 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030525 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha --- 6,10 ---- @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030601 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha |
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags In directory sc8-pr-cvs1:/tmp/cvs-serv18708/htmlparser/src/org/htmlparser/tags Modified Files: AppletTag.java BaseHrefTag.java BodyTag.java Bullet.java BulletList.java CompositeTag.java Div.java DoctypeTag.java EndTag.java FormTag.java FrameSetTag.java FrameTag.java HeadTag.java Html.java ImageTag.java InputTag.java JspTag.java LabelTag.java LinkTag.java MetaTag.java OptionTag.java ScriptTag.java SelectTag.java Span.java StyleTag.java TableColumn.java TableRow.java TableTag.java Tag.java TextareaTag.java TitleTag.java package.html Log Message: Update version headers to 1.4-20030601 and update changelog. Index: AppletTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/AppletTag.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** AppletTag.java 26 May 2003 00:26:48 -0000 1.16 --- AppletTag.java 1 Jun 2003 20:50:13 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: BaseHrefTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/BaseHrefTag.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** BaseHrefTag.java 26 May 2003 00:26:48 -0000 1.15 --- BaseHrefTag.java 1 Jun 2003 20:50:13 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: BodyTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/BodyTag.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** BodyTag.java 26 May 2003 00:26:48 -0000 1.4 --- BodyTag.java 1 Jun 2003 20:50:13 -0000 1.5 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: Bullet.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/Bullet.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Bullet.java 26 May 2003 00:26:48 -0000 1.4 --- Bullet.java 1 Jun 2003 20:50:13 -0000 1.5 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: BulletList.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/BulletList.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** BulletList.java 26 May 2003 00:26:48 -0000 1.4 --- BulletList.java 1 Jun 2003 20:50:13 -0000 1.5 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: CompositeTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/CompositeTag.java,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** CompositeTag.java 26 May 2003 00:26:48 -0000 1.41 --- CompositeTag.java 1 Jun 2003 20:50:13 -0000 1.42 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: Div.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/Div.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Div.java 26 May 2003 00:26:48 -0000 1.4 --- Div.java 1 Jun 2003 20:50:13 -0000 1.5 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: DoctypeTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/DoctypeTag.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** DoctypeTag.java 26 May 2003 00:26:48 -0000 1.16 --- DoctypeTag.java 1 Jun 2003 20:50:13 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: EndTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/EndTag.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** EndTag.java 26 May 2003 00:26:48 -0000 1.18 --- EndTag.java 1 Jun 2003 20:50:13 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: FormTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/FormTag.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** FormTag.java 26 May 2003 00:26:48 -0000 1.19 --- FormTag.java 1 Jun 2003 20:50:13 -0000 1.20 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: FrameSetTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/FrameSetTag.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** FrameSetTag.java 26 May 2003 00:26:48 -0000 1.15 --- FrameSetTag.java 1 Jun 2003 20:50:13 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: FrameTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/FrameTag.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** FrameTag.java 26 May 2003 00:26:48 -0000 1.15 --- FrameTag.java 1 Jun 2003 20:50:13 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: HeadTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/HeadTag.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** HeadTag.java 26 May 2003 00:26:48 -0000 1.4 --- HeadTag.java 1 Jun 2003 20:50:13 -0000 1.5 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: Html.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/Html.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** Html.java 26 May 2003 00:26:48 -0000 1.16 --- Html.java 1 Jun 2003 20:50:13 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: ImageTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/ImageTag.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ImageTag.java 26 May 2003 00:26:48 -0000 1.15 --- ImageTag.java 1 Jun 2003 20:50:13 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: InputTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/InputTag.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** InputTag.java 26 May 2003 00:26:48 -0000 1.16 --- InputTag.java 1 Jun 2003 20:50:13 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: JspTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/JspTag.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** JspTag.java 26 May 2003 00:26:48 -0000 1.17 --- JspTag.java 1 Jun 2003 20:50:13 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: LabelTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/LabelTag.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** LabelTag.java 26 May 2003 00:26:48 -0000 1.17 --- LabelTag.java 1 Jun 2003 20:50:13 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: LinkTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/LinkTag.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** LinkTag.java 26 May 2003 00:26:48 -0000 1.22 --- LinkTag.java 1 Jun 2003 20:50:13 -0000 1.23 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: MetaTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/MetaTag.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** MetaTag.java 26 May 2003 00:26:48 -0000 1.16 --- MetaTag.java 1 Jun 2003 20:50:13 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: OptionTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/OptionTag.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** OptionTag.java 26 May 2003 00:26:48 -0000 1.18 --- OptionTag.java 1 Jun 2003 20:50:13 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: ScriptTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/ScriptTag.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** ScriptTag.java 26 May 2003 00:26:48 -0000 1.16 --- ScriptTag.java 1 Jun 2003 20:50:13 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: SelectTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/SelectTag.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** SelectTag.java 26 May 2003 00:26:48 -0000 1.16 --- SelectTag.java 1 Jun 2003 20:50:13 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: Span.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/Span.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** Span.java 26 May 2003 00:26:48 -0000 1.18 --- Span.java 1 Jun 2003 20:50:13 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: StyleTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/StyleTag.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** StyleTag.java 26 May 2003 00:26:48 -0000 1.15 --- StyleTag.java 1 Jun 2003 20:50:13 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TableColumn.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/TableColumn.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** TableColumn.java 26 May 2003 00:26:48 -0000 1.18 --- TableColumn.java 1 Jun 2003 20:50:13 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TableRow.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/TableRow.java,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** TableRow.java 26 May 2003 00:26:48 -0000 1.20 --- TableRow.java 1 Jun 2003 20:50:13 -0000 1.21 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TableTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/TableTag.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** TableTag.java 26 May 2003 00:26:48 -0000 1.21 --- TableTag.java 1 Jun 2003 20:50:13 -0000 1.22 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: Tag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/Tag.java,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** Tag.java 26 May 2003 00:26:48 -0000 1.29 --- Tag.java 1 Jun 2003 20:50:13 -0000 1.30 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TextareaTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/TextareaTag.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** TextareaTag.java 26 May 2003 00:26:48 -0000 1.15 --- TextareaTag.java 1 Jun 2003 20:50:13 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TitleTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/TitleTag.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** TitleTag.java 26 May 2003 00:26:48 -0000 1.15 --- TitleTag.java 1 Jun 2003 20:50:13 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: package.html =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/package.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** package.html 26 May 2003 00:26:48 -0000 1.5 --- package.html 1 Jun 2003 20:50:13 -0000 1.6 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030525 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha --- 6,10 ---- @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030601 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha |
From: <der...@us...> - 2003-06-01 20:50:48
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/parserHelperTests In directory sc8-pr-cvs1:/tmp/cvs-serv18708/htmlparser/src/org/htmlparser/tests/parserHelperTests Modified Files: AllTests.java AttributeParserTest.java CompositeTagScannerHelperTest.java RemarkNodeParserTest.java StringParserTest.java TagParserTest.java Log Message: Update version headers to 1.4-20030601 and update changelog. Index: AllTests.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/parserHelperTests/AllTests.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** AllTests.java 26 May 2003 00:26:49 -0000 1.16 --- AllTests.java 1 Jun 2003 20:50:14 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: AttributeParserTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/parserHelperTests/AttributeParserTest.java,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** AttributeParserTest.java 26 May 2003 00:26:49 -0000 1.30 --- AttributeParserTest.java 1 Jun 2003 20:50:14 -0000 1.31 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: CompositeTagScannerHelperTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/parserHelperTests/CompositeTagScannerHelperTest.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** CompositeTagScannerHelperTest.java 26 May 2003 00:26:49 -0000 1.10 --- CompositeTagScannerHelperTest.java 1 Jun 2003 20:50:14 -0000 1.11 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: RemarkNodeParserTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/parserHelperTests/RemarkNodeParserTest.java,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** RemarkNodeParserTest.java 26 May 2003 00:26:49 -0000 1.25 --- RemarkNodeParserTest.java 1 Jun 2003 20:50:14 -0000 1.26 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: StringParserTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/parserHelperTests/StringParserTest.java,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** StringParserTest.java 26 May 2003 00:26:49 -0000 1.27 --- StringParserTest.java 1 Jun 2003 20:50:15 -0000 1.28 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TagParserTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/parserHelperTests/TagParserTest.java,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** TagParserTest.java 26 May 2003 00:26:49 -0000 1.30 --- TagParserTest.java 1 Jun 2003 20:50:15 -0000 1.31 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // |
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests In directory sc8-pr-cvs1:/tmp/cvs-serv18708/htmlparser/src/org/htmlparser/tests Modified Files: AllTests.java FunctionalTests.java LineNumberAssignedByNodeReaderTest.java ParserTest.java PerformanceTest.java package.html Log Message: Update version headers to 1.4-20030601 and update changelog. Index: AllTests.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/AllTests.java,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** AllTests.java 26 May 2003 00:26:49 -0000 1.38 --- AllTests.java 1 Jun 2003 20:50:14 -0000 1.39 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: FunctionalTests.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/FunctionalTests.java,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** FunctionalTests.java 26 May 2003 00:26:49 -0000 1.33 --- FunctionalTests.java 1 Jun 2003 20:50:14 -0000 1.34 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: LineNumberAssignedByNodeReaderTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/LineNumberAssignedByNodeReaderTest.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** LineNumberAssignedByNodeReaderTest.java 26 May 2003 00:26:49 -0000 1.11 --- LineNumberAssignedByNodeReaderTest.java 1 Jun 2003 20:50:14 -0000 1.12 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: ParserTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/ParserTest.java,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** ParserTest.java 26 May 2003 00:26:49 -0000 1.29 --- ParserTest.java 1 Jun 2003 20:50:14 -0000 1.30 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: PerformanceTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/PerformanceTest.java,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** PerformanceTest.java 26 May 2003 00:26:49 -0000 1.31 --- PerformanceTest.java 1 Jun 2003 20:50:14 -0000 1.32 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: package.html =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/package.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** package.html 26 May 2003 00:26:49 -0000 1.5 --- package.html 1 Jun 2003 20:50:14 -0000 1.6 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030525 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha --- 6,10 ---- @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030601 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha |
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners In directory sc8-pr-cvs1:/tmp/cvs-serv18708/htmlparser/src/org/htmlparser/scanners Modified Files: AppletScanner.java BaseHrefScanner.java BodyScanner.java BulletListScanner.java BulletScanner.java CompositeTagScanner.java DivScanner.java DoctypeScanner.java FormScanner.java FrameScanner.java FrameSetScanner.java HeadScanner.java HtmlScanner.java ImageScanner.java InputTagScanner.java JspScanner.java LabelScanner.java LinkScanner.java MetaTagScanner.java OptionTagScanner.java ScriptScanner.java SelectTagScanner.java SpanScanner.java StyleScanner.java TableColumnScanner.java TableRowScanner.java TableScanner.java TagScanner.java TextareaTagScanner.java TitleScanner.java package.html Log Message: Update version headers to 1.4-20030601 and update changelog. Index: AppletScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/AppletScanner.java,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** AppletScanner.java 26 May 2003 00:26:46 -0000 1.20 --- AppletScanner.java 1 Jun 2003 20:50:11 -0000 1.21 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: BaseHrefScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/BaseHrefScanner.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** BaseHrefScanner.java 26 May 2003 00:26:47 -0000 1.15 --- BaseHrefScanner.java 1 Jun 2003 20:50:11 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: BodyScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/BodyScanner.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** BodyScanner.java 26 May 2003 00:26:47 -0000 1.7 --- BodyScanner.java 1 Jun 2003 20:50:11 -0000 1.8 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: BulletListScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/BulletListScanner.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** BulletListScanner.java 31 May 2003 17:48:21 -0000 1.6 --- BulletListScanner.java 1 Jun 2003 20:50:11 -0000 1.7 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: BulletScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/BulletScanner.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** BulletScanner.java 26 May 2003 00:26:47 -0000 1.11 --- BulletScanner.java 1 Jun 2003 20:50:11 -0000 1.12 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: CompositeTagScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/CompositeTagScanner.java,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** CompositeTagScanner.java 31 May 2003 17:48:21 -0000 1.56 --- CompositeTagScanner.java 1 Jun 2003 20:50:11 -0000 1.57 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: DivScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/DivScanner.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** DivScanner.java 26 May 2003 00:26:47 -0000 1.19 --- DivScanner.java 1 Jun 2003 20:50:11 -0000 1.20 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: DoctypeScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/DoctypeScanner.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** DoctypeScanner.java 26 May 2003 00:26:47 -0000 1.15 --- DoctypeScanner.java 1 Jun 2003 20:50:11 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: FormScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/FormScanner.java,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** FormScanner.java 31 May 2003 17:48:21 -0000 1.33 --- FormScanner.java 1 Jun 2003 20:50:12 -0000 1.34 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: FrameScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/FrameScanner.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** FrameScanner.java 26 May 2003 00:26:47 -0000 1.16 --- FrameScanner.java 1 Jun 2003 20:50:12 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: FrameSetScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/FrameSetScanner.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** FrameSetScanner.java 26 May 2003 00:26:47 -0000 1.17 --- FrameSetScanner.java 1 Jun 2003 20:50:12 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: HeadScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/HeadScanner.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** HeadScanner.java 26 May 2003 00:26:47 -0000 1.4 --- HeadScanner.java 1 Jun 2003 20:50:12 -0000 1.5 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: HtmlScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/HtmlScanner.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** HtmlScanner.java 26 May 2003 00:26:47 -0000 1.19 --- HtmlScanner.java 1 Jun 2003 20:50:12 -0000 1.20 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: ImageScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/ImageScanner.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** ImageScanner.java 26 May 2003 00:26:47 -0000 1.16 --- ImageScanner.java 1 Jun 2003 20:50:12 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: InputTagScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/InputTagScanner.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** InputTagScanner.java 26 May 2003 00:26:47 -0000 1.15 --- InputTagScanner.java 1 Jun 2003 20:50:12 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: JspScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/JspScanner.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** JspScanner.java 26 May 2003 00:26:47 -0000 1.15 --- JspScanner.java 1 Jun 2003 20:50:12 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: LabelScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/LabelScanner.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** LabelScanner.java 26 May 2003 00:26:47 -0000 1.22 --- LabelScanner.java 1 Jun 2003 20:50:12 -0000 1.23 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: LinkScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/LinkScanner.java,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** LinkScanner.java 26 May 2003 00:26:47 -0000 1.42 --- LinkScanner.java 1 Jun 2003 20:50:12 -0000 1.43 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: MetaTagScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/MetaTagScanner.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** MetaTagScanner.java 26 May 2003 00:26:47 -0000 1.15 --- MetaTagScanner.java 1 Jun 2003 20:50:12 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: OptionTagScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/OptionTagScanner.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** OptionTagScanner.java 31 May 2003 17:48:21 -0000 1.22 --- OptionTagScanner.java 1 Jun 2003 20:50:12 -0000 1.23 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: ScriptScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/ScriptScanner.java,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** ScriptScanner.java 26 May 2003 00:26:47 -0000 1.24 --- ScriptScanner.java 1 Jun 2003 20:50:12 -0000 1.25 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: SelectTagScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/SelectTagScanner.java,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** SelectTagScanner.java 31 May 2003 17:48:21 -0000 1.20 --- SelectTagScanner.java 1 Jun 2003 20:50:12 -0000 1.21 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: SpanScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/SpanScanner.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** SpanScanner.java 26 May 2003 00:26:48 -0000 1.21 --- SpanScanner.java 1 Jun 2003 20:50:12 -0000 1.22 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: StyleScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/StyleScanner.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** StyleScanner.java 26 May 2003 00:26:48 -0000 1.16 --- StyleScanner.java 1 Jun 2003 20:50:12 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TableColumnScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/TableColumnScanner.java,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** TableColumnScanner.java 26 May 2003 00:26:48 -0000 1.24 --- TableColumnScanner.java 1 Jun 2003 20:50:12 -0000 1.25 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TableRowScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/TableRowScanner.java,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** TableRowScanner.java 26 May 2003 00:26:48 -0000 1.27 --- TableRowScanner.java 1 Jun 2003 20:50:12 -0000 1.28 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TableScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/TableScanner.java,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** TableScanner.java 26 May 2003 00:26:48 -0000 1.26 --- TableScanner.java 1 Jun 2003 20:50:12 -0000 1.27 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TagScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/TagScanner.java,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** TagScanner.java 26 May 2003 00:26:48 -0000 1.25 --- TagScanner.java 1 Jun 2003 20:50:12 -0000 1.26 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TextareaTagScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/TextareaTagScanner.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** TextareaTagScanner.java 31 May 2003 17:48:21 -0000 1.17 --- TextareaTagScanner.java 1 Jun 2003 20:50:12 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TitleScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/TitleScanner.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** TitleScanner.java 31 May 2003 17:48:21 -0000 1.18 --- TitleScanner.java 1 Jun 2003 20:50:12 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: package.html =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/package.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** package.html 26 May 2003 00:26:48 -0000 1.5 --- package.html 1 Jun 2003 20:50:12 -0000 1.6 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030525 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha --- 6,10 ---- @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030601 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha |
From: <der...@us...> - 2003-06-01 20:50:47
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/data In directory sc8-pr-cvs1:/tmp/cvs-serv18708/htmlparser/src/org/htmlparser/tags/data Modified Files: CompositeTagData.java FormData.java LinkData.java TagData.java Log Message: Update version headers to 1.4-20030601 and update changelog. Index: CompositeTagData.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/data/CompositeTagData.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** CompositeTagData.java 26 May 2003 00:26:48 -0000 1.22 --- CompositeTagData.java 1 Jun 2003 20:50:13 -0000 1.23 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: FormData.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/data/FormData.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** FormData.java 26 May 2003 00:26:48 -0000 1.17 --- FormData.java 1 Jun 2003 20:50:13 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: LinkData.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/data/LinkData.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** LinkData.java 26 May 2003 00:26:48 -0000 1.19 --- LinkData.java 1 Jun 2003 20:50:13 -0000 1.20 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TagData.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/data/TagData.java,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** TagData.java 26 May 2003 00:26:48 -0000 1.20 --- TagData.java 1 Jun 2003 20:50:14 -0000 1.21 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // |
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserapplications In directory sc8-pr-cvs1:/tmp/cvs-serv18708/htmlparser/src/org/htmlparser/parserapplications Modified Files: LinkExtractor.java MailRipper.java Robot.java StringExtractor.java package.html Log Message: Update version headers to 1.4-20030601 and update changelog. Index: LinkExtractor.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserapplications/LinkExtractor.java,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** LinkExtractor.java 26 May 2003 00:26:46 -0000 1.32 --- LinkExtractor.java 1 Jun 2003 20:50:11 -0000 1.33 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: MailRipper.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserapplications/MailRipper.java,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** MailRipper.java 26 May 2003 00:26:46 -0000 1.35 --- MailRipper.java 1 Jun 2003 20:50:11 -0000 1.36 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: Robot.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserapplications/Robot.java,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** Robot.java 26 May 2003 00:26:46 -0000 1.36 --- Robot.java 1 Jun 2003 20:50:11 -0000 1.37 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: StringExtractor.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserapplications/StringExtractor.java,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** StringExtractor.java 26 May 2003 00:26:46 -0000 1.32 --- StringExtractor.java 1 Jun 2003 20:50:11 -0000 1.33 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: package.html =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserapplications/package.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** package.html 26 May 2003 00:26:46 -0000 1.5 --- package.html 1 Jun 2003 20:50:11 -0000 1.6 *************** *** 5,9 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030525 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha --- 5,9 ---- @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030601 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha |
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserHelper In directory sc8-pr-cvs1:/tmp/cvs-serv18708/htmlparser/src/org/htmlparser/parserHelper Modified Files: AttributeParser.java CompositeTagScannerHelper.java ParserHelper.java StringParser.java TagParser.java Log Message: Update version headers to 1.4-20030601 and update changelog. Index: AttributeParser.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserHelper/AttributeParser.java,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** AttributeParser.java 26 May 2003 00:26:45 -0000 1.24 --- AttributeParser.java 1 Jun 2003 20:50:10 -0000 1.25 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: CompositeTagScannerHelper.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserHelper/CompositeTagScannerHelper.java,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** CompositeTagScannerHelper.java 26 May 2003 00:26:45 -0000 1.35 --- CompositeTagScannerHelper.java 1 Jun 2003 20:50:10 -0000 1.36 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: ParserHelper.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserHelper/ParserHelper.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ParserHelper.java 31 May 2003 02:01:10 -0000 1.6 --- ParserHelper.java 1 Jun 2003 20:50:10 -0000 1.7 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: StringParser.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserHelper/StringParser.java,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** StringParser.java 26 May 2003 00:26:46 -0000 1.23 --- StringParser.java 1 Jun 2003 20:50:10 -0000 1.24 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TagParser.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserHelper/TagParser.java,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** TagParser.java 26 May 2003 00:26:46 -0000 1.31 --- TagParser.java 1 Jun 2003 20:50:11 -0000 1.32 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // |
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/beans In directory sc8-pr-cvs1:/tmp/cvs-serv18708/htmlparser/src/org/htmlparser/beans Modified Files: BeanyBaby.java HTMLLinkBean.java HTMLTextBean.java LinkBean.java StringBean.java package.html Log Message: Update version headers to 1.4-20030601 and update changelog. Index: BeanyBaby.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/beans/BeanyBaby.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** BeanyBaby.java 26 May 2003 00:26:45 -0000 1.6 --- BeanyBaby.java 1 Jun 2003 20:50:09 -0000 1.7 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: HTMLLinkBean.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/beans/HTMLLinkBean.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** HTMLLinkBean.java 26 May 2003 00:26:45 -0000 1.6 --- HTMLLinkBean.java 1 Jun 2003 20:50:09 -0000 1.7 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: HTMLTextBean.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/beans/HTMLTextBean.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** HTMLTextBean.java 26 May 2003 00:26:45 -0000 1.7 --- HTMLTextBean.java 1 Jun 2003 20:50:09 -0000 1.8 *************** *** 1,3 **** ! /// HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! /// HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: LinkBean.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/beans/LinkBean.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** LinkBean.java 26 May 2003 00:26:45 -0000 1.9 --- LinkBean.java 1 Jun 2003 20:50:09 -0000 1.10 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: StringBean.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/beans/StringBean.java,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** StringBean.java 26 May 2003 00:26:45 -0000 1.14 --- StringBean.java 1 Jun 2003 20:50:09 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: package.html =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/beans/package.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** package.html 26 May 2003 00:26:45 -0000 1.5 --- package.html 1 Jun 2003 20:50:10 -0000 1.6 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030525 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha --- 6,10 ---- @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030601 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha |
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser In directory sc8-pr-cvs1:/tmp/cvs-serv18708/htmlparser/src/org/htmlparser Modified Files: Node.java NodeReader.java Parser.java RemarkNode.java RemarkNodeParser.java StringNode.java package.html Log Message: Update version headers to 1.4-20030601 and update changelog. Index: Node.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/Node.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** Node.java 26 May 2003 00:26:44 -0000 1.22 --- Node.java 1 Jun 2003 20:50:08 -0000 1.23 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: NodeReader.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/NodeReader.java,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** NodeReader.java 26 May 2003 00:26:44 -0000 1.31 --- NodeReader.java 1 Jun 2003 20:50:08 -0000 1.32 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: Parser.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/Parser.java,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** Parser.java 26 May 2003 00:26:44 -0000 1.42 --- Parser.java 1 Jun 2003 20:50:08 -0000 1.43 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // *************** *** 157,161 **** */ public final static String ! VERSION_DATE = "May 25, 2003" ; --- 157,161 ---- */ public final static String ! VERSION_DATE = "Jun 01, 2003" ; Index: RemarkNode.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/RemarkNode.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** RemarkNode.java 26 May 2003 00:26:44 -0000 1.17 --- RemarkNode.java 1 Jun 2003 20:50:08 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: RemarkNodeParser.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/RemarkNodeParser.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** RemarkNodeParser.java 26 May 2003 00:26:44 -0000 1.19 --- RemarkNodeParser.java 1 Jun 2003 20:50:08 -0000 1.20 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: StringNode.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/StringNode.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** StringNode.java 26 May 2003 00:26:44 -0000 1.18 --- StringNode.java 1 Jun 2003 20:50:08 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: package.html =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/package.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package.html 26 May 2003 00:26:45 -0000 1.6 --- package.html 1 Jun 2003 20:50:08 -0000 1.7 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030525 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha --- 6,10 ---- @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030601 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha |
From: <der...@us...> - 2003-06-01 20:50:41
|
Update of /cvsroot/htmlparser/htmlparser/docs In directory sc8-pr-cvs1:/tmp/cvs-serv18708/htmlparser/docs Modified Files: changes.txt release.txt Log Message: Update version headers to 1.4-20030601 and update changelog. Index: changes.txt =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/docs/changes.txt,v retrieving revision 1.181 retrieving revision 1.182 diff -C2 -d -r1.181 -r1.182 *** changes.txt 26 May 2003 00:26:44 -0000 1.181 --- changes.txt 1 Jun 2003 20:50:08 -0000 1.182 *************** *** 13,17 **** ******************************************************************************* ! Integration Build 1.4 - 20030325 -------------------------------- --- 13,67 ---- ******************************************************************************* ! Integration Build 1.4 - 20030601 ! -------------------------------- ! ! 2003-05-31 13:48 derrickoswald ! ! * src/org/htmlparser/: tests/scannersTests/AllTests.java, ! tests/scannersTests/BulletListScannerTest.java, ! tests/scannersTests/FormScannerTest.java, ! tests/scannersTests/OptionTagScannerTest.java, ! tests/scannersTests/SelectTagScannerTest.java, ! tests/scannersTests/TextareaTagScannerTest.java, ! tests/tagTests/OptionTagTest.java, ! tests/tagTests/SelectTagTest.java, scanners/BulletListScanner.java, ! scanners/CompositeTagScanner.java, scanners/FormScanner.java, ! scanners/OptionTagScanner.java, scanners/SelectTagScanner.java, ! scanners/TextareaTagScanner.java, scanners/TitleScanner.java, ! tests/tagTests/TextareaTagTest.java: ! ! Fixed bug #745566 StackOverflowError on select with too many unclosed options. ! Replicated the missing end tag detection of the bullet list scanner into the form scanners. ! This isn't ideal, but it seems to work. ! ! Added test case testUnclosedOptions in FormScannerTest that reads ! http://htmlparser.sourceforge.net/test/overflowpage.html. ! Note: this test only failed on Windows, prior to the fix. ! ! Picked up missing scanner tests in AllTests. ! The HtmlTest file showed that title tags weren't being scanned, which I fixed with a kludge. ! ! Added order list types to BulletListScanner match tags. ! ! 2003-05-30 22:01 derrickoswald ! ! * src/org/htmlparser/parserHelper/ParserHelper.java: ! ! Fixed bug #744610 getLink() Erroneous for Relative Links from Files on Windows. ! Inserted the extra slash if needed. ! ! 2003-05-28 13:02 polarys ! ! * src/org/htmlparser/tests/scannersTests/ScriptScannerTest.java: ! ! Checking in some new tests for ScriptScanner, currently broken ! ! 2003-05-27 13:19 polarys ! ! * build.xml: ! ! Moving 'clean' into its own Ant target instead of built into htmlparser target ! ! Integration Build 1.4 - 20030525 -------------------------------- Index: release.txt =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/docs/release.txt,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** release.txt 26 May 2003 00:26:44 -0000 1.41 --- release.txt 1 Jun 2003 20:50:08 -0000 1.42 *************** *** 1,3 **** ! HTMLParser Version 1.4 (Integration Build May 25, 2003) ********************************************* --- 1,3 ---- ! HTMLParser Version 1.4 (Integration Build Jun 01, 2003) ********************************************* |
From: <der...@us...> - 2003-06-01 20:50:41
|
Update of /cvsroot/htmlparser/htmlparser In directory sc8-pr-cvs1:/tmp/cvs-serv18708/htmlparser Modified Files: build.xml Log Message: Update version headers to 1.4-20030601 and update changelog. Index: build.xml =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/build.xml,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** build.xml 27 May 2003 17:19:25 -0000 1.36 --- build.xml 1 Jun 2003 20:50:06 -0000 1.37 *************** *** 180,184 **** <pathelement location="${junit.jar}"/> </classpath> ! <!-- arg value="-text"/ don't use until JUnit bug 660115 is resolved --> </java> </target> --- 180,184 ---- <pathelement location="${junit.jar}"/> </classpath> ! <arg value="-text"/> </java> </target> |
From: <der...@us...> - 2003-06-01 20:50:22
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/visitors In directory sc8-pr-cvs1:/tmp/cvs-serv18708/htmlparser/src/org/htmlparser/visitors Modified Files: CompositeTagFindingVisitor.java HtmlPage.java LinkFindingVisitor.java NodeVisitor.java ObjectFindingVisitor.java StringFindingVisitor.java TagFindingVisitor.java TextExtractingVisitor.java UrlModifyingVisitor.java package.html Log Message: Update version headers to 1.4-20030601 and update changelog. Index: CompositeTagFindingVisitor.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/visitors/CompositeTagFindingVisitor.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** CompositeTagFindingVisitor.java 26 May 2003 00:26:52 -0000 1.5 --- CompositeTagFindingVisitor.java 1 Jun 2003 20:50:18 -0000 1.6 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: HtmlPage.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/visitors/HtmlPage.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** HtmlPage.java 26 May 2003 00:26:52 -0000 1.22 --- HtmlPage.java 1 Jun 2003 20:50:18 -0000 1.23 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: LinkFindingVisitor.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/visitors/LinkFindingVisitor.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** LinkFindingVisitor.java 26 May 2003 00:26:52 -0000 1.18 --- LinkFindingVisitor.java 1 Jun 2003 20:50:18 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: NodeVisitor.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/visitors/NodeVisitor.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** NodeVisitor.java 26 May 2003 00:26:52 -0000 1.18 --- NodeVisitor.java 1 Jun 2003 20:50:18 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: ObjectFindingVisitor.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/visitors/ObjectFindingVisitor.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** ObjectFindingVisitor.java 26 May 2003 00:26:52 -0000 1.22 --- ObjectFindingVisitor.java 1 Jun 2003 20:50:18 -0000 1.23 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: StringFindingVisitor.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/visitors/StringFindingVisitor.java,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** StringFindingVisitor.java 26 May 2003 00:26:52 -0000 1.23 --- StringFindingVisitor.java 1 Jun 2003 20:50:18 -0000 1.24 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TagFindingVisitor.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/visitors/TagFindingVisitor.java,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** TagFindingVisitor.java 26 May 2003 00:26:52 -0000 1.24 --- TagFindingVisitor.java 1 Jun 2003 20:50:18 -0000 1.25 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TextExtractingVisitor.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/visitors/TextExtractingVisitor.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** TextExtractingVisitor.java 26 May 2003 00:26:52 -0000 1.22 --- TextExtractingVisitor.java 1 Jun 2003 20:50:18 -0000 1.23 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: UrlModifyingVisitor.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/visitors/UrlModifyingVisitor.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** UrlModifyingVisitor.java 26 May 2003 00:26:52 -0000 1.21 --- UrlModifyingVisitor.java 1 Jun 2003 20:50:18 -0000 1.22 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: package.html =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/visitors/package.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** package.html 26 May 2003 00:26:52 -0000 1.5 --- package.html 1 Jun 2003 20:50:18 -0000 1.6 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030525 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha --- 6,10 ---- @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030601 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha |
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util In directory sc8-pr-cvs1:/tmp/cvs-serv18708/htmlparser/src/org/htmlparser/util Modified Files: ChainedException.java CommandLine.java DefaultParserFeedback.java FeedbackManager.java Generate.java IteratorImpl.java LinkProcessor.java NodeIterator.java NodeList.java ParserException.java ParserFeedback.java ParserUtils.java PeekingIterator.java SimpleNodeIterator.java Translate.java package.html Log Message: Update version headers to 1.4-20030601 and update changelog. Index: ChainedException.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/ChainedException.java,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** ChainedException.java 26 May 2003 00:26:51 -0000 1.29 --- ChainedException.java 1 Jun 2003 20:50:17 -0000 1.30 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: CommandLine.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/CommandLine.java,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** CommandLine.java 26 May 2003 00:26:51 -0000 1.28 --- CommandLine.java 1 Jun 2003 20:50:17 -0000 1.29 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: DefaultParserFeedback.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/DefaultParserFeedback.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** DefaultParserFeedback.java 26 May 2003 00:26:51 -0000 1.16 --- DefaultParserFeedback.java 1 Jun 2003 20:50:17 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: FeedbackManager.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/FeedbackManager.java,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** FeedbackManager.java 26 May 2003 00:26:51 -0000 1.30 --- FeedbackManager.java 1 Jun 2003 20:50:17 -0000 1.31 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: Generate.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/Generate.java,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** Generate.java 26 May 2003 00:26:51 -0000 1.31 --- Generate.java 1 Jun 2003 20:50:18 -0000 1.32 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: IteratorImpl.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/IteratorImpl.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** IteratorImpl.java 26 May 2003 00:26:51 -0000 1.17 --- IteratorImpl.java 1 Jun 2003 20:50:18 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: LinkProcessor.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/LinkProcessor.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** LinkProcessor.java 26 May 2003 00:26:51 -0000 1.15 --- LinkProcessor.java 1 Jun 2003 20:50:18 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: NodeIterator.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/NodeIterator.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** NodeIterator.java 26 May 2003 00:26:51 -0000 1.17 --- NodeIterator.java 1 Jun 2003 20:50:18 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: NodeList.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/NodeList.java,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** NodeList.java 26 May 2003 00:26:51 -0000 1.29 --- NodeList.java 1 Jun 2003 20:50:18 -0000 1.30 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: ParserException.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/ParserException.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ParserException.java 26 May 2003 00:26:51 -0000 1.15 --- ParserException.java 1 Jun 2003 20:50:18 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: ParserFeedback.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/ParserFeedback.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** ParserFeedback.java 26 May 2003 00:26:51 -0000 1.16 --- ParserFeedback.java 1 Jun 2003 20:50:18 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: ParserUtils.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/ParserUtils.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** ParserUtils.java 26 May 2003 00:26:51 -0000 1.18 --- ParserUtils.java 1 Jun 2003 20:50:18 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: PeekingIterator.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/PeekingIterator.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** PeekingIterator.java 26 May 2003 00:26:51 -0000 1.5 --- PeekingIterator.java 1 Jun 2003 20:50:18 -0000 1.6 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: SimpleNodeIterator.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/SimpleNodeIterator.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** SimpleNodeIterator.java 26 May 2003 00:26:51 -0000 1.19 --- SimpleNodeIterator.java 1 Jun 2003 20:50:18 -0000 1.20 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: Translate.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/Translate.java,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** Translate.java 26 May 2003 00:26:51 -0000 1.24 --- Translate.java 1 Jun 2003 20:50:18 -0000 1.25 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: package.html =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/package.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** package.html 26 May 2003 00:26:52 -0000 1.5 --- package.html 1 Jun 2003 20:50:18 -0000 1.6 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030525 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha --- 6,10 ---- @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030601 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha |
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests In directory sc8-pr-cvs1:/tmp/cvs-serv18708/htmlparser/src/org/htmlparser/tests/tagTests Modified Files: AllTests.java AppletTagTest.java BaseHrefTagTest.java DoctypeTagTest.java EndTagTest.java FormTagTest.java FrameSetTagTest.java FrameTagTest.java ImageTagTest.java InputTagTest.java JspTagTest.java LinkTagTest.java MetaTagTest.java OptionTagTest.java ScriptTagTest.java SelectTagTest.java StyleTagTest.java TagTest.java TextareaTagTest.java TitleTagTest.java package.html Log Message: Update version headers to 1.4-20030601 and update changelog. Index: AllTests.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/AllTests.java,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** AllTests.java 26 May 2003 00:26:50 -0000 1.33 --- AllTests.java 1 Jun 2003 20:50:16 -0000 1.34 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: AppletTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/AppletTagTest.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** AppletTagTest.java 26 May 2003 00:26:50 -0000 1.17 --- AppletTagTest.java 1 Jun 2003 20:50:16 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: BaseHrefTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/BaseHrefTagTest.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** BaseHrefTagTest.java 26 May 2003 00:26:50 -0000 1.16 --- BaseHrefTagTest.java 1 Jun 2003 20:50:16 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: DoctypeTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/DoctypeTagTest.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** DoctypeTagTest.java 26 May 2003 00:26:50 -0000 1.17 --- DoctypeTagTest.java 1 Jun 2003 20:50:16 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: EndTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/EndTagTest.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** EndTagTest.java 26 May 2003 00:26:50 -0000 1.18 --- EndTagTest.java 1 Jun 2003 20:50:16 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: FormTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/FormTagTest.java,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** FormTagTest.java 26 May 2003 00:26:50 -0000 1.20 --- FormTagTest.java 1 Jun 2003 20:50:16 -0000 1.21 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: FrameSetTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/FrameSetTagTest.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** FrameSetTagTest.java 26 May 2003 00:26:50 -0000 1.17 --- FrameSetTagTest.java 1 Jun 2003 20:50:17 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: FrameTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/FrameTagTest.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** FrameTagTest.java 26 May 2003 00:26:50 -0000 1.17 --- FrameTagTest.java 1 Jun 2003 20:50:17 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: ImageTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/ImageTagTest.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** ImageTagTest.java 26 May 2003 00:26:50 -0000 1.18 --- ImageTagTest.java 1 Jun 2003 20:50:17 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: InputTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/InputTagTest.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** InputTagTest.java 26 May 2003 00:26:50 -0000 1.18 --- InputTagTest.java 1 Jun 2003 20:50:17 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: JspTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/JspTagTest.java,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** JspTagTest.java 26 May 2003 00:26:50 -0000 1.20 --- JspTagTest.java 1 Jun 2003 20:50:17 -0000 1.21 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: LinkTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/LinkTagTest.java,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** LinkTagTest.java 26 May 2003 00:26:50 -0000 1.23 --- LinkTagTest.java 1 Jun 2003 20:50:17 -0000 1.24 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: MetaTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/MetaTagTest.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** MetaTagTest.java 26 May 2003 00:26:50 -0000 1.18 --- MetaTagTest.java 1 Jun 2003 20:50:17 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: OptionTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/OptionTagTest.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** OptionTagTest.java 31 May 2003 17:48:20 -0000 1.19 --- OptionTagTest.java 1 Jun 2003 20:50:17 -0000 1.20 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: ScriptTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/ScriptTagTest.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** ScriptTagTest.java 26 May 2003 00:26:50 -0000 1.18 --- ScriptTagTest.java 1 Jun 2003 20:50:17 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: SelectTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/SelectTagTest.java,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** SelectTagTest.java 31 May 2003 17:48:20 -0000 1.20 --- SelectTagTest.java 1 Jun 2003 20:50:17 -0000 1.21 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: StyleTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/StyleTagTest.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** StyleTagTest.java 26 May 2003 00:26:50 -0000 1.17 --- StyleTagTest.java 1 Jun 2003 20:50:17 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/TagTest.java,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** TagTest.java 26 May 2003 00:26:51 -0000 1.28 --- TagTest.java 1 Jun 2003 20:50:17 -0000 1.29 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TextareaTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/TextareaTagTest.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** TextareaTagTest.java 31 May 2003 17:48:21 -0000 1.18 --- TextareaTagTest.java 1 Jun 2003 20:50:17 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: TitleTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/TitleTagTest.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** TitleTagTest.java 26 May 2003 00:26:51 -0000 1.17 --- TitleTagTest.java 1 Jun 2003 20:50:17 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: package.html =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/package.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** package.html 26 May 2003 00:26:51 -0000 1.5 --- package.html 1 Jun 2003 20:50:17 -0000 1.6 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030525 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha --- 6,10 ---- @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030601 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha |
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests In directory sc8-pr-cvs1:/tmp/cvs-serv18708/htmlparser/src/org/htmlparser/tests/utilTests Modified Files: AllTests.java BeanTest.java CharacterTranslationTest.java HTMLLinkProcessorTest.java HTMLTagParserTest.java package.html Log Message: Update version headers to 1.4-20030601 and update changelog. Index: AllTests.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests/AllTests.java,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** AllTests.java 26 May 2003 00:26:51 -0000 1.35 --- AllTests.java 1 Jun 2003 20:50:17 -0000 1.36 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: BeanTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests/BeanTest.java,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** BeanTest.java 26 May 2003 00:26:51 -0000 1.25 --- BeanTest.java 1 Jun 2003 20:50:17 -0000 1.26 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: CharacterTranslationTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests/CharacterTranslationTest.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** CharacterTranslationTest.java 26 May 2003 00:26:51 -0000 1.21 --- CharacterTranslationTest.java 1 Jun 2003 20:50:17 -0000 1.22 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: HTMLLinkProcessorTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests/HTMLLinkProcessorTest.java,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** HTMLLinkProcessorTest.java 26 May 2003 00:26:51 -0000 1.34 --- HTMLLinkProcessorTest.java 1 Jun 2003 20:50:17 -0000 1.35 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: HTMLTagParserTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests/HTMLTagParserTest.java,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** HTMLTagParserTest.java 26 May 2003 00:26:51 -0000 1.34 --- HTMLTagParserTest.java 1 Jun 2003 20:50:17 -0000 1.35 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030525 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030601 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: package.html =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests/package.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** package.html 26 May 2003 00:26:51 -0000 1.5 --- package.html 1 Jun 2003 20:50:17 -0000 1.6 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030525 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha --- 6,10 ---- @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_4_20030601 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha |