]> granicus.if.org Git - docbook-dsssl/commitdiff
Handle namespaced elements without prefix in a special way in order to prevent copyin...
authorJirka Kosek <jirka@kosek.cz>
Tue, 25 Oct 2011 13:46:25 +0000 (13:46 +0000)
committerJirka Kosek <jirka@kosek.cz>
Tue, 25 Oct 2011 13:46:25 +0000 (13:46 +0000)
xsl/template/titlepage.xsl

index 987f13b66b2badc29d8b7b3ed1544069a5e93e69..48833a201ae0fe4b04b28902889cda043ff889c8 100644 (file)
@@ -686,10 +686,20 @@ straight through into the result tree.</para>
 </doc:template>
 
 <xsl:template match="*" mode="copy">
-  <xsl:copy>
-    <xsl:apply-templates select="@*" mode="copy"/>
-    <xsl:apply-templates mode="copy"/>
-  </xsl:copy>
+  <xsl:choose>
+    <xsl:when test="(name(.) = local-name(.)) and namespace-uri(.) != ''">
+      <xsl:element name="{name(.)}" namespace="{namespace-uri(.)}">
+       <xsl:apply-templates select="@*" mode="copy"/>
+       <xsl:apply-templates mode="copy"/>
+      </xsl:element>
+    </xsl:when>
+    <xsl:otherwise>
+      <xsl:element name="{name(.)}">
+       <xsl:apply-templates select="@*" mode="copy"/>
+       <xsl:apply-templates mode="copy"/>
+      </xsl:element>
+    </xsl:otherwise>
+  </xsl:choose>
 </xsl:template>
 
 <!-- ==================================================================== -->
@@ -704,9 +714,20 @@ straight through into the result tree.</para>
 </doc:template>
 
 <xsl:template match="@*" mode="copy">
-  <xsl:copy>
-    <xsl:value-of select="."/>
-  </xsl:copy>
+  <xsl:choose>
+    <xsl:when test="(name(.) = local-name(.)) and namespace-uri(.) != ''">
+      <xsl:attribute name="{name(.)}" namespace="{namespace-uri(.)}">
+       <xsl:apply-templates select="@*" mode="copy"/>
+       <xsl:apply-templates mode="copy"/>
+      </xsl:attribute>
+    </xsl:when>
+    <xsl:otherwise>
+      <xsl:attribute name="{name(.)}">
+       <xsl:apply-templates select="@*" mode="copy"/>
+       <xsl:apply-templates mode="copy"/>
+      </xsl:attribute>
+    </xsl:otherwise>
+  </xsl:choose>
 </xsl:template>
 
 <!-- ==================================================================== -->