]> granicus.if.org Git - docbook-dsssl/commitdiff
Preserve namespace of copied elements
authorJirka Kosek <jirka@kosek.cz>
Tue, 25 Oct 2011 13:38:34 +0000 (13:38 +0000)
committerJirka Kosek <jirka@kosek.cz>
Tue, 25 Oct 2011 13:38:34 +0000 (13:38 +0000)
xsl/template/titlepage.xsl

index 99a44a17caa206d4c9fbaacfc5ac11f40bb2ffd9..987f13b66b2badc29d8b7b3ed1544069a5e93e69 100644 (file)
@@ -686,10 +686,10 @@ straight through into the result tree.</para>
 </doc:template>
 
 <xsl:template match="*" mode="copy">
-  <xsl:element name="{name(.)}">
+  <xsl:copy>
     <xsl:apply-templates select="@*" mode="copy"/>
     <xsl:apply-templates mode="copy"/>
-  </xsl:element>
+  </xsl:copy>
 </xsl:template>
 
 <!-- ==================================================================== -->
@@ -704,9 +704,9 @@ straight through into the result tree.</para>
 </doc:template>
 
 <xsl:template match="@*" mode="copy">
-  <xsl:attribute name="{name(.)}">
+  <xsl:copy>
     <xsl:value-of select="."/>
-  </xsl:attribute>
+  </xsl:copy>
 </xsl:template>
 
 <!-- ==================================================================== -->