]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Move some content from design/index.xml.
authorWilliam Victor Mote <vmote@apache.org>
Wed, 23 Apr 2003 22:24:26 +0000 (22:24 +0000)
committerWilliam Victor Mote <vmote@apache.org>
Wed, 23 Apr 2003 22:24:26 +0000 (22:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196330 13f79535-47bb-0310-9956-ffa450edef68

src/documentation/content/xdocs/design/understanding/xml_parsing.xml

index 26c24776b9f07f29bdbbcc4a55420531536706eb..9dc2646c36013d0d9198e74dd3676aa75efb7217 100644 (file)
@@ -8,6 +8,12 @@
   <body>
     <section>
       <title>XML Input</title>
+      <p>The xml document is always handled internally as SAX. The SAX events
+       are used to read the elements, attributes and text data of the FO document.
+       After the manipulation of the data the renderer writes out the pages in the
+       appropriate format. It may write as it goes, a page at a time or the whole
+       document at once. Once finished the document should contain all the data in the
+       chosen format ready for whatever use.</p>
       <p>FOP can take the input XML in a number of ways:</p>
       <ul>
         <li><strong>SAX Events through SAX Handler</strong>: <code>FOTreeBuilder</code> is the SAX Handler which is obtained through <code>getContentHandler</code> on <code>Driver</code>.</li>