Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
22 lines
443 B
XML
22 lines
443 B
XML
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
|
|
<xsl:template match="foo">
|
|
<FOO>
|
|
<xsl:apply-templates/>
|
|
</FOO>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="bar">
|
|
<BAR>
|
|
<xsl:value-of select="."/>
|
|
</BAR>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="xxx">
|
|
<XXX>
|
|
<xsl:value-of select="."/>
|
|
</XXX>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|