Fix syntax errors in translated documents. These caused a build breakage in

newer libxslt which check the stylesheet syntax more strictly.

 |It is an error for the value of either the use attribute or the match
 |attribute to contain a VariableReference.
 | (XSL Transformations (XSLT) Version 1.0, Section 12.2)
This commit is contained in:
Hiroki Sato 2013-01-09 16:13:30 +00:00
parent b9d31cf178
commit a4266c0837
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=40560
13 changed files with 43 additions and 33 deletions

View file

@ -21,7 +21,7 @@
<xsl:variable name="title">&title;</xsl:variable>
<xsl:key name="indexLetter" match="term" use="translate(substring(text, 1, 1), $lowercase, $uppercase)"/>
<xsl:key name="indexLetter" match="term" use="translate(substring(text, 1, 1), 'aábcdeéfghiíjklmnñoópqrstuúvwxyz', 'AÁBCDEÉFGHIÍJKLMNÑOÓPQRSTUÚVWXYZ')"/>
<xsl:template name="process.contentwrap">
<xsl:call-template name="html-sitemap"/>