@@ -306,7 +306,8 @@ attribute.</p>
<style basedir="doc" destdir="build/doc"
extension=".html" style="style/apache.xsl"/></pre>
<h4>Using an xmlcatalog</h4>
<pre><xslt basedir="doc" destdir="build/doc"
<pre>
<xslt basedir="doc" destdir="build/doc"
extension=".html" style="style/apache.xsl">
<xmlcatalog refid="mycatalog"/>
</xslt>
@@ -318,9 +319,11 @@ attribute.</p>
publicId="-//ArielPartners//DTD XML Article V1.0//EN"
location="com/arielpartners/knowledgebase/dtd/article.dtd"/>
</xmlcatalog>
</xslt></pre>
</xslt>
</pre>
<h4>Using XSL parameters</h4>
<pre><xslt basedir="doc" destdir="build/doc"
<pre>
<xslt basedir="doc" destdir="build/doc"
extension=".html" style="style/apache.xsl">
<param name="date" expression="07-01-2000"/>
</xslt></pre>
@@ -331,16 +334,19 @@ attribute.</p>
</p>
<h4>Using output properties</h4>
<pre><xslt in="doc.xml" out="build/doc/output.xml"
<pre>
<xslt in="doc.xml" out="build/doc/output.xml"
style="style/apache.xsl">
<outputproperty name="method" value="xml";/>
<outputproperty name="standalone" value="yes"/>
<outputproperty name="encoding" value="iso8859_1"/>
<outputproperty name="indent" value="yes"/>
</xslt></pre>
</xslt>
</pre>
<h4>Using factory settings</h4>
<pre><xslt in="doc.xml" out="build/doc/output.xml"
<pre>
<xslt in="doc.xml" out="build/doc/output.xml"
style="style/apache.xsl">
<factory name="org.apache.xalan.processor.TransformerFactoryImpl">
<attribute name="http://xml.apache.org/xalan/features/optimize" value="true"/>
@@ -348,7 +354,8 @@ attribute.</p>
</xslt></pre>
<h4>Using a mapper</h4>
<pre><xslt basedir="in" destdir="out"
<pre>
<xslt basedir="in" destdir="out"
style="style/apache.xsl">
<mapper type="glob" from="*.xml.en" to="*.html.en"/>
</xslt></pre>