view xslt/download.xslt @ 170:cd2698ea00ab

Added generated XSLTs.
author Ruslan Ermilov <ru@nginx.com>
date Wed, 02 Nov 2011 19:31:11 +0000
parents
children 1507ec5ba69a
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:output indent="no" version="4.0" encoding="utf-8" method="html"/>

   <xsl:strip-space elements="*"/>

   <xsl:param select="'../xml'" name="XML"/>

   <xsl:param name="YEAR"/>

   <xsl:variable select="/article/@link" name="LINK"/>

   <xsl:include href="dirname.xslt"/>

   <xsl:include href="link.xslt"/>

   <xsl:include href="style.xslt"/>

   <xsl:include href="body.xslt"/>

   <xsl:include href="menu.xslt"/>

   <xsl:include href="content.xslt"/>

   <xsl:template match="/article">

      <html>
         <head>

            <title>
               <xsl:value-of select="@name"/>
            </title>

            <xsl:call-template name="style">
               <xsl:with-param select="@lang" name="lang"/>
            </xsl:call-template>

         </head>

         <xsl:call-template name="body">
            <xsl:with-param select="@lang" name="lang"/>
         </xsl:call-template>

      </html>
   </xsl:template>

   <xsl:template match="download"> 
      <table width="100%">
         <xsl:apply-templates select="item"/>
      </table>
   </xsl:template>

   <xsl:template match="download/item[position() &lt;= ../@last]">

      <tr>

         <td width="20%">

            <xsl:if test="position() = 1">

               <a>

                  <xsl:attribute name="href">
                     <xsl:text>/</xsl:text>
                     <xsl:value-of select="/article/@lang"/>
                     <xsl:text>/</xsl:text>
                     <xsl:value-of select="../@changes"/>
                  </xsl:attribute>

                  <xsl:value-of select="../@changes"/>

               </a>
            </xsl:if>

         </td>

         <td width="20%">

            <a>

               <xsl:attribute name="href">

                  <xsl:text>/download/nginx-</xsl:text>
                  <xsl:value-of select="@ver"/>
                  <xsl:text>.tar.gz</xsl:text>
               </xsl:attribute>

               <xsl:text>nginx-</xsl:text>
               <xsl:value-of select="@ver"/>

            </a>

            <xsl:if test="@pgp = 'yes'">

               <xsl:text>  </xsl:text>

               <a>

                  <xsl:attribute name="href">

                     <xsl:text>/download/nginx-</xsl:text>
                     <xsl:value-of select="@ver"/>
                     <xsl:text>.tar.gz.asc</xsl:text>
                  </xsl:attribute>

                  <xsl:text>pgp</xsl:text>

               </a>
            </xsl:if>

         </td>

         <td>

            <xsl:if test="@win= 'yes'">

               <a>

                  <xsl:attribute name="href">

                     <xsl:text>/download/nginx-</xsl:text>
                     <xsl:value-of select="@ver"/>
                     <xsl:text>.zip</xsl:text>
                  </xsl:attribute>

                  <xsl:text>nginx/Windows-</xsl:text>
                  <xsl:value-of select="@ver"/>

               </a>

               <xsl:if test="@pgp = 'yes'">

                  <xsl:text>  </xsl:text>

                  <a>

                     <xsl:attribute name="href">

                        <xsl:text>/download/nginx-</xsl:text>
                        <xsl:value-of select="@ver"/>
                        <xsl:text>.zip.asc</xsl:text>
                     </xsl:attribute>

                     <xsl:text>pgp</xsl:text>

                  </a>
               </xsl:if>
            </xsl:if>

         </td>

      </tr>
   </xsl:template>

   <xsl:template match="download/item[position() &gt; ../@last]"/>

</xsl:stylesheet>