summaryrefslogtreecommitdiff
path: root/source/get_bookmark.xsl
diff options
context:
space:
mode:
authorOlivier <olivier.hallot@libreoffice.org>2016-12-20 16:20:42 -0200
committerOlivier Hallot <olivier.hallot@edx.srv.br>2016-12-20 18:26:04 +0000
commit84c9ad7e308a3fa3809529aac4557c0b4cde823e (patch)
treed660844464d380bee0e4c2d512375f16483f8e7b /source/get_bookmark.xsl
parent330afbbc626e0e811a3bf0fc709fedc41b11eed2 (diff)
Sort bookmarks alphabetically in HC3
Change-Id: Id26048f7ebfdccc2e5afd8a851a0f30c7a78fda0 Reviewed-on: https://gerrit.libreoffice.org/32249 Reviewed-by: Olivier Hallot <olivier.hallot@edx.srv.br> Tested-by: Olivier Hallot <olivier.hallot@edx.srv.br>
Diffstat (limited to 'source/get_bookmark.xsl')
-rw-r--r--source/get_bookmark.xsl6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/get_bookmark.xsl b/source/get_bookmark.xsl
index 3b1be23b0f..6f1bd17df7 100644
--- a/source/get_bookmark.xsl
+++ b/source/get_bookmark.xsl
@@ -53,9 +53,9 @@ xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="href" select="concat($filename,'#',@id)"/>
<xsl:for-each select="bookmark_value">
<li><a href="{$href}" target="_top">
- <xsl:apply-templates>
- <xsl:value-of select="."/>
- </xsl:apply-templates>
+ <xsl:call-template name="brand"><xsl:with-param name="string">
+ <xsl:value-of select="."/>
+ </xsl:with-param></xsl:call-template>
</a></li><xsl:text>&#xA;</xsl:text>
</xsl:for-each>
</xsl:for-each>