Example V6 XSLT

This XSLT file converts from V6 XML to V5 XML, then to the robot program using the V5 XSLT "MyTransaltor.xslt".

See Also
Reusing V5 Translators

Example

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:pipe="http://xml.apache.org/xalan/PipeDocument"
                extension-element-prefixes="pipe">
<xsl:param name="PipeTarget"/>
<xsl:param name="PipeSource"/>  
<xsl:template match="/">

<pipe:pipeDocument source="{$PipeSource}" target="{$PipeTarget}">
    <stylesheet href="V5/V6toV5XML.xslt"/>
    <stylesheet href="V5/MyTranslator.xslt"/>
  </pipe:pipeDocument>
  
</xsl:template>

</xsl:stylesheet>