[Htmlparser-cvs] htmlparser/src/org/htmlparser/tests/visitorsTests AllTests.java,1.28,1.29 Composite
Brought to you by:
derrickoswald
From: <der...@us...> - 2003-07-27 19:38:04
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/visitorsTests In directory sc8-pr-cvs1:/tmp/cvs-serv26018/htmlparser/src/org/htmlparser/tests/visitorsTests Modified Files: AllTests.java CompositeTagFindingVisitorTest.java HtmlPageTest.java LinkFindingVisitorTest.java NodeVisitorTest.java StringFindingVisitorTest.java TagFindingVisitorTest.java TextExtractingVisitorTest.java UrlModifyingVisitorTest.java Log Message: Update version headers to 1.4-20030727 and update changelog. Index: AllTests.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/visitorsTests/AllTests.java,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** AllTests.java 13 Jul 2003 12:15:12 -0000 1.28 --- AllTests.java 27 Jul 2003 19:19:24 -0000 1.29 *************** *** 1,3 **** ! // HTMLParser Library v1_4_20030713 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_4_20030727 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // Index: CompositeTagFindingVisitorTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/visitorsTests/CompositeTagFindingVisitorTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CompositeTagFindingVisitorTest.java 24 Feb 2003 01:18:46 -0000 1.2 --- CompositeTagFindingVisitorTest.java 27 Jul 2003 19:19:24 -0000 1.3 *************** *** 1,2 **** --- 1,30 ---- + // HTMLParser Library v1_3_20030727 - 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.tests.visitorsTests; Index: HtmlPageTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/visitorsTests/HtmlPageTest.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** HtmlPageTest.java 3 Apr 2003 03:59:21 -0000 1.5 --- HtmlPageTest.java 27 Jul 2003 19:19:24 -0000 1.6 *************** *** 1,2 **** --- 1,30 ---- + // HTMLParser Library v1_3_20030727 - 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.tests.visitorsTests; *************** *** 13,18 **** private static final String SIMPLE_PAGE = ! "<html>" + "<head>" + "<title>Welcome to the HTMLParser website</title>" + "</head>" + "<body>" + "Welcome to HTMLParser" + ! "</body>" + "</html>"; private static final String PAGE_WITH_TABLE = --- 41,52 ---- private static final String SIMPLE_PAGE = ! "<html>" + ! "<head>" + ! "<title>Welcome to the HTMLParser website</title>" + ! "</head>" + ! "<body>" + ! "Welcome to HTMLParser" + ! "</body>" + ! "</html>"; private static final String PAGE_WITH_TABLE = *************** *** 22,29 **** "</head>" + "<body>" + ! "Welcome to HTMLParser" + "<table>" + "<tr>" + "<td>cell 1</td>" + "<td>cell 2</td>" + "</tr>" + "</table>" + "</body>" + "</html>"; ! public HtmlPageTest(String name) { super(name); } --- 56,70 ---- "</head>" + "<body>" + ! "Welcome to HTMLParser" + ! "<table>" + ! "<tr>" + ! "<td>cell 1</td>" + ! "<td>cell 2</td>" + ! "</tr>" + ! "</table>" + "</body>" + "</html>"; ! ! public HtmlPageTest(String name) { super(name); } Index: LinkFindingVisitorTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/visitorsTests/LinkFindingVisitorTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** LinkFindingVisitorTest.java 24 Feb 2003 01:18:46 -0000 1.2 --- LinkFindingVisitorTest.java 27 Jul 2003 19:19:24 -0000 1.3 *************** *** 1,2 **** --- 1,30 ---- + // HTMLParser Library v1_3_20030727 - 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.tests.visitorsTests; Index: NodeVisitorTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/visitorsTests/NodeVisitorTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** NodeVisitorTest.java 24 Feb 2003 01:18:46 -0000 1.2 --- NodeVisitorTest.java 27 Jul 2003 19:19:24 -0000 1.3 *************** *** 1,2 **** --- 1,30 ---- + // HTMLParser Library v1_3_20030727 - 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.tests.visitorsTests; Index: StringFindingVisitorTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/visitorsTests/StringFindingVisitorTest.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** StringFindingVisitorTest.java 24 Feb 2003 01:18:46 -0000 1.4 --- StringFindingVisitorTest.java 27 Jul 2003 19:19:24 -0000 1.5 *************** *** 1,2 **** --- 1,30 ---- + // HTMLParser Library v1_3_20030727 - 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.tests.visitorsTests; Index: TagFindingVisitorTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/visitorsTests/TagFindingVisitorTest.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TagFindingVisitorTest.java 31 Mar 2003 00:12:03 -0000 1.5 --- TagFindingVisitorTest.java 27 Jul 2003 19:19:24 -0000 1.6 *************** *** 1,2 **** --- 1,30 ---- + // HTMLParser Library v1_3_20030727 - 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.tests.visitorsTests; Index: TextExtractingVisitorTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/visitorsTests/TextExtractingVisitorTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TextExtractingVisitorTest.java 24 Feb 2003 01:18:46 -0000 1.2 --- TextExtractingVisitorTest.java 27 Jul 2003 19:19:24 -0000 1.3 *************** *** 1,2 **** --- 1,30 ---- + // HTMLParser Library v1_3_20030727 - 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.tests.visitorsTests; Index: UrlModifyingVisitorTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/visitorsTests/UrlModifyingVisitorTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** UrlModifyingVisitorTest.java 24 Feb 2003 01:18:46 -0000 1.2 --- UrlModifyingVisitorTest.java 27 Jul 2003 19:19:24 -0000 1.3 *************** *** 1,2 **** --- 1,30 ---- + // HTMLParser Library v1_3_20030727 - 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.tests.visitorsTests; |