so geht das mit dem tokenizer
[cxml-rng.git] / doc / rename.xsl
blobea3d7ac0cab336404f3d09ec81c9528e3510b05e
1 <!--
3 "BECAUSE WE CAN"
5 This file is used as a follow-up transformation to macros.xsl to
6 correct namespaces in macro expansions.
8 -->
9 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
10 xmlns:extra="http://lichteblau.com/extra"
11 version="1.0">
12 <xsl:output method="xml" indent="no"/>
14 <xsl:template match="@*|node()">
15 <xsl:copy>
16 <xsl:apply-templates select="@*|node()"/>
17 </xsl:copy>
18 </xsl:template>
20 <xsl:template match="comment()"/>
22 <xsl:template match="/">
23 <xsl:comment>
24 CAREFUL, THIS STYLESHEET IS AUTOGENERATED
25 </xsl:comment>
26 <xsl:apply-templates/>
27 </xsl:template>
29 <xsl:template match="extra:*">
30 <xsl:element name="xsl:{local-name()}">
31 <xsl:apply-templates select="@*|node()"/>
32 </xsl:element>
33 </xsl:template>
34 </xsl:stylesheet>