Document: navigation URL: https://lenya.zones.apache.org/cms/docu/authoring/docu20/standardmodules/navigation.html Changed by user: Andreas Hartmann (andreas)
---- Removed: /document/body/section[5]/source[1]/text() <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:site="http://apache.org/lenya/site/1.0" xmlns="http://www.w3.org/1999/xhtml" exclude-result-prefixes="site" > <xsl:template match="site:fragment"> <ul id="tabs"> <xsl:apply-templates select="site:node/site:link"/> </ul> </xsl:template> <xsl:template match="site:link"> <li> <xsl:choose> <xsl:when test="@current = 'true' or ../@ancestorOfCurrent = 'true'"> <a href="[EMAIL PROTECTED]"><xsl:value-of select="@label"/></a> </xsl:when> <xsl:otherwise> <xsl:value-of select="@label"/> </xsl:otherwise> </xsl:choose> </li> </xsl:template> </xsl:stylesheet> ---- Added: /document/body/section[5]/source[1]/text() <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:site="http://apache.org/lenya/site/1.0" xmlns="http://www.w3.org/1999/xhtml" exclude-result-prefixes="site" > <xsl:template match="site:fragment"> <ul id="tabs"> <xsl:apply-templates select="site:node/site:link"/> </ul> </xsl:template> <xsl:template match="site:[EMAIL PROTECTED] = 'true' or ../@ancestorOfCurrent = 'true']"> <li><a href="[EMAIL PROTECTED]"><xsl:value-of select="@label"/></a></li> </xsl:template> <xsl:template match="site:link[not(@current = 'true' or ../@ancestorOfCurrent = 'true')]"> <li><xsl:value-of select="@label"/></li> </xsl:template> </xsl:stylesheet> ---- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]