Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: Multiple output types and embedded documentation

From: David Carlisle <davidc@--------->
To:
Date: 7/3/2000 10:39:00 AM
> If I'm right, this would be a 'weave' solution.
> For documentation you'd run a stylesheet to pull the doc:
> elements?

that's weave, but for Warren's version, where the original file isn't 
directly usable then you also need "tangle" to extract a runnable
stylesheet from the documented sources.


> Presumably, using this format, you would swap out the namespace
> of either out_1 or out_2 and replace it with the xsl namespace, to 
> select the actual output wanted?



> Questions:
> 
> 1. How do you 'disable' output from the undesired namespaces
>     when not in use.
> 2. I don't understand the 'intermediate step' idea above.

You'd do something along the lines of the following (ignoring
attributes for now)

when applied to the documented source, it copies xsl namespaced elements
throws away doc elements and out_1 elements, and moves any out_2
elements into the xsl namespace.

Thus the result would be a usable stylesheet without documenattion and
using the "out_2" version of the code.

David



<xsl:template match="xsl:*">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>

<xsl:template match="doc:*"/>
<xsl:template match="out_1:*"/>


<xsl:template match="out_2:*">
<xsl:element name="local-name()"
             namespace="http://www.w3.org/1999/XSL/transform">
<xsl:apply-templates/>
</xsl:element>
</xsl:template>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


transparent
Print
Mail
Digg
delicious
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent