]> granicus.if.org Git - docbook-dsssl/commitdiff
Fixed problem that was causing case to be preserved in element
authorMichael Smith <xmldoc@users.sourceforge.net>
Wed, 5 Apr 2006 04:56:19 +0000 (04:56 +0000)
committerMichael Smith <xmldoc@users.sourceforge.net>
Wed, 5 Apr 2006 04:56:19 +0000 (04:56 +0000)
names in TDG links. All element names are now lowercased before
the TDG link URL is assembled.

xsl/docsrc/tdg-link.xsl

index 1903c6a504956e676c29f1053a333f85cb27bcde..df0dffeb521fc434c687d6fd495f597ec3a0f070 100644 (file)
@@ -37,7 +37,7 @@
 
       <xsl:choose>
         <xsl:when test="$isdocbook != 0">
-          <a href="{concat($tdg-baseuri, normalize-space(.))}.html">
+          <a href="{concat($tdg-baseuri, normalize-space($element))}.html">
             <xsl:copy-of select="$tagmarkup"/>
           </a>
         </xsl:when>