]> granicus.if.org Git - docbook-dsssl/commitdiff
It seems that HH can handle fragments identifiers in context help, so I changed
authorJirka Kosek <jirka@kosek.cz>
Tue, 12 Aug 2003 10:36:37 +0000 (10:36 +0000)
committerJirka Kosek <jirka@kosek.cz>
Tue, 12 Aug 2003 10:36:37 +0000 (10:36 +0000)
stylesheets back to emit filename with fragment identifier.

xsl/htmlhelp/htmlhelp-common.xsl

index 7e3bde615c168d37cca6e1337b65b5dc811b81ca..1db6fe82c3b0901c48d4b8d1fc60d448689537e3 100644 (file)
@@ -1053,7 +1053,9 @@ Title=</xsl:text>
   </xsl:variable>
   <xsl:value-of select="$topicname"/>
   <xsl:text>=</xsl:text>
-  <xsl:value-of select="substring-before(concat($href, '#'), '#')"/>
+  <!-- Some versions of HH doesn't like fragment identifires, but some does. -->
+  <!-- <xsl:value-of select="substring-before(concat($href, '#'), '#')"/> -->
+  <xsl:value-of select="$href"/>
   <xsl:text>&#xA;</xsl:text>
 </xsl:template>