S
shaun roe
I should like to use xslt to produce a document like the following:
<crate xmlns:xi="http://www.w3.org/2001/XInclude">
<rod id="0">
<slot>1</slot>
<xi:include href="./endcapA/disk/1a/10011.xml"/> <!--D1A TR
middles-->
<xi:include href="./endcapA/disk/1a/10012.xml"/> <!--D1A TR
middles-->
<xi:include href="./endcapA/disk/1a/10001.xml"/> <!--D1A TR
outers-->
<xi:include href="./endcapA/disk/1a/10002.xml"/> <!--D1A TR
outers-->
<xi:include href="./endcapA/disk/2a/20001.xml"/> <!--D2A TR
outers-->
<xi:include href="./endcapA/disk/2a/20002.xml"/> <!--D2A TR
outers-->
<xi:include href="./endcapA/disk/3a/30001.xml"/> <!--D3A TR
outers-->
<xi:include href="./endcapA/disk/3a/30002.xml"/> <!--D3A TR
outers-->
</rod>
</crate>
i.e. it should contain 'manufactured' unresolved xi:include elements.
How can I get my xsl to output such an element?
thanks
shaun
<crate xmlns:xi="http://www.w3.org/2001/XInclude">
<rod id="0">
<slot>1</slot>
<xi:include href="./endcapA/disk/1a/10011.xml"/> <!--D1A TR
middles-->
<xi:include href="./endcapA/disk/1a/10012.xml"/> <!--D1A TR
middles-->
<xi:include href="./endcapA/disk/1a/10001.xml"/> <!--D1A TR
outers-->
<xi:include href="./endcapA/disk/1a/10002.xml"/> <!--D1A TR
outers-->
<xi:include href="./endcapA/disk/2a/20001.xml"/> <!--D2A TR
outers-->
<xi:include href="./endcapA/disk/2a/20002.xml"/> <!--D2A TR
outers-->
<xi:include href="./endcapA/disk/3a/30001.xml"/> <!--D3A TR
outers-->
<xi:include href="./endcapA/disk/3a/30002.xml"/> <!--D3A TR
outers-->
</rod>
</crate>
i.e. it should contain 'manufactured' unresolved xi:include elements.
How can I get my xsl to output such an element?
thanks
shaun