Update of /cvsroot/htmlparser/htmlparser/docs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5117/htmlparser/docs
Modified Files:
main.html
Log Message:
Documentation revamp part three.
Reworked some JavaDoc descriptions.
Added "HTML Parser for dummies" introductory text.
Removed checkstyle.jar and fit.jar (and it's cruft).
Index: main.html
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/docs/main.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** main.html 4 Jan 2004 03:23:08 -0000 1.8
--- main.html 24 Apr 2005 17:48:06 -0000 1.9
***************
*** 95,107 ****
<li>conversion to XML, moving existing web pages to XML</li>
</ul>
! During or after reading in a page, operations on the nodes can
! accomplish many transformation tasks "in place", which can then be output
! with the <a href="javadoc/org/htmlparser/Node.html#toHtml()">toHtml()</a> method.
! Depending on the purpose of your application, you will probably want to look
! into node decorators,
! <a href="javadoc/org/htmlparser/visitors/package-summary.html">visitors</a>, or
<a href="javadoc/org/htmlparser/tags/package-summary.html">custom tags</a>
in conjunction with the
<a href="javadoc/org/htmlparser/PrototypicalNodeFactory.html">PrototypicalNodeFactory</a>.
<p>The HTML Parser is an open source library released under
<a href="http://www.opensource.org/licenses/lgpl-license.html">GNU Lesser General Public
--- 95,107 ----
<li>conversion to XML, moving existing web pages to XML</li>
</ul>
! Transformation can occur 'on the fly' when using
<a href="javadoc/org/htmlparser/tags/package-summary.html">custom tags</a>
in conjunction with the
<a href="javadoc/org/htmlparser/PrototypicalNodeFactory.html">PrototypicalNodeFactory</a>.
+ Or transformation can occur on a list of nodes after extraction using one or
+ more <a href="javadoc/org/htmlparser/visitors/package-summary.html">visitors</a>.
+ In either case you will need to output the NodeList returned by the parse()
+ method with the <a href="javadoc/org/htmlparser/util/NodeList.html#toHtml()">toHtml()</a>
+ method.
<p>The HTML Parser is an open source library released under
<a href="http://www.opensource.org/licenses/lgpl-license.html">GNU Lesser General Public
|