File control.SLES-for-VMware.xsl of Package skelcd-control-SLES-for-VMware
<!--
Definition of the control.SLES.xml -> control.SLES-for-VMware.xml transformation.
For now it simply copies all XML tags to the target file.
-->
<xsl:stylesheet version="1.0"
xmlns:n="http://www.suse.com/1.0/yast2ns"
xmlns:config="http://www.suse.com/1.0/configns"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>