docs: Fix manual.xsl to work with newer xsltproc

git-svn-id: http://pugixml.googlecode.com/svn/trunk@950 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
arseny.kapoulkine@gmail.com 2013-07-10 06:10:03 +00:00
parent e300701d3f
commit 63c0f55ee7

View file

@ -2,7 +2,8 @@
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template name="navbar.section">
<xsl:param name="name" select="/foo" />
<xsl:param name="target" select="id($name)" />
<xsl:param name="targets" select="key('id',$name)"/>
<xsl:param name="target" select="$targets[1]"/>
<xsl:param name="text" select="normalize-space($target/title)" />
<xsl:choose>