diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2008-02-07 15:34:26 +0000 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@gmail.com> | 2009-02-13 00:01:40 +0200 |
commit | 9e48d12cb669c7b2e8afe50c6705dc7d69a3dd02 (patch) | |
tree | 37e814049c3bba81bbd0821062a953eb2c5c66cf /tools | |
parent | cbea12687feb6a7a59584fb69cb621255c7c7a8e (diff) |
devhelp.xsl: construct correct links when indexing types
Diffstat (limited to 'tools')
-rw-r--r-- | tools/devhelp.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/devhelp.xsl b/tools/devhelp.xsl index eaae0ff..fffaec3 100644 --- a/tools/devhelp.xsl +++ b/tools/devhelp.xsl @@ -72,7 +72,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA <xsl:template match="//tp:enum | //tp:simple-type | //tp:mapping | //tp:flags"> <xsl:text> </xsl:text> <keyword type="enum" xmlns="http://www.devhelp.net/book" name="{@name}" - link="{concat('spec.html#', concat(../@name, concat('.', @name)))}" /> + link="{concat('spec.html#type-', @name)}" /> <xsl:text>
</xsl:text> </xsl:template> </xsl:stylesheet> |