htmlparser-cvs Mailing List for HTML Parser (Page 58)
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: <der...@us...> - 2003-05-24 10:15:09
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners In directory sc8-pr-cvs1:/tmp/cvs-serv8838/org/htmlparser/scanners Modified Files: TableRowScanner.java TableColumnScanner.java Log Message: Fixed bug #742254 Nested <TR> &<TD> tags should not be allowed. Index: TableRowScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/TableRowScanner.java,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** TableRowScanner.java 19 May 2003 02:49:57 -0000 1.24 --- TableRowScanner.java 24 May 2003 10:15:05 -0000 1.25 *************** *** 45,62 **** public TableRowScanner(String filter,Parser parser) { ! super(filter, MATCH_STRING); ! parser.addScanner(new TableColumnScanner()); } public TableRowScanner( String filter, String[] nameOfTagToMatch, ! boolean removeScanners, ! boolean stringNodeIgnoreMode) { super( filter, nameOfTagToMatch, ! new String[] {} ); } --- 45,66 ---- public TableRowScanner(String filter,Parser parser) { ! this(filter, parser, MATCH_STRING, new String[] {}, new String[] {}, false); } public TableRowScanner( String filter, + Parser parser, String[] nameOfTagToMatch, ! String [] tagEnders, ! String [] endTagEnders, ! boolean allowSelfChildren) { super( filter, nameOfTagToMatch, ! tagEnders, ! endTagEnders, ! allowSelfChildren ); + parser.addScanner(new TableColumnScanner()); } Index: TableColumnScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/TableColumnScanner.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** TableColumnScanner.java 19 May 2003 02:49:57 -0000 1.21 --- TableColumnScanner.java 24 May 2003 10:15:05 -0000 1.22 *************** *** 42,46 **** public TableColumnScanner(String filter) { ! super(filter,MATCH_STRING); } --- 42,46 ---- public TableColumnScanner(String filter) { ! this(filter, MATCH_STRING, new String[] {}, new String[] {}, false); } *************** *** 48,59 **** String filter, String[] nameOfTagToMatch, ! boolean removeScanners, ! boolean stringNodeIgnoreMode) { super( filter, nameOfTagToMatch, ! new String[] {} ); ! } public Tag createTag( --- 48,62 ---- String filter, String[] nameOfTagToMatch, ! String [] tagEnders, ! String [] endTagEnders, ! boolean allowSelfChildren) { super( filter, nameOfTagToMatch, ! tagEnders, ! endTagEnders, ! allowSelfChildren ); ! } public Tag createTag( |
From: <der...@us...> - 2003-05-24 10:15:08
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests In directory sc8-pr-cvs1:/tmp/cvs-serv8838/org/htmlparser/tests/scannersTests Modified Files: TableScannerTest.java Log Message: Fixed bug #742254 Nested <TR> &<TD> tags should not be allowed. Index: TableScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/TableScannerTest.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** TableScannerTest.java 19 May 2003 02:49:59 -0000 1.19 --- TableScannerTest.java 24 May 2003 10:15:04 -0000 1.20 *************** *** 133,135 **** --- 133,171 ---- } } + + /** + * See bug #742254 Nested <TR> &<TD> tags should not be allowed + */ + public void testUnClosed1 () throws ParserException + { + createParser ("<TABLE><TR><TR></TR></TABLE>"); + parser.registerScanners (); + parseAndAssertNodeCount (1); + String s = node[0].toHtml (); + assertEquals ("Unclosed","<TABLE><TR></TR><TR></TR></TABLE>",s); + } + + /** + * See bug #742254 Nested <TR> &<TD> tags should not be allowed + */ + public void testUnClosed2 () throws ParserException + { + createParser ("<TABLE><TR><TD><TD></TD></TR></TABLE>"); + parser.registerScanners (); + parseAndAssertNodeCount (1); + String s = node[0].toHtml (); + assertEquals ("Unclosed","<TABLE><TR><TD></TD><TD></TD></TR></TABLE>",s); + } + + /** + * See bug #742254 Nested <TR> &<TD> tags should not be allowed + */ + public void testUnClosed3 () throws ParserException + { + createParser ("<TABLE><TR><TD>blah blah</TD><TR><TD>blah blah</TD></TR></TABLE>"); + parser.registerScanners (); + parseAndAssertNodeCount (1); + String s = node[0].toHtml (); + assertEquals ("Unclosed","<TABLE><TR><TD>blah blah</TD></TR><TR><TD>blah blah</TD></TR></TABLE>",s); + } } |
From: <der...@us...> - 2003-05-24 02:05:52
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests In directory sc8-pr-cvs1:/tmp/cvs-serv14275/org/htmlparser/tests Modified Files: ParserTestCase.java Log Message: Correct a typo. Index: ParserTestCase.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/ParserTestCase.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** ParserTestCase.java 2 May 2003 00:53:56 -0000 1.13 --- ParserTestCase.java 24 May 2003 02:05:50 -0000 1.14 *************** *** 143,147 **** msg.append("-->\n").append(node[i].toHtml()).append("\n"); } ! assertEquals("Number of nodes parsed didnt match, nodes found were :\n"+msg.toString(),nodeCountExpected,nodeCount); } --- 143,147 ---- msg.append("-->\n").append(node[i].toHtml()).append("\n"); } ! assertEquals("Number of nodes parsed didn't match, nodes found were :\n"+msg.toString(),nodeCountExpected,nodeCount); } |
From: <po...@us...> - 2003-05-22 00:36:18
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserHelper In directory sc8-pr-cvs1:/tmp/cvs-serv7363/src/org/htmlparser/parserHelper Modified Files: TagParser.java Log Message: - Tag now remembers (in tagLines) *all* the lines spanned by the tag (not just the last one). - Tag now remembers line number on which tag starts (from TagData). - Tag now has new public methods: int getTagStartLine() int getTagEndLine() String[] getTagLines() - TagParser now gives Tag (via constructor and setTagLine) sufficient info to support the above. Index: TagParser.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserHelper/TagParser.java,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** TagParser.java 19 May 2003 02:49:57 -0000 1.28 --- TagParser.java 22 May 2003 00:36:15 -0000 1.29 *************** *** 39,44 **** public class TagParser { public final static int TAG_BEFORE_PARSING_STATE=1; ! public final static int TAG_BEGIN_PARSING_STATE=1<<2; ! public final static int TAG_FINISHED_PARSING_STATE=1<<3; public final static int TAG_ILLEGAL_STATE=1<<4; public final static int TAG_IGNORE_DATA_STATE=1<<5; --- 39,44 ---- public class TagParser { public final static int TAG_BEFORE_PARSING_STATE=1; ! public final static int TAG_BEGIN_PARSING_STATE=1<<2; ! public final static int TAG_FINISHED_PARSING_STATE=1<<3; public final static int TAG_ILLEGAL_STATE=1<<4; public final static int TAG_IGNORE_DATA_STATE=1<<5; *************** *** 58,63 **** int i=position; char ch; ! char[] ignorechar = new char[1]; // holds the character we're looking for when in TAG_IGNORE_DATA_STATE ! Tag tag = new Tag(new TagData(0,0,"",input)); Bool encounteredQuery = new Bool(false); while (i<tag.getTagLine().length() && --- 58,64 ---- int i=position; char ch; ! char[] ignorechar = new char[1]; // holds the character we're looking for when in TAG_IGNORE_DATA_STATE ! Tag tag = new Tag(new TagData(position, 0, reader.getLastLineNumber(), 0, "", input, "", false)); ! Bool encounteredQuery = new Bool(false); while (i<tag.getTagLine().length() && *************** *** 79,83 **** return tag; } else ! return null; } --- 80,84 ---- return tag; } else ! return null; } *************** *** 87,92 **** state = toggleIgnoringState(state, ch, ignorechar); if (state==TAG_BEFORE_PARSING_STATE && ch!='<') { ! state= TAG_ILLEGAL_STATE; ! } if (state==TAG_IGNORE_DATA_STATE && ch=='<') { // If the next tag char is is close tag, then --- 88,93 ---- state = toggleIgnoringState(state, ch, ignorechar); if (state==TAG_BEFORE_PARSING_STATE && ch!='<') { ! state= TAG_ILLEGAL_STATE; ! } if (state==TAG_IGNORE_DATA_STATE && ch=='<') { // If the next tag char is is close tag, then *************** *** 96,100 **** } if (state==TAG_IGNORE_BEGIN_TAG_STATE && ch=='>') { ! state = TAG_IGNORE_DATA_STATE; } checkIfAppendable(encounteredQuery, state, ch, tag); --- 97,101 ---- } if (state==TAG_IGNORE_BEGIN_TAG_STATE && ch=='>') { ! state = TAG_IGNORE_DATA_STATE; } checkIfAppendable(encounteredQuery, state, ch, tag); *************** *** 277,282 **** // Annette Doyle - see testcase HTMLImageScannerTest.testImageTagOnMultipleLines() // Further modified by Somik Raha, to remove bug - HTMLTagTest.testBrokenTag do { ! nextLine = reader.getNextLine(); } while (nextLine!=null && nextLine.length()==0); --- 278,285 ---- // Annette Doyle - see testcase HTMLImageScannerTest.testImageTagOnMultipleLines() // Further modified by Somik Raha, to remove bug - HTMLTagTest.testBrokenTag + int numLinesAdvanced = 0; do { ! nextLine = reader.getNextLine(); ! numLinesAdvanced++; } while (nextLine!=null && nextLine.length()==0); *************** *** 288,291 **** --- 291,298 ---- tag.append(Node.getLineSeparator()); } + + // Ensure blank lines are included in tag's 'tagLines' + while (--numLinesAdvanced > 0) + tag.setTagLine(""); // We need to continue parsing to the next line |
From: <po...@us...> - 2003-05-22 00:36:18
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags In directory sc8-pr-cvs1:/tmp/cvs-serv7363/src/org/htmlparser/tags Modified Files: Tag.java Log Message: - Tag now remembers (in tagLines) *all* the lines spanned by the tag (not just the last one). - Tag now remembers line number on which tag starts (from TagData). - Tag now has new public methods: int getTagStartLine() int getTagEndLine() String[] getTagLines() - TagParser now gives Tag (via constructor and setTagLine) sufficient info to support the above. Index: Tag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/Tag.java,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** Tag.java 19 May 2003 02:49:58 -0000 1.26 --- Tag.java 22 May 2003 00:36:15 -0000 1.27 *************** *** 53,65 **** { public static final String TYPE = "TAG"; ! /** ! * Constant used as value for the value of the tag name ! * in parseParameters (Kaarle Kaila 3.8.2001) ! */ ! public final static String TAGNAME = "$<TAGNAME>$"; ! public final static String EMPTYTAG = "$<EMPTYTAG>$"; private final static int TAG_BEFORE_PARSING_STATE=1; ! private final static int TAG_BEGIN_PARSING_STATE=2; ! private final static int TAG_FINISHED_PARSING_STATE=3; private final static int TAG_ILLEGAL_STATE=4; private final static int TAG_IGNORE_DATA_STATE=5; --- 53,65 ---- { public static final String TYPE = "TAG"; ! /** ! * Constant used as value for the value of the tag name ! * in parseParameters (Kaarle Kaila 3.8.2001) ! */ ! public final static String TAGNAME = "$<TAGNAME>$"; ! public final static String EMPTYTAG = "$<EMPTYTAG>$"; private final static int TAG_BEFORE_PARSING_STATE=1; ! private final static int TAG_BEGIN_PARSING_STATE=2; ! private final static int TAG_FINISHED_PARSING_STATE=3; private final static int TAG_ILLEGAL_STATE=4; private final static int TAG_IGNORE_DATA_STATE=5; *************** *** 71,82 **** /** * Tag contents will have the contents of the comment tag. ! */ protected StringBuffer tagContents; private boolean emptyXmlTag = false; /** ! * tag parameters parsed into this hashtable ! * not implemented yet ! * added by Kaarle Kaila 23.10.2001 ! */ protected Hashtable attributes=null; --- 71,82 ---- /** * Tag contents will have the contents of the comment tag. ! */ protected StringBuffer tagContents; private boolean emptyXmlTag = false; /** ! * tag parameters parsed into this hashtable ! * not implemented yet ! * added by Kaarle Kaila 23.10.2001 ! */ protected Hashtable attributes=null; *************** *** 88,91 **** --- 88,101 ---- private java.lang.String tagLine; + /** + * The combined text of all the lines spanned by this tag + */ + private String[] tagLines; + + /** + * The line number on which this tag starts + */ + private int startLine; + /** * Set of tags that breaks the flow. *************** *** 135,141 **** --- 145,153 ---- { super(tagData.getTagBegin(),tagData.getTagEnd()); + this.startLine = tagData.getStartLine(); this.tagContents = new StringBuffer(); this.tagContents.append(tagData.getTagContents()); this.tagLine = tagData.getTagLine(); + this.tagLines = new String[] {tagData.getTagLine()}; this.emptyXmlTag = tagData.isEmptyXmlTag(); } *************** *** 224,227 **** --- 236,247 ---- /** + * Returns the combined text of all the lines spanned by this tag + * @return java.lang.String + */ + public String[] getTagLines() { + return tagLines; + } + + /** * Return the text contained in this tag */ *************** *** 265,269 **** return (ret.toString ()); } ! /** * Scan the tag to see using the registered scanners, and attempt identification. --- 285,289 ---- return (ret.toString ()); } ! /** * Scan the tag to see using the registered scanners, and attempt identification. *************** *** 341,345 **** this.nodeEnd = tagEnd; } ! /** * Gets the nodeEnd. --- 361,365 ---- this.nodeEnd = tagEnd; } ! /** * Gets the nodeEnd. *************** *** 350,356 **** } ! public void setTagLine(java.lang.String newTagLine) { ! tagLine = newTagLine; ! } public void setText(String text) { --- 370,401 ---- } ! /** ! * Gets the line number on which this tag starts. ! * @return the start line number ! */ ! public int getTagStartLine() { ! return startLine; ! } ! ! /** ! * Gets the line number on which this tag ends. ! * @return the end line number ! */ ! public int getTagEndLine() { ! return startLine + tagLines.length - 1; ! } ! ! public void setTagLine(java.lang.String newTagLine) { ! tagLine = newTagLine; ! ! // Note: Incur the overhead of resizing each time (versus ! // preallocating a larger array), since the average tag ! // generally doesn't span multiple lines ! String[] newTagLines = new String[tagLines.length + 1]; ! for (int i = 0; i < tagLines.length; i++) ! newTagLines[i] = tagLines[i]; ! newTagLines[tagLines.length] = newTagLine; ! tagLines = newTagLines; ! } public void setText(String text) { |
From: <der...@us...> - 2003-05-21 12:00:47
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests In directory sc8-pr-cvs1:/tmp/cvs-serv14338/org/htmlparser/tests/tagTests Modified Files: TagTest.java Log Message: See bug #740411 setParsed() has no effect on output. Seems to work in the current 1.3 code base. Index: TagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/TagTest.java,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** TagTest.java 21 May 2003 11:13:34 -0000 1.25 --- TagTest.java 21 May 2003 12:00:42 -0000 1.26 *************** *** 677,679 **** --- 677,699 ---- temp); } + + /** + * See bug #740411 setParsed() has no effect on output. + */ + public void testParameterChange() throws ParserException + { + createParser("<TABLE BORDER=0>"); + parseAndAssertNodeCount(1); + // the node should be an HTMLTag + assertTrue("Node should be a HTMLTag",node[0] instanceof Tag); + Tag tag = (Tag)node[0]; + assertEquals("Initial text should be","TABLE BORDER=0",tag.getText ()); + + Hashtable tempHash = tag.getAttributes (); + tempHash.put ("BORDER","1"); + tag.setAttributes (tempHash); + + String s = tag.toHtml (); + assertEquals("HTML should be","<TABLE BORDER=\"1\" >", s); + } } |
From: <der...@us...> - 2003-05-21 11:13:37
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests In directory sc8-pr-cvs1:/tmp/cvs-serv12190/org/htmlparser/tests/tagTests Modified Files: TagTest.java Log Message: See bug #741026 registerScanners() mangles output HTML badly. Seems to work in the current 1.3 code base. Index: TagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/TagTest.java,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** TagTest.java 19 May 2003 02:50:00 -0000 1.24 --- TagTest.java 21 May 2003 11:13:34 -0000 1.25 *************** *** 656,658 **** --- 656,679 ---- assertStringEquals("Resolved Link","http://cbc.ca", href); } + + /** + * See bug #741026 registerScanners() mangles output HTML badly. + */ + public void testHTMLOutputOfDifficultLinksWithRegisterScanners () throws ParserException + { + // straight out of a real world example + createParser ("<a href=http://www.google.com/webhp?hl=en>"); + // register standard scanners (Very Important) + parser.registerScanners (); + String temp = null; + for (NodeIterator e = parser.elements (); e.hasMoreNodes ();) + { + Node newNode = e.nextNode (); // Get the next HTML Node + temp = newNode.toHTML (); + } + assertNotNull ("No nodes", temp); + assertEquals ("Incorrect HTML output: ", + "<A HREF=\"http://www.google.com/webhp?hl=en\"></A>", + temp); + } } |
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util In directory sc8-pr-cvs1:/tmp/cvs-serv14782/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.3-20030518 and update changelog Index: ChainedException.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/ChainedException.java,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** ChainedException.java 12 May 2003 01:37:50 -0000 1.26 --- ChainedException.java 19 May 2003 02:50:00 -0000 1.27 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** CommandLine.java 12 May 2003 01:37:50 -0000 1.25 --- CommandLine.java 19 May 2003 02:50:00 -0000 1.26 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** DefaultParserFeedback.java 12 May 2003 01:37:50 -0000 1.13 --- DefaultParserFeedback.java 19 May 2003 02:50:00 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** FeedbackManager.java 12 May 2003 01:37:50 -0000 1.27 --- FeedbackManager.java 19 May 2003 02:50:00 -0000 1.28 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** Generate.java 12 May 2003 01:37:51 -0000 1.28 --- Generate.java 19 May 2003 02:50:00 -0000 1.29 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** IteratorImpl.java 12 May 2003 01:37:51 -0000 1.14 --- IteratorImpl.java 19 May 2003 02:50:00 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** LinkProcessor.java 12 May 2003 01:37:51 -0000 1.12 --- LinkProcessor.java 19 May 2003 02:50:01 -0000 1.13 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** NodeIterator.java 12 May 2003 01:37:51 -0000 1.14 --- NodeIterator.java 19 May 2003 02:50:01 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** NodeList.java 12 May 2003 01:37:51 -0000 1.25 --- NodeList.java 19 May 2003 02:50:01 -0000 1.26 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** ParserException.java 12 May 2003 01:37:51 -0000 1.12 --- ParserException.java 19 May 2003 02:50:01 -0000 1.13 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** ParserFeedback.java 12 May 2003 01:37:51 -0000 1.13 --- ParserFeedback.java 19 May 2003 02:50:01 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ParserUtils.java 12 May 2003 01:37:51 -0000 1.15 --- ParserUtils.java 19 May 2003 02:50:01 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PeekingIterator.java 24 Feb 2003 01:18:46 -0000 1.2 --- PeekingIterator.java 19 May 2003 02:50:01 -0000 1.3 *************** *** 1,2 **** --- 1,30 ---- + // HTMLParser Library v1_3_20030518 - 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.util; Index: SimpleNodeIterator.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/util/SimpleNodeIterator.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** SimpleNodeIterator.java 18 May 2003 13:50:38 -0000 1.16 --- SimpleNodeIterator.java 19 May 2003 02:50:01 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** Translate.java 12 May 2003 01:37:51 -0000 1.21 --- Translate.java 19 May 2003 02:50:01 -0000 1.22 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** package.html 18 May 2003 12:07:20 -0000 1.2 --- package.html 19 May 2003 02:50:01 -0000 1.3 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_3_20030511 - 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_3_20030518 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha |
From: <der...@us...> - 2003-05-19 03:01:48
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/visitors In directory sc8-pr-cvs1:/tmp/cvs-serv14782/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.3-20030518 and update changelog Index: CompositeTagFindingVisitor.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/visitors/CompositeTagFindingVisitor.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CompositeTagFindingVisitor.java 24 Feb 2003 01:12:14 -0000 1.2 --- CompositeTagFindingVisitor.java 19 May 2003 02:50:01 -0000 1.3 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030202 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** HtmlPage.java 12 May 2003 01:37:51 -0000 1.19 --- HtmlPage.java 19 May 2003 02:50:01 -0000 1.20 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** LinkFindingVisitor.java 12 May 2003 01:37:51 -0000 1.15 --- LinkFindingVisitor.java 19 May 2003 02:50:01 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** NodeVisitor.java 12 May 2003 01:37:51 -0000 1.15 --- NodeVisitor.java 19 May 2003 02:50:01 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** ObjectFindingVisitor.java 18 May 2003 12:07:21 -0000 1.19 --- ObjectFindingVisitor.java 19 May 2003 02:50:01 -0000 1.20 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** StringFindingVisitor.java 12 May 2003 01:37:51 -0000 1.20 --- StringFindingVisitor.java 19 May 2003 02:50:01 -0000 1.21 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** TagFindingVisitor.java 12 May 2003 01:37:51 -0000 1.21 --- TagFindingVisitor.java 19 May 2003 02:50:01 -0000 1.22 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** TextExtractingVisitor.java 12 May 2003 01:37:51 -0000 1.19 --- TextExtractingVisitor.java 19 May 2003 02:50:01 -0000 1.20 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** UrlModifyingVisitor.java 12 May 2003 01:37:51 -0000 1.18 --- UrlModifyingVisitor.java 19 May 2003 02:50:01 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** package.html 18 May 2003 12:07:21 -0000 1.2 --- package.html 19 May 2003 02:50:01 -0000 1.3 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_3_20030511 - 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_3_20030518 - 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-serv14782/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.3-20030518 and update changelog Index: AppletTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/AppletTag.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** AppletTag.java 12 May 2003 01:37:46 -0000 1.13 --- AppletTag.java 19 May 2003 02:49:58 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** BaseHrefTag.java 12 May 2003 01:37:46 -0000 1.12 --- BaseHrefTag.java 19 May 2003 02:49:58 -0000 1.13 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** BodyTag.java 24 Feb 2003 01:12:14 -0000 1.1 --- BodyTag.java 19 May 2003 02:49:58 -0000 1.2 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030125 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Bullet.java 13 Mar 2003 22:21:01 -0000 1.1 --- Bullet.java 19 May 2003 02:49:58 -0000 1.2 *************** *** 1,2 **** --- 1,30 ---- + // HTMLParser Library v1_3_20030518 - 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.tags; Index: BulletList.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/BulletList.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** BulletList.java 28 Apr 2003 01:08:28 -0000 1.1 --- BulletList.java 19 May 2003 02:49:58 -0000 1.2 *************** *** 1,8 **** ! /* ! * Created on Apr 27, 2003 ! * ! * To change the template for this generated file go to ! * Window>Preferences>Java>Code Generation>Code and Comments ! */ package org.htmlparser.tags; --- 1,30 ---- ! // HTMLParser Library v1_3_20030518 - 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.tags; Index: CompositeTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/CompositeTag.java,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** CompositeTag.java 18 May 2003 13:50:38 -0000 1.38 --- CompositeTag.java 19 May 2003 02:49:58 -0000 1.39 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Div.java 31 Jan 2003 21:33:36 -0000 1.1 --- Div.java 19 May 2003 02:49:58 -0000 1.2 *************** *** 1,2 **** --- 1,30 ---- + // HTMLParser Library v1_3_20030518 - 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.tags; Index: DoctypeTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/DoctypeTag.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** DoctypeTag.java 12 May 2003 01:37:46 -0000 1.13 --- DoctypeTag.java 19 May 2003 02:49:58 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** EndTag.java 12 May 2003 01:37:46 -0000 1.15 --- EndTag.java 19 May 2003 02:49:58 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** FormTag.java 12 May 2003 01:37:46 -0000 1.16 --- FormTag.java 19 May 2003 02:49:58 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** FrameSetTag.java 12 May 2003 01:37:46 -0000 1.12 --- FrameSetTag.java 19 May 2003 02:49:58 -0000 1.13 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** FrameTag.java 12 May 2003 01:37:46 -0000 1.12 --- FrameTag.java 19 May 2003 02:49:58 -0000 1.13 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** HeadTag.java 16 May 2003 11:38:38 -0000 1.1 --- HeadTag.java 19 May 2003 02:49:58 -0000 1.2 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** Html.java 12 May 2003 01:37:46 -0000 1.13 --- Html.java 19 May 2003 02:49:58 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** ImageTag.java 12 May 2003 01:37:46 -0000 1.12 --- ImageTag.java 19 May 2003 02:49:58 -0000 1.13 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** InputTag.java 12 May 2003 01:37:46 -0000 1.13 --- InputTag.java 19 May 2003 02:49:58 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** JspTag.java 12 May 2003 01:37:46 -0000 1.14 --- JspTag.java 19 May 2003 02:49:58 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** LabelTag.java 12 May 2003 01:37:46 -0000 1.14 --- LabelTag.java 19 May 2003 02:49:58 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** LinkTag.java 18 May 2003 14:31:18 -0000 1.19 --- LinkTag.java 19 May 2003 02:49:58 -0000 1.20 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** MetaTag.java 12 May 2003 01:37:46 -0000 1.13 --- MetaTag.java 19 May 2003 02:49:58 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** OptionTag.java 12 May 2003 01:37:46 -0000 1.15 --- OptionTag.java 19 May 2003 02:49:58 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** ScriptTag.java 12 May 2003 01:37:46 -0000 1.13 --- ScriptTag.java 19 May 2003 02:49:58 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** SelectTag.java 12 May 2003 01:37:46 -0000 1.13 --- SelectTag.java 19 May 2003 02:49:58 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** Span.java 12 May 2003 01:37:46 -0000 1.15 --- Span.java 19 May 2003 02:49:58 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** StyleTag.java 12 May 2003 01:37:46 -0000 1.12 --- StyleTag.java 19 May 2003 02:49:58 -0000 1.13 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** TableColumn.java 12 May 2003 01:37:46 -0000 1.15 --- TableColumn.java 19 May 2003 02:49:58 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** TableRow.java 12 May 2003 01:37:46 -0000 1.17 --- TableRow.java 19 May 2003 02:49:58 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** TableTag.java 12 May 2003 01:37:46 -0000 1.18 --- TableTag.java 19 May 2003 02:49:58 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** Tag.java 17 May 2003 12:12:50 -0000 1.25 --- Tag.java 19 May 2003 02:49:58 -0000 1.26 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** TextareaTag.java 12 May 2003 01:37:46 -0000 1.12 --- TextareaTag.java 19 May 2003 02:49:58 -0000 1.13 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** TitleTag.java 12 May 2003 01:37:46 -0000 1.12 --- TitleTag.java 19 May 2003 02:49:58 -0000 1.13 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** package.html 18 May 2003 12:07:21 -0000 1.2 --- package.html 19 May 2003 02:49:58 -0000 1.3 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_3_20030511 - 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_3_20030518 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha |
From: <der...@us...> - 2003-05-19 02:50:32
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/parserHelperTests In directory sc8-pr-cvs1:/tmp/cvs-serv14782/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.3-20030518 and update changelog Index: AllTests.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/parserHelperTests/AllTests.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** AllTests.java 12 May 2003 01:37:48 -0000 1.13 --- AllTests.java 19 May 2003 02:49:58 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** AttributeParserTest.java 18 May 2003 09:41:52 -0000 1.27 --- AttributeParserTest.java 19 May 2003 02:49:58 -0000 1.28 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** CompositeTagScannerHelperTest.java 12 May 2003 01:37:48 -0000 1.6 --- CompositeTagScannerHelperTest.java 19 May 2003 02:49:58 -0000 1.7 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** RemarkNodeParserTest.java 12 May 2003 01:37:48 -0000 1.22 --- RemarkNodeParserTest.java 19 May 2003 02:49:58 -0000 1.23 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** StringParserTest.java 12 May 2003 01:37:48 -0000 1.24 --- StringParserTest.java 19 May 2003 02:49:58 -0000 1.25 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** TagParserTest.java 18 May 2003 09:41:52 -0000 1.27 --- TagParserTest.java 19 May 2003 02:49:58 -0000 1.28 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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-serv14782/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.3-20030518 and update changelog Index: AppletScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/AppletScanner.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** AppletScanner.java 12 May 2003 01:37:44 -0000 1.17 --- AppletScanner.java 19 May 2003 02:49:57 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** BaseHrefScanner.java 12 May 2003 01:37:44 -0000 1.12 --- BaseHrefScanner.java 19 May 2003 02:49:57 -0000 1.13 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** BodyScanner.java 16 May 2003 11:38:38 -0000 1.4 --- BodyScanner.java 19 May 2003 02:49:57 -0000 1.5 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030125 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** BulletListScanner.java 28 Apr 2003 03:06:30 -0000 1.2 --- BulletListScanner.java 19 May 2003 02:49:57 -0000 1.3 *************** *** 1,2 **** --- 1,30 ---- + // HTMLParser Library v1_3_20030518 - 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.scanners; Index: BulletScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/BulletScanner.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** BulletScanner.java 28 Apr 2003 03:18:37 -0000 1.8 --- BulletScanner.java 19 May 2003 02:49:57 -0000 1.9 *************** *** 1,2 **** --- 1,30 ---- + // HTMLParser Library v1_3_20030518 - 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.scanners; Index: CompositeTagScanner.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/scanners/CompositeTagScanner.java,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** CompositeTagScanner.java 12 May 2003 01:37:44 -0000 1.51 --- CompositeTagScanner.java 19 May 2003 02:49:57 -0000 1.52 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** DivScanner.java 12 May 2003 01:37:44 -0000 1.16 --- DivScanner.java 19 May 2003 02:49:57 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** DoctypeScanner.java 12 May 2003 01:37:44 -0000 1.12 --- DoctypeScanner.java 19 May 2003 02:49:57 -0000 1.13 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** FormScanner.java 12 May 2003 01:37:44 -0000 1.29 --- FormScanner.java 19 May 2003 02:49:57 -0000 1.30 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** FrameScanner.java 12 May 2003 01:37:45 -0000 1.13 --- FrameScanner.java 19 May 2003 02:49:57 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** FrameSetScanner.java 12 May 2003 01:37:45 -0000 1.14 --- FrameSetScanner.java 19 May 2003 02:49:57 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** HeadScanner.java 16 May 2003 11:38:38 -0000 1.1 --- HeadScanner.java 19 May 2003 02:49:57 -0000 1.2 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** HtmlScanner.java 12 May 2003 01:37:45 -0000 1.16 --- HtmlScanner.java 19 May 2003 02:49:57 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** ImageScanner.java 12 May 2003 01:37:45 -0000 1.13 --- ImageScanner.java 19 May 2003 02:49:57 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** InputTagScanner.java 12 May 2003 01:37:45 -0000 1.12 --- InputTagScanner.java 19 May 2003 02:49:57 -0000 1.13 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** JspScanner.java 12 May 2003 01:37:45 -0000 1.12 --- JspScanner.java 19 May 2003 02:49:57 -0000 1.13 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** LabelScanner.java 12 May 2003 01:37:45 -0000 1.19 --- LabelScanner.java 19 May 2003 02:49:57 -0000 1.20 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** LinkScanner.java 17 May 2003 12:12:49 -0000 1.39 --- LinkScanner.java 19 May 2003 02:49:57 -0000 1.40 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** MetaTagScanner.java 12 May 2003 01:37:45 -0000 1.12 --- MetaTagScanner.java 19 May 2003 02:49:57 -0000 1.13 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** OptionTagScanner.java 12 May 2003 01:37:45 -0000 1.18 --- OptionTagScanner.java 19 May 2003 02:49:57 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** ScriptScanner.java 12 May 2003 01:37:45 -0000 1.20 --- ScriptScanner.java 19 May 2003 02:49:57 -0000 1.21 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** SelectTagScanner.java 12 May 2003 01:37:45 -0000 1.16 --- SelectTagScanner.java 19 May 2003 02:49:57 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** SpanScanner.java 12 May 2003 01:37:45 -0000 1.18 --- SpanScanner.java 19 May 2003 02:49:57 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** StyleScanner.java 12 May 2003 01:37:45 -0000 1.13 --- StyleScanner.java 19 May 2003 02:49:57 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** TableColumnScanner.java 12 May 2003 01:37:45 -0000 1.20 --- TableColumnScanner.java 19 May 2003 02:49:57 -0000 1.21 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** TableRowScanner.java 12 May 2003 01:37:45 -0000 1.23 --- TableRowScanner.java 19 May 2003 02:49:57 -0000 1.24 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** TableScanner.java 12 May 2003 01:37:45 -0000 1.23 --- TableScanner.java 19 May 2003 02:49:57 -0000 1.24 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** TagScanner.java 17 May 2003 12:12:49 -0000 1.22 --- TagScanner.java 19 May 2003 02:49:57 -0000 1.23 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** TextareaTagScanner.java 12 May 2003 01:37:46 -0000 1.13 --- TextareaTagScanner.java 19 May 2003 02:49:57 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** TitleScanner.java 12 May 2003 01:37:46 -0000 1.14 --- TitleScanner.java 19 May 2003 02:49:57 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** package.html 18 May 2003 12:07:20 -0000 1.2 --- package.html 19 May 2003 02:49:57 -0000 1.3 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_3_20030511 - 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_3_20030518 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha |
From: <der...@us...> - 2003-05-19 02:50:31
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/data In directory sc8-pr-cvs1:/tmp/cvs-serv14782/htmlparser/src/org/htmlparser/tags/data Modified Files: CompositeTagData.java FormData.java LinkData.java TagData.java Log Message: update version headers to 1.3-20030518 and update changelog Index: CompositeTagData.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/data/CompositeTagData.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** CompositeTagData.java 12 May 2003 01:37:47 -0000 1.19 --- CompositeTagData.java 19 May 2003 02:49:58 -0000 1.20 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** FormData.java 12 May 2003 01:37:47 -0000 1.14 --- FormData.java 19 May 2003 02:49:58 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** LinkData.java 12 May 2003 01:37:47 -0000 1.16 --- LinkData.java 19 May 2003 02:49:58 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** TagData.java 12 May 2003 01:37:47 -0000 1.17 --- TagData.java 19 May 2003 02:49:58 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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-serv14782/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.3-20030518 and update changelog Index: AllTests.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/AllTests.java,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** AllTests.java 12 May 2003 01:37:47 -0000 1.35 --- AllTests.java 19 May 2003 02:49:58 -0000 1.36 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** FunctionalTests.java 12 May 2003 01:37:47 -0000 1.30 --- FunctionalTests.java 19 May 2003 02:49:58 -0000 1.31 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** LineNumberAssignedByNodeReaderTest.java 12 May 2003 01:37:47 -0000 1.8 --- LineNumberAssignedByNodeReaderTest.java 19 May 2003 02:49:58 -0000 1.9 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** ParserTest.java 12 May 2003 01:37:47 -0000 1.26 --- ParserTest.java 19 May 2003 02:49:58 -0000 1.27 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** PerformanceTest.java 12 May 2003 01:37:47 -0000 1.28 --- PerformanceTest.java 19 May 2003 02:49:58 -0000 1.29 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** package.html 18 May 2003 12:07:20 -0000 1.2 --- package.html 19 May 2003 02:49:58 -0000 1.3 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_3_20030511 - 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_3_20030518 - 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-serv14782/htmlparser/src/org/htmlparser/parserapplications Modified Files: LinkExtractor.java MailRipper.java Robot.java StringExtractor.java package.html Log Message: update version headers to 1.3-20030518 and update changelog Index: LinkExtractor.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserapplications/LinkExtractor.java,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** LinkExtractor.java 12 May 2003 01:37:44 -0000 1.29 --- LinkExtractor.java 19 May 2003 02:49:57 -0000 1.30 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** MailRipper.java 18 May 2003 09:41:51 -0000 1.32 --- MailRipper.java 19 May 2003 02:49:57 -0000 1.33 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** Robot.java 18 May 2003 09:41:52 -0000 1.33 --- Robot.java 19 May 2003 02:49:57 -0000 1.34 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** StringExtractor.java 12 May 2003 01:37:44 -0000 1.29 --- StringExtractor.java 19 May 2003 02:49:57 -0000 1.30 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** package.html 18 May 2003 12:07:21 -0000 1.2 --- package.html 19 May 2003 02:49:57 -0000 1.3 *************** *** 5,9 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_3_20030511 - 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_3_20030518 - 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-serv14782/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.3-20030518 and update changelog Index: BeanyBaby.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/beans/BeanyBaby.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** BeanyBaby.java 18 May 2003 12:07:21 -0000 1.3 --- BeanyBaby.java 19 May 2003 02:49:57 -0000 1.4 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** HTMLLinkBean.java 18 May 2003 12:07:21 -0000 1.3 --- HTMLLinkBean.java 19 May 2003 02:49:57 -0000 1.4 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** HTMLTextBean.java 18 May 2003 12:07:21 -0000 1.4 --- HTMLTextBean.java 19 May 2003 02:49:57 -0000 1.5 *************** *** 1,3 **** ! /// HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! /// HTMLParser Library v1_3_20030518 - 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.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** LinkBean.java 18 May 2003 12:07:21 -0000 1.6 --- LinkBean.java 19 May 2003 02:49:57 -0000 1.7 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** StringBean.java 18 May 2003 12:07:21 -0000 1.11 --- StringBean.java 19 May 2003 02:49:57 -0000 1.12 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** package.html 18 May 2003 12:07:21 -0000 1.2 --- package.html 19 May 2003 02:49:57 -0000 1.3 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_3_20030511 - 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_3_20030518 - 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-serv14782/htmlparser/src/org/htmlparser/parserHelper Modified Files: AttributeParser.java CompositeTagScannerHelper.java ParserHelper.java StringParser.java TagParser.java Log Message: update version headers to 1.3-20030518 and update changelog Index: AttributeParser.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserHelper/AttributeParser.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** AttributeParser.java 12 May 2003 01:37:43 -0000 1.21 --- AttributeParser.java 19 May 2003 02:49:57 -0000 1.22 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** CompositeTagScannerHelper.java 12 May 2003 01:37:43 -0000 1.31 --- CompositeTagScannerHelper.java 19 May 2003 02:49:57 -0000 1.32 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ParserHelper.java 6 May 2003 11:37:02 -0000 1.2 --- ParserHelper.java 19 May 2003 02:49:57 -0000 1.3 *************** *** 1,2 **** --- 1,30 ---- + // HTMLParser Library v1_3_20030518 - 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.parserHelper; Index: StringParser.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserHelper/StringParser.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** StringParser.java 12 May 2003 01:37:44 -0000 1.19 --- StringParser.java 19 May 2003 02:49:57 -0000 1.20 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** TagParser.java 12 May 2003 01:37:44 -0000 1.27 --- TagParser.java 19 May 2003 02:49:57 -0000 1.28 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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-serv14782/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.3-20030518 and update changelog Index: Node.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/Node.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** Node.java 12 May 2003 01:37:43 -0000 1.19 --- Node.java 19 May 2003 02:49:56 -0000 1.20 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** NodeReader.java 12 May 2003 01:37:43 -0000 1.27 --- NodeReader.java 19 May 2003 02:49:56 -0000 1.28 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** Parser.java 18 May 2003 09:41:51 -0000 1.39 --- Parser.java 19 May 2003 02:49:56 -0000 1.40 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // *************** *** 157,161 **** */ public final static String ! VERSION_DATE = "May 11, 2003" ; --- 157,161 ---- */ public final static String ! VERSION_DATE = "May 18, 2003" ; Index: RemarkNode.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/RemarkNode.java,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** RemarkNode.java 12 May 2003 01:37:43 -0000 1.14 --- RemarkNode.java 19 May 2003 02:49:56 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** RemarkNodeParser.java 12 May 2003 01:37:43 -0000 1.16 --- RemarkNodeParser.java 19 May 2003 02:49:56 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** StringNode.java 12 May 2003 01:37:43 -0000 1.15 --- StringNode.java 19 May 2003 02:49:56 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** package.html 18 May 2003 12:07:22 -0000 1.3 --- package.html 19 May 2003 02:49:56 -0000 1.4 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_3_20030511 - 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_3_20030518 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha |
From: <der...@us...> - 2003-05-19 02:50:29
|
Update of /cvsroot/htmlparser/htmlparser/docs In directory sc8-pr-cvs1:/tmp/cvs-serv14782/htmlparser/docs Modified Files: changes.txt release.txt Log Message: update version headers to 1.3-20030518 and update changelog Index: changes.txt =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/docs/changes.txt,v retrieving revision 1.178 retrieving revision 1.179 diff -C2 -d -r1.178 -r1.179 *** changes.txt 18 May 2003 12:07:22 -0000 1.178 --- changes.txt 19 May 2003 02:49:56 -0000 1.179 *************** *** 13,16 **** --- 13,106 ---- ******************************************************************************* + Integration Build 1.3 - 20030518 + -------------------------------- + + 2003-05-18 22:04 derrickoswald + + * build.xml: + + Reworked javadoc generation settings. + + 2003-05-18 10:31 derrickoswald + + * src/org/htmlparser/: tags/LinkTag.java, + tests/tagTests/LinkTagTest.java: + + Fixed bug #738504 MailLink != HTTPLink. + Added a testcase in LinkTagTest. + + 2003-05-18 09:50 derrickoswald + + * src/org/htmlparser/: tags/CompositeTag.java, + util/SimpleNodeIterator.java: + + Make SimpleNodeIterator extend NodeIterator and provide elements() method for CompositeTag. + As per request by Dhaval to rationalize (somewhat) the API. + + 2003-05-18 08:07 derrickoswald + + * src/org/htmlparser/scanners/package.html, + src/org/htmlparser/tests/package.html, + src/org/htmlparser/util/package.html, + src/org/htmlparser/beans/BeanyBaby.java, + src/org/htmlparser/beans/HTMLLinkBean.java, + src/org/htmlparser/beans/HTMLTextBean.java, + src/org/htmlparser/beans/LinkBean.java, + src/org/htmlparser/beans/StringBean.java, + src/org/htmlparser/beans/package.html, + src/org/htmlparser/parserapplications/package.html, + src/org/htmlparser/tags/package.html, + src/org/htmlparser/tests/scannersTests/package.html, + src/org/htmlparser/tests/tagTests/package.html, + src/org/htmlparser/tests/utilTests/package.html, + src/org/htmlparser/visitors/ObjectFindingVisitor.java, + src/org/htmlparser/visitors/package.html, build.xml, + docs/changes.html, docs/changes.txt, docs/release.txt, + src/org/htmlparser/package.html, + src/org/htmlparser/tests/visitorsTests/AllTests.java: + + Get all version tags up to date. + Modify build.xml to keep package.html files up to date. + + 2003-05-18 07:23 derrickoswald + + * build.xml: + + Eliminate the build directory. + + 2003-05-18 05:41 derrickoswald + + * build.xml, cvs2cl.pl, src/org/htmlparser/Parser.java, + src/org/htmlparser/parserapplications/MailRipper.java, + src/org/htmlparser/parserapplications/Robot.java, + src/org/htmlparser/tests/parserHelperTests/AttributeParserTest.java + , src/org/htmlparser/tests/parserHelperTests/TagParserTest.java, + src/org/htmlparser/tests/scannersTests/TableScannerTest.java: + + Provide for automatic changelog generation. A changeLog target was added to the build.xml file. + The static version stuff in Parser was reworked to allow picking out the previous integration date. + The getVersion() method was made static. + The getVersionNumber() method was added to clean up some uglies. + + 2003-05-17 08:12 derrickoswald + + * src/org/htmlparser/: scanners/LinkScanner.java, + scanners/TagScanner.java, tags/Tag.java, + tests/tagTests/TagTest.java: + + Fix tab handling on the suggestion of oyoaha (philippe blanc). + Rewrite some string handling methods to remove gross inefficiencies. + + 2003-05-16 07:38 derrickoswald + + * src/org/htmlparser/: Parser.java, scanners/BodyScanner.java, + scanners/HeadScanner.java, tags/HeadTag.java, + tests/scannersTests/AllTests.java, + tests/scannersTests/BodyScannerTest.java, + tests/scannersTests/HeadScannerTest.java: + + From Dhaval: Created the HEAD tag-scanner pair and corrected the BodyScanner. + There were some mistakes after the redisgn that took place. + Integration Build 1.3 - 20030511 -------------------------------- Index: release.txt =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/docs/release.txt,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** release.txt 18 May 2003 12:07:22 -0000 1.38 --- release.txt 19 May 2003 02:49:56 -0000 1.39 *************** *** 1,3 **** ! HTMLParser Version 1.3 (Integration Build May 11, 2003) ********************************************* --- 1,3 ---- ! HTMLParser Version 1.3 (Integration Build May 18, 2003) ********************************************* |
From: <der...@us...> - 2003-05-19 02:50:29
|
Update of /cvsroot/htmlparser/htmlparser In directory sc8-pr-cvs1:/tmp/cvs-serv14782/htmlparser Modified Files: build.xml Log Message: update version headers to 1.3-20030518 and update changelog Index: build.xml =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/build.xml,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** build.xml 19 May 2003 02:04:58 -0000 1.32 --- build.xml 19 May 2003 02:49:55 -0000 1.33 *************** *** 111,116 **** <echo message="* Creating change log *"/> <echo message="**********************************"/> ! <echo message="./cvs2cl.pl --separate-header -l "-d'>${VERSION_DATE}'""/> <exec executable="./cvs2cl.pl"> <arg value="--separate-header"/> <arg value="-l"/> --- 111,117 ---- <echo message="* Creating change log *"/> <echo message="**********************************"/> ! <echo message="./cvs2cl.pl --no-wrap --separate-header -l "-d'>${VERSION_DATE}'""/> <exec executable="./cvs2cl.pl"> + <arg value="--no-wrap"/> <arg value="--separate-header"/> <arg value="-l"/> *************** *** 279,283 **** <mkdir dir="${dist}/sources/src"/> <copy todir="${dist}/sources/src"> ! <fileset dir="${src}"/> </copy> <copy file="build.xml" todir="${dist}/sources"/> --- 280,284 ---- <mkdir dir="${dist}/sources/src"/> <copy todir="${dist}/sources/src"> ! <fileset dir="${src}" includes="**/*.java **/*.html **/*.gif **/*.form **/*.properties"/> </copy> <copy file="build.xml" todir="${dist}/sources"/> |
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests In directory sc8-pr-cvs1:/tmp/cvs-serv14782/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.3-20030518 and update changelog Index: AllTests.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/AllTests.java,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** AllTests.java 12 May 2003 01:37:49 -0000 1.30 --- AllTests.java 19 May 2003 02:49:59 -0000 1.31 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** AppletTagTest.java 12 May 2003 01:37:49 -0000 1.14 --- AppletTagTest.java 19 May 2003 02:49:59 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** BaseHrefTagTest.java 12 May 2003 01:37:49 -0000 1.13 --- BaseHrefTagTest.java 19 May 2003 02:49:59 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** DoctypeTagTest.java 12 May 2003 01:37:49 -0000 1.14 --- DoctypeTagTest.java 19 May 2003 02:49:59 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** EndTagTest.java 12 May 2003 01:37:49 -0000 1.15 --- EndTagTest.java 19 May 2003 02:49:59 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** FormTagTest.java 12 May 2003 01:37:49 -0000 1.17 --- FormTagTest.java 19 May 2003 02:49:59 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** FrameSetTagTest.java 12 May 2003 01:37:49 -0000 1.14 --- FrameSetTagTest.java 19 May 2003 02:49:59 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** FrameTagTest.java 12 May 2003 01:37:49 -0000 1.14 --- FrameTagTest.java 19 May 2003 02:49:59 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ImageTagTest.java 12 May 2003 01:37:49 -0000 1.15 --- ImageTagTest.java 19 May 2003 02:49:59 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** InputTagTest.java 12 May 2003 01:37:49 -0000 1.15 --- InputTagTest.java 19 May 2003 02:49:59 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** JspTagTest.java 12 May 2003 01:37:49 -0000 1.17 --- JspTagTest.java 19 May 2003 02:49:59 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** LinkTagTest.java 18 May 2003 14:31:18 -0000 1.20 --- LinkTagTest.java 19 May 2003 02:49:59 -0000 1.21 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** MetaTagTest.java 12 May 2003 01:37:49 -0000 1.15 --- MetaTagTest.java 19 May 2003 02:49:59 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** OptionTagTest.java 12 May 2003 01:37:50 -0000 1.15 --- OptionTagTest.java 19 May 2003 02:50:00 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ScriptTagTest.java 12 May 2003 01:37:50 -0000 1.15 --- ScriptTagTest.java 19 May 2003 02:50:00 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** SelectTagTest.java 12 May 2003 01:37:50 -0000 1.16 --- SelectTagTest.java 19 May 2003 02:50:00 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** StyleTagTest.java 12 May 2003 01:37:50 -0000 1.14 --- StyleTagTest.java 19 May 2003 02:50:00 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** TagTest.java 17 May 2003 12:12:50 -0000 1.23 --- TagTest.java 19 May 2003 02:50:00 -0000 1.24 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** TextareaTagTest.java 12 May 2003 01:37:50 -0000 1.14 --- TextareaTagTest.java 19 May 2003 02:50:00 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** TitleTagTest.java 12 May 2003 01:37:50 -0000 1.14 --- TitleTagTest.java 19 May 2003 02:50:00 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** package.html 18 May 2003 12:07:21 -0000 1.2 --- package.html 19 May 2003 02:50:00 -0000 1.3 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_3_20030511 - 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_3_20030518 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha |
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests In directory sc8-pr-cvs1:/tmp/cvs-serv14782/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.3-20030518 and update changelog Index: AllTests.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/AllTests.java,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** AllTests.java 16 May 2003 11:38:38 -0000 1.34 --- AllTests.java 19 May 2003 02:49:59 -0000 1.35 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // *************** *** 19,23 **** // Email :so...@ki... // ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 19,23 ---- // Email :so...@ki... // ! // HTMLParser Library v1_3_20030518 - 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.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** AppletScannerTest.java 12 May 2003 01:37:49 -0000 1.13 --- AppletScannerTest.java 19 May 2003 02:49:59 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** BaseHREFScannerTest.java 12 May 2003 01:37:49 -0000 1.13 --- BaseHREFScannerTest.java 19 May 2003 02:49:59 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** DivScannerTest.java 12 May 2003 01:37:49 -0000 1.19 --- DivScannerTest.java 19 May 2003 02:49:59 -0000 1.20 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** FormScannerTest.java 12 May 2003 01:37:49 -0000 1.17 --- FormScannerTest.java 19 May 2003 02:49:59 -0000 1.18 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** FrameScannerTest.java 12 May 2003 01:37:49 -0000 1.13 --- FrameScannerTest.java 19 May 2003 02:49:59 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** FrameSetScannerTest.java 12 May 2003 01:37:49 -0000 1.13 --- FrameSetScannerTest.java 19 May 2003 02:49:59 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** HeadScannerTest.java 16 May 2003 11:38:38 -0000 1.1 --- HeadScannerTest.java 19 May 2003 02:49:59 -0000 1.2 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ImageScannerTest.java 12 May 2003 01:37:49 -0000 1.15 --- ImageScannerTest.java 19 May 2003 02:49:59 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** InputTagScannerTest.java 12 May 2003 01:37:49 -0000 1.13 --- InputTagScannerTest.java 19 May 2003 02:49:59 -0000 1.14 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** JspScannerTest.java 12 May 2003 01:37:49 -0000 1.14 --- JspScannerTest.java 19 May 2003 02:49:59 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** LabelScannerTest.java 12 May 2003 01:37:49 -0000 1.20 --- LabelScannerTest.java 19 May 2003 02:49:59 -0000 1.21 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** LinkScannerTest.java 12 May 2003 01:37:49 -0000 1.22 --- LinkScannerTest.java 19 May 2003 02:49:59 -0000 1.23 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** MetaTagScannerTest.java 12 May 2003 01:37:49 -0000 1.14 --- MetaTagScannerTest.java 19 May 2003 02:49:59 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** OptionTagScannerTest.java 12 May 2003 01:37:49 -0000 1.14 --- OptionTagScannerTest.java 19 May 2003 02:49:59 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** ScriptScannerTest.java 12 May 2003 01:37:49 -0000 1.21 --- ScriptScannerTest.java 19 May 2003 02:49:59 -0000 1.22 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** SelectTagScannerTest.java 12 May 2003 01:37:49 -0000 1.14 --- SelectTagScannerTest.java 19 May 2003 02:49:59 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** SpanScannerTest.java 12 May 2003 01:37:49 -0000 1.15 --- SpanScannerTest.java 19 May 2003 02:49:59 -0000 1.16 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** StyleScannerTest.java 12 May 2003 01:37:49 -0000 1.14 --- StyleScannerTest.java 19 May 2003 02:49:59 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** TableScannerTest.java 18 May 2003 09:41:52 -0000 1.18 --- TableScannerTest.java 19 May 2003 02:49:59 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** TagScannerTest.java 12 May 2003 01:37:49 -0000 1.14 --- TagScannerTest.java 19 May 2003 02:49:59 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** TextareaTagScannerTest.java 12 May 2003 01:37:49 -0000 1.12 --- TextareaTagScannerTest.java 19 May 2003 02:49:59 -0000 1.13 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** TitleScannerTest.java 12 May 2003 01:37:49 -0000 1.14 --- TitleScannerTest.java 19 May 2003 02:49:59 -0000 1.15 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** XmlEndTagScanningTest.java 12 May 2003 01:37:49 -0000 1.16 --- XmlEndTagScanningTest.java 19 May 2003 02:49:59 -0000 1.17 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** package.html 18 May 2003 12:07:21 -0000 1.2 --- package.html 19 May 2003 02:49:59 -0000 1.3 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_3_20030511 - 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_3_20030518 - 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-serv14782/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.3-20030518 and update changelog Index: AllTests.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests/AllTests.java,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** AllTests.java 12 May 2003 01:37:50 -0000 1.32 --- AllTests.java 19 May 2003 02:50:00 -0000 1.33 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** BeanTest.java 12 May 2003 01:37:50 -0000 1.22 --- BeanTest.java 19 May 2003 02:50:00 -0000 1.23 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** CharacterTranslationTest.java 12 May 2003 01:37:50 -0000 1.18 --- CharacterTranslationTest.java 19 May 2003 02:50:00 -0000 1.19 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** HTMLLinkProcessorTest.java 12 May 2003 01:37:50 -0000 1.31 --- HTMLLinkProcessorTest.java 19 May 2003 02:50:00 -0000 1.32 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** HTMLTagParserTest.java 12 May 2003 01:37:50 -0000 1.31 --- HTMLTagParserTest.java 19 May 2003 02:50:00 -0000 1.32 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - 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.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** package.html 18 May 2003 12:07:21 -0000 1.2 --- package.html 19 May 2003 02:50:00 -0000 1.3 *************** *** 6,10 **** @(#)package.html 1.60 98/01/27 ! HTMLParser Library v1_3_20030511 - 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_3_20030518 - A java-based parser for HTML Copyright (C) Dec 31, 2000 Somik Raha |
From: <der...@us...> - 2003-05-19 02:50:04
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/visitorsTests In directory sc8-pr-cvs1:/tmp/cvs-serv14782/htmlparser/src/org/htmlparser/tests/visitorsTests Modified Files: AllTests.java Log Message: update version headers to 1.3-20030518 and update changelog Index: AllTests.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/visitorsTests/AllTests.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** AllTests.java 18 May 2003 12:07:22 -0000 1.21 --- AllTests.java 19 May 2003 02:50:00 -0000 1.22 *************** *** 1,3 **** ! // HTMLParser Library v1_3_20030511 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // --- 1,3 ---- ! // HTMLParser Library v1_3_20030518 - A java-based parser for HTML // Copyright (C) Dec 31, 2000 Somik Raha // |
From: <der...@us...> - 2003-05-19 02:05:00
|
Update of /cvsroot/htmlparser/htmlparser In directory sc8-pr-cvs1:/tmp/cvs-serv15832/htmlparser Modified Files: build.xml Log Message: Reworked javadoc generation settings. Index: build.xml =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/build.xml,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** build.xml 18 May 2003 12:07:22 -0000 1.31 --- build.xml 19 May 2003 02:04:58 -0000 1.32 *************** *** 29,32 **** --- 29,33 ---- </tstamp> <property name="versionTag" value="${versionQualifier}_${TODAY}"/> + <echo message="today is ${TODAY_STRING}"/> <echo message="versionTag=${versionTag}"/> *************** *** 190,193 **** --- 191,207 ---- <!-- Create the javadoc directory --> <mkdir dir="${dist}/docs/javadoc"/> + + <property name="javadoc.doctitle" value="<h1>HTML Parser ${versionNumber}</h1>"/> + <property name="javadoc.header" value="<A HREF="http://htmlparser.sourceforge.net" target="_top">HTML Parser Home Page</A>"/> + <property name="javadoc.footer" value="&copy; 2003 Somik Raha<div align="right">${TODAY_STRING}</div>"/> + <property name="javadoc.bottom" value="HTML Parser is an open source library released under + <A HREF="http://www.opensource.org/licenses/lgpl-license.html">LGPL</A>.<BR> + If you want to be notified when new releases of HTML Parser are available, join the + <A HREF="http://lists.sourceforge.net/lists/listinfo/htmlparser-announce">HTML Parser Announcement List</A>.<BR> + If you have questions about the usage of the parser, join the + <A HREF="http://lists.sourceforge.net/lists/listinfo/htmlparser-user">HTML Parser User List</A>.<BR> + If you want to join as a developer, please sign up on the + <A HREF="http://lists.sourceforge.net/lists/listinfo/htmlparser-developer">HTML Parser Developer List</A>.<BR> + <div align="right"><A HREF="http://sourceforge.net/projects/htmlparser"><img src="http://sourceforge.net/sflogo.php?group_id=24399&type=1" width="88" height="31" border="0" alt="SourceForge.net Logo"></A></div>"/> <javadoc packagenames="org.htmlparser.*" *************** *** 199,210 **** version="true" use="true" ! windowtitle="HTML Parser ${versionTag}"> ! <doctitle><![CDATA[<h1>HTML Parser ${versionTag}</h1>]]></doctitle> ! <header><![CDATA[<A HREF="http://htmlparser.sourceforge.net" target="_top">HTML Parser Home Page</A>]]></header> ! <bottom><![CDATA[HTML Parser is an open source library released under LGPL. <BR> If you want to be notified when a new release of HTML Parser is out, join the <A HREF="http://lists.sourceforge.net/lists/listinfo/htmlparser-announce">HTML Parser Announcement List</A>.<BR> ! If you have questions about the usage of the parser, join the <A HREF="http://lists.sourceforge.net/lists/listinfo/htmlparser-user">HTML Parser User List</A>. ! <BR> ! If you want to join as a developer, please sign up on the <A HREF="http://lists.sourceforge.net/lists/listinfo/htmlparser-developer">HTML Parser Developer List</A>.<BR> All three lists can be joined from the <A HREF="http://htmlparser.sourceforge.net/mailinglists.html">HTML Parser Mailing Lists Page.</A> ]]></bottom> ! <footer>(c) 2003 Somik Raha</footer> <group title="Main Package" packages="org.htmlparser"/> <group title="Example Applications" packages="org.htmlparser.parserapplications"/> --- 213,221 ---- version="true" use="true" ! windowtitle="HTML Parser ${versionNumber}"> ! <doctitle>${javadoc.doctitle}</doctitle> ! <header>${javadoc.header}</header> ! <bottom>${javadoc.bottom}</bottom> ! <footer>${javadoc.footer}</footer> <group title="Main Package" packages="org.htmlparser"/> <group title="Example Applications" packages="org.htmlparser.parserapplications"/> |