diff options
author | Olivier <olivier.hallot@libreoffice.org> | 2016-12-20 16:20:42 -0200 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@edx.srv.br> | 2016-12-20 18:26:04 +0000 |
commit | 84c9ad7e308a3fa3809529aac4557c0b4cde823e (patch) | |
tree | d660844464d380bee0e4c2d512375f16483f8e7b /source/get_bookmark.xsl | |
parent | 330afbbc626e0e811a3bf0fc709fedc41b11eed2 (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.xsl | 6 |
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>
</xsl:text> </xsl:for-each> </xsl:for-each> |