dleslie 02/01/25 14:22:53
Modified: java/xdocs/sources/xalan commandline.xml usagepatterns.xml
Log:
Added links to information on performing incremental transformations.
Revision Changes Path
1.17 +1 -0 xml-xalan/java/xdocs/sources/xalan/commandline.xml
Index: commandline.xml
===================================================================
RCS file: /home/cvs/xml-xalan/java/xdocs/sources/xalan/commandline.xml,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- commandline.xml 24 Jan 2002 20:46:48 -0000 1.16
+++ commandline.xml 25 Jan 2002 22:22:53 -0000 1.17
@@ -119,6 +119,7 @@
<p>To set stylesheet parameters from the command line, use <br/>
<code>java org.apache.xalan.xslt.Process -PARAM <ref>name
value</ref></code></p>
<p>The value is passed to the transformer as a String.</p>
+ <p>For information about incremental and optimized stylesheet
processing, see <link idref="dtm" anchor="settings">DTM settings</link>.</p>
<p>Use <code>-URIRESOLVER</code> with a fully qualified class name to
utilize a custom implementation of the
<jump
href="apidocs/javax/xml/transform/URIResolver.html">URIResolver</jump> TrAX
interface to resolve URIs for
xsl:include, xsl:import, and the document() function.</p>
1.47 +7 -0 xml-xalan/java/xdocs/sources/xalan/usagepatterns.xml
Index: usagepatterns.xml
===================================================================
RCS file: /home/cvs/xml-xalan/java/xdocs/sources/xalan/usagepatterns.xml,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- usagepatterns.xml 22 Jan 2002 17:25:36 -0000 1.46
+++ usagepatterns.xml 25 Jan 2002 22:22:53 -0000 1.47
@@ -62,6 +62,7 @@
<li><link anchor="plug">Plugging in the Transformer and XML
parser</link></li>
<li><link anchor="outputprops">Setting output properties in your
stylesheets</link></li>
<li><link anchor="outputencoding">Caution: setting output encoding in the
stylesheet</link></li>
+<li><link anchor="incremental">Performing incremental
transformations</link></li>
<li><link anchor="embed">Working with embedded stylesheets</link></li>
<li><link anchor="params">Setting stylesheet parameters</link></li>
<li><link anchor="serialize">Serializing output</link></li>
@@ -227,6 +228,12 @@
If you do, the Writer uses its own encoding rather than the encoding
specified in the stylesheet.</p>
<p>If you want to use a Writer, you can specify an encoding when you create
the Writer (java.io.OutputStreamWriter). Once the
Writer exists, you cannot reset the encoding it uses.</p>
+</s2><anchor name="incremental"/>
+<s2 title="Performing incremental transformations">
+<p>The <link idref="dtm">DTM</link> (Document Table Model) supports
incremental transformations, the incremental generation of the
+transformation result while the source document is still being parsed. For
more information, see
+<link idref="dtm" anchor="incremental">incremental
transformations</link>.</p>
+<note>You can also enable incremental transformations with the <link
idref="commandline">command-line utility</link> by including the -INCREMENTAL
flag.</note>
</s2><anchor name="embed"/>
<s2 title="Working with embedded stylesheets">
<p>An XML Source may include an <jump
href="http://www.w3.org/TR/xml-stylesheet/">xml-stylesheet processing
instruction</jump> which identifies the stylesheet to be used to process the
document. As indicated by the processing instruction <ref>href</ref> attribute,
the stylesheet itself may be embedded in the XML document or located
elsewhere.</p>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]