diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-07-05 14:35:55 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-07-05 14:36:50 +0200 |
commit | 0777ce33e444065ed8168bdbaaa7073f3e673681 (patch) | |
tree | 620c3eac3c59e6d93ed757a4d27711388834b05e /xsl | |
parent | 4fec63ca6f0fdddfd8600087c00247f90ce6ddea (diff) | |
download | mutti-web-0777ce33e444065ed8168bdbaaa7073f3e673681.tar.gz mutti-web-0777ce33e444065ed8168bdbaaa7073f3e673681.tar.bz2 mutti-web-0777ce33e444065ed8168bdbaaa7073f3e673681.zip |
navi.xsl: Inline accesskey assignment
No need to store <xsl:number/> in a variable, just use
xpaths position().
Diffstat (limited to 'xsl')
-rw-r--r-- | xsl/navi.xsl | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/xsl/navi.xsl b/xsl/navi.xsl index 1130def..37c73b7 100644 --- a/xsl/navi.xsl +++ b/xsl/navi.xsl @@ -9,20 +9,14 @@ <xsl:for-each select="document('../main.xml')/s:site/s:page"> <xsl:variable name="url" select="concat(substring-before(@filename, '.xml'), $suffix)"/> - <xsl:variable name="i"> - <xsl:number /> - </xsl:variable> <xsl:if test="not(@visibility='hidden')"> <li> - <a href="{concat($url, @anchor)}"> + <a href="{concat($url, @anchor)}" accesskey="{position()}"> <xsl:if test="$url = $file"> <xsl:attribute name="class"> <xsl:value-of select="'active'" /> </xsl:attribute> </xsl:if> - <xsl:attribute name="accesskey"> - <xsl:value-of select="$i" /> - </xsl:attribute> <xsl:value-of select="@title" /> </a> </li> |