logo       

CVS Update: xmlpull-api-v1/doc: msg#00008

Subject: CVS Update: xmlpull-api-v1/doc
aslom       03/07/08 16:17:34

  Modified:    addons/java/wrapper/src/org/xmlpull/v1/wrapper/classic
                        StaticXmlPullParserWrapper.java
               doc      addons.html changes.html
  Log:
  improved documentation about addons
  
  Revision  Changes    Path
  1.7       +0 -1      
xmlpull-api-v1/addons/java/wrapper/src/org/xmlpull/v1/wrapper/classic/StaticXmlPullParserWrapper.java
  
  Index: StaticXmlPullParserWrapper.java
  ===================================================================
  RCS file: 
/l/extreme/cvspub/xmlpull-api-v1/addons/java/wrapper/src/org/xmlpull/v1/wrapper/classic/StaticXmlPullParserWrapper.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -t -w -r1.6 -r1.7
  --- StaticXmlPullParserWrapper.java   1 Jul 2003 23:55:45 -0000       1.6
  +++ StaticXmlPullParserWrapper.java   8 Jul 2003 21:17:34 -0000       1.7
  @@ -262,7 +262,6 @@
           }
       }
   
  -
       public int readInt() throws XmlPullParserException, IOException {
           try {
               //int i = Integer.parseInt(pp.nextText());
  
  
  
  1.8       +60 -11    xmlpull-api-v1/doc/addons.html
  
  Index: addons.html
  ===================================================================
  RCS file: /l/extreme/cvspub/xmlpull-api-v1/doc/addons.html,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -t -w -r1.7 -r1.8
  --- addons.html       19 May 2003 14:43:03 -0000      1.7
  +++ addons.html       8 Jul 2003 21:17:34 -0000       1.8
  @@ -14,9 +14,33 @@
   
   </p><p>
   All addons can be compiled by build target <code>addons</code> (use: 
<code>ant addons</code>)
  -<p>&nbsp;</p>
  +</p>
  +
  +<p>Following addons are available:
  +<ul>
  +<li><a href="#wrapper">Wrapper</a>: set of extensions for parser and 
serializer interfaces
  +and their implementation that seemlesly add functionality to exisitng APIs
  +</li>
  +<li><a href="#util">Utility Methods</a>: set of static methods that can be 
easily used
  +(good source for few lines of code to solve typical problems)
  +</li>
  +<li><a href="#dom2_builder">DOM2 Builder</a>: simple class to convert
  +XML event streaminto DOM element tree
  +</li>
  +<li><a href="#parser_pool">Parser pool</a>: simple to use class to make 
pooling parser instances easy.
  +</li>
  +<li><a href="#sax2_driver">SAX2 Driver</a>: class that impements SAX2 
XMLReader
  +and allowsto convert stream of XML pull events into SAX2 events
  +
  +
  +<li><a href="#xmlrpc">XML RPC parser</a>: exmpale of use of XmlPull API to
  +do non-trivial databinding
  +</li>
   
  +</ul>
  +</p>
   
  +<p>&nbsp;</p>
   
   <a name="wrapper"><h2>Wrapper: Extended Pull Parser and Serializer 
Interfaces</h2>
   </a>
  @@ -58,8 +82,8 @@
   <p>It can be compiled by build target <code>wrapper</code>
   
   </p><p>Source code is available in <code>
  -<a 
href="../addons/java/wrapper/src/org/xmlpull/v1/wrapper">addons/java/wrapper</a></code>&nbsp;
  -(<a 
href="http://www.xmlpull.org/viewcvs/xmlpull-api-v1/addons/java/wrapper/src/org/xmlpull/v1/wrapper/";>view
  +<a 
href="../addons/java/wrapper/src/org/xmlpull/v1/wrapper/">addons/java/wrapper</a></code>&nbsp;
  +(<a 
href="http://www.xmlpull.org/viewcvs/~checkout~/xmlpull-api-v1/addons/java/wrapper/src/org/xmlpull/v1/wrapper/";>view
   CVS</a>).</p><p>
   TODO: add link to JavaDoc</p>
   
  @@ -88,9 +112,11 @@
   <p>It can be compiled by build target <code>util</code>
   
   </p><p>Source code is available in <code>
  -<a 
href="../addons/java/util/src/org/xmlpull/v1/util/XmlPullUtil.java">addons/java/util</a></code>
  -(<a 
href="http://www.xmlpull.org/viewcvs/xmlpull-api-v1/addons/java/util/src/org/xmlpull/v1/util/";>view
  -CVS</a>).</p><p>
  +<a 
href="../addons/java/util/src/org/xmlpull/v1/util/">addons/java/util</a></code>
  +(<a 
href="http://www.xmlpull.org/viewcvs/~checkout~/xmlpull-api-v1/addons/java/util/src/org/xmlpull/v1/util/";>view
  +CVS</a>).</p>
  +
  +<p>
   TODO: add link to JavaDoc</p>
   
   
  @@ -128,7 +154,10 @@
   </p>
   
   
  -
  +</p><p>Source code is available in <code>
  +<a 
href="../addons/java/dom2_builder/src/org/xmlpull/v1/dom2_builder/">addons/java/dom2_builder</a></code>
  +(<a 
href="http://www.xmlpull.org/viewcvs/~checkout~/xmlpull-api-v1/addons/java/dom2_builder/src/org/xmlpull/v1/dom2_builder/";>view
  +CVS</a>).</p>
   
   <p>
   &nbsp;</p>
  @@ -163,11 +192,17 @@
   
   
   
  -<p>&nbsp;</p>
  +</p><p>Source code is available in <code>
  +<a 
href="../addons/java/parser_pool/src/org/xmlpull/v1/parser_pool/">addons/java/parser_pool</a></code>
  +(<a 
href="http://www.xmlpull.org/viewcvs/~checkout~/xmlpull-api-v1/addons/java/parser_pool/src/org/xmlpull/v1/parser_pool/";>view
  +CVS</a>).</p>
   
  +<p>&nbsp;</p>
   
   
   <a name="sax2">
  +</a>
  +<a name="sax2_driver">
   <h2>SAX2 driver</h2>
   </a>
   
  @@ -199,6 +234,11 @@
   class that is not available in MIDP (check Driver.parse() method).
   </p>
   
  +</p><p>Source code is available in <code>
  +<a 
href="../addons/java/sax2_driver/src/org/xmlpull/v1/sax2/">addons/java/sax2</a></code>
  +(<a 
href="http://www.xmlpull.org/viewcvs/~checkout~/xmlpull-api-v1/addons/java/sax2_driver/src/org/xmlpull/v1/sax2/";>view
  +CVS</a>).</p>
  +
   <p>
   &nbsp;</p>
   
  @@ -207,8 +247,17 @@
   </a>
   <p>It can be compiled by build target <code>xmlrpc</code>
   
  -</p><p>Source code is available in <code>addons/java/xmlrpc</code>. <br>
  -&nbsp;</p>
  +
  +
  +</p><p>Source code is available in <code>
  +<a 
href="../addons/java/xmlrpc/src/org/xmlpull/v1/xmlrpc/">addons/java/dom2_builder</a></code>
  +(<a 
href="http://www.xmlpull.org/viewcvs/~checkout~/xmlpull-api-v1/addons/java/xmlrpc/src/org/xmlpull/v1/xmlrpc/";>view
  +CVS</a>).</p>
  +
  +
  +</p>&nbsp;</p>
  +
  +
   
   <a name="notes">
   <h2>Additional notes</h2>
  @@ -265,7 +314,7 @@
   
   </p><hr>
   <font size="-1">
  -Last modified $Id: addons.html,v 1.7 2003/05/19 14:43:03 aslom Exp $
  +Last modified $Id: addons.html,v 1.8 2003/07/08 21:17:34 aslom Exp $
   </font>
   
   <!--extra space at bottom for hyperlinks #anchors to work -->
  
  
  
  1.48      +12 -0     xmlpull-api-v1/doc/changes.html
  
  Index: changes.html
  ===================================================================
  RCS file: /l/extreme/cvspub/xmlpull-api-v1/doc/changes.html,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -b -t -w -r1.47 -r1.48
  --- changes.html      19 May 2003 14:47:24 -0000      1.47
  +++ changes.html      8 Jul 2003 21:17:34 -0000       1.48
  @@ -16,8 +16,20 @@
   
   <h3>IN PROGRESS INTERIM RELEASE: </h3>
   
  +<h3><a name="XMLPULL_1_1_3_*"></a>2003-07- (XMLPULL_1_1_3_*)</h3>
  +<ul>
  +<li>improved DOM2 builder addon to allow building DOM tree from only parr of
  +XML pull even stream and still have all namespaces declared
  +</li>
  +<li>added methods to wrapper to encapsulate need ot read some of XSD simple 
types
  +(partially based on <a href="http://jibx.sourceforge.net/";>JiBX</a>)
  +</li>
  +</ul>
  +
  +
   <h3><a name="XMLPULL_1_1_3_1"></a>2003-05-19 (XMLPULL_1_1_3_1)</h3>
   <ul>
  +
   <li>added set of <a href="addons.html">addons</a> that add new functionality
   or extend existing interfaces in XmlPull API
   
  
  
  


------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Coral Calcium for Greater Health - $23.95
http://www.challengerone.com/t/l.asp?cid=2805&lp=calcium2.asp
http://us.click.yahoo.com/MmkSQC/NTVGAA/ySSFAA/2U_rlB/TM
---------------------------------------------------------------------~->

To unsubscribe from this group, send an email to:
xmlpull-dev-unsubscribe@xxxxxxxxxxxxxxx

 

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/ 





<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

Recently Viewed:
boot-loaders.gr...    php.pear.genera...    debugging.valgr...    kde.redhat.user...    text.xml.xsl.ge...    culture.languag...    hardware.microc...    java.servicemix...    redhat.release....    web.zope.plone....    user-groups.lin...    opendarwin.webk...    video.mjpeg.use...    sysutils.bcfg2....    encryption.gpg....    lx-office.devel...    xfree86.forum/2...    mail.mutt.devel...    acpi.devel/2003...    qnx.openqnx.dev...    network.irc.irs...    freebsd.devel.m...   
Home | blog view | USPTO Patent Archive | advertise | OSDir is an inevitable website. super tiny logo

Free Magazines

Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe

Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe

The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business.
subscribe

Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe

Total Telecom Total Telecom is "The Economist of the communications industry".
subscribe