You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by di...@apache.org on 2004/10/17 16:13:39 UTC

cvs commit: jakarta-commons-sandbox/xmlio/xdocs downloads.xml index.xml navigation.xml

dirkv       2004/10/17 07:13:39

  Added:       xmlio/xdocs downloads.xml index.xml navigation.xml
  Log:
  minimal site
  
  Revision  Changes    Path
  1.1                  jakarta-commons-sandbox/xmlio/xdocs/downloads.xml
  
  Index: downloads.xml
  ===================================================================
  <?xml version="1.0"?>
  <document>
     <properties>
        <title>Downloads</title>
        <author email="commons-dev@jakarta.apache.org">Commons Documentation Team</author>
        <revision>$Id: downloads.xml,v 1.1 2004/10/17 14:13:39 dirkv Exp $</revision>
     </properties>
  
     <body>
        <section name="Releases">
           <p>There are no releases available.</p>
  
  <!--
           <p>The following releases are available:</p>
           <ul>
             <li>Version 1.1 - 20 October 2003</li>
             <li>Version 1.0 - 12 August 2002</li>
           </ul>
           <br/>
           <p>
              The latest binary release is always available on the 
              <a href="http://jakarta.apache.org/site/binindex.cgi#commons-xmlio">
              Jakarta Binary Downloads page</a>,
              its source is available from 
              <a href="http://jakarta.apache.org/site/sourceindex.cgi#commons-xmlio">
              Jakarta Source Downloads page</a>.
           </p>
           <p>
              Older releases are retained by the Apache Software Foundation but are 
              moved into a
              <a href="http://archive.apache.org/dist/jakarta/commons/xmlio/">
              special archive area</a>.
           </p>
           <p>
             <a href="http://cvs.apache.org/builds/jakarta-commons/nightly/commons-xmlio/">
             Nightly source and binary drops</a> are available.
           </p>
  -->
           <p>
              Access to the source tree to see the latest and greatest code is possible
              through <a href="cvs-usage.html">anonymous CVS access</a>.
           </p>
        </section>
  
  <!--
        <section name="Release Candidate">
           <p>
              Release candidates for the upcoming 1.1 release can be downloaded 
              <a href="http://cvs.apache.org/~dirkv/builds/">here</a>.
           </p>
           <p>
              Please review and report any problem on the 
              <a href="mail-lists.html">mailing list</a>.
           </p>
           <p>
              Final release target is 20 October 2003. 
           </p>
        </section>
  -->
     </body>
  </document>
  
  
  
  1.1                  jakarta-commons-sandbox/xmlio/xdocs/index.xml
  
  Index: index.xml
  ===================================================================
  <?xml version="1.0"?>
  
  <document>
  
   <properties>
    <title>Overview</title>
    <author email="commons-dev@jakarta.apache.org">Commons Documentation Team</author>
   </properties>
  
   <body>
  
  <section name="The XMLIO Component">
  
  <p><b>Simple</b> and <b>fast</b> importer for XML configuration or import files.</p>
  <p>
  It is based on SAX and can be considered an extension to it. This means it is
  callback oriented and does not build an internal data structure like the DOM.
  While SAX is simple, fast, and memory friendly it might be a bit too 
  rudimentary for most tasks. <code>SimpleImporter</code> adds more high level
  means for importing XML while preserving the SAX's benefits. These are the 
  main extensions to the SAX:
  <ol>
  <li><em>Every callback includes a full path to the XML element</em>: In many 
  cases this will make maintaining local stacks for keeping track of element
  histories obsolete.</li>
  <li><em>Leading character data can be included into start element callback</em>: 
  In many cases import files do not or only rarely contain mixed content. If so
  it is convenient to have the full content of an element at hand with a 
  single callback.</li>
  <li><em>More than one listener can be registered</em>: Some XML files contain
  different types of data that may be interesting to different listeners. E.g.
  data to import from a server may contain error messages along with the real
  content data. It may be convenient to
  processes these blocks of data separately.</li>
  </ol>
  </p><p>
  Even though the DOM in combination with XPath can not to be beaten in the 
  area of convenience, I consider it a good compromise between convenience,
  simplicity and speed. 
  </p>
  </section>
  
  <section name="Releases">
      <p>
         See the <a href="downloads.html">downloads</a> page for information on obtaining releases.
      </p>
  </section>
  
  <section name="Documentation">
    <p>
       The <a href="apidocs/index.html">JavaDoc API documents</a> are available online.
    </p>
  </section>
  
  </body>
  </document>
  
  
  
  1.1                  jakarta-commons-sandbox/xmlio/xdocs/navigation.xml
  
  Index: navigation.xml
  ===================================================================
  <?xml version="1.0" encoding="ISO-8859-1"?>
  <!DOCTYPE org.apache.commons.menus SYSTEM '../../../jakarta-commons/commons-build/menus/menus.dtd'>
  <project name="Commons&#xA0;XMLIO">
      <title>Commons&#xA0;XMLIO</title>
      <body>
          <menu name="Commons&#xA0;XMLIO">
              <item name="Overview"                      href="/index.html" />
              <item name="API&#xA0;Documentation"        href="/apidocs/index.html"/>
              <item name="Downloads"                     href="/downloads.html"/>
          </menu>
          &common-menus;
      </body>
  </project>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org