view xslt/versions.xslt @ 736:9f2953d854fd

Fixed language switcher in dirindex.html files by making them depend on all available translations of dirindex.xml. The problem with dirindex.xml files was that they are auto-generated.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 18 Oct 2012 13:41:43 +0000
parents d900707102c6
children 4f1e2120be5e
line wrap: on
line source

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

   <xsl:template match="development_version">

      <xsl:apply-templates select="document(concat($XML, '/versions.xml'))                 /versions/download[@tag='development'][1]/item[1]/@ver"/>
   </xsl:template>

   <xsl:template match="stable_version">

      <xsl:apply-templates select="document(concat($XML, '/versions.xml'))                 /versions/download[@tag='stable'][1]/item[1]/@ver"/>
   </xsl:template>

</xsl:stylesheet>