summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2008-06-24 16:00:48 +0000
committerMarc-André Lureau <marcandre.lureau@gmail.com>2009-02-13 00:01:42 +0200
commitb7d1ff69810db03573c7a99af6b66bd88b40503c (patch)
tree4d5682acb5cd679d1b1101a658ce141357f767f4 /tools
parent58ef0a16f5e45a2ff53dae56e4ccf3c633995d0a (diff)
doc-generator.xsl: tp:dbus-ref, tp:member-ref: correctly generate internal links
Diffstat (limited to 'tools')
-rw-r--r--tools/doc-generator.xsl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/doc-generator.xsl b/tools/doc-generator.xsl
index c7f5ef2..72b12d9 100644
--- a/tools/doc-generator.xsl
+++ b/tools/doc-generator.xsl
@@ -48,7 +48,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
</xsl:when>
</xsl:choose>
</xsl:variable>
- <a xmlns="http://www.w3.org/1999/xhtml" href="{$prefix}{string(.)}">
+ <a xmlns="http://www.w3.org/1999/xhtml" href="#{$prefix}{string(.)}">
<xsl:value-of select="string(.)"/>
</a>
</xsl:template>
@@ -57,7 +57,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
<xsl:variable name="prefix" select="concat(ancestor::interface/@name,
'.')"/>
- <a xmlns="http://www.w3.org/1999/xhtml" href="{$prefix}{string(.)}">
+ <a xmlns="http://www.w3.org/1999/xhtml" href="#{$prefix}{string(.)}">
<xsl:value-of select="string(.)"/>
</a>
</xsl:template>