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:
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
|
|
@ -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"/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue