Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
18 lines
548 B
XML
18 lines
548 B
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:xi="http://www.toto.com/xinclude" version="1.0">
|
|
<xsl:output encoding="ISO-8859-1" method="html"/>
|
|
<xsl:strip-space elements="*"/>
|
|
<xsl:template match="/">
|
|
<xsl:apply-templates/>
|
|
</xsl:template>
|
|
<xsl:template match="xi:*">
|
|
<xsl:copy>
|
|
<xsl:apply-templates select="node()|@*"/>
|
|
</xsl:copy>
|
|
</xsl:template>
|
|
<xsl:template match="@xi:*">
|
|
<xsl:copy/>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|