view xslt/dirindex.xslt @ 636:310872ba13ae

Removed the "timeout=300s" directive from SMTP examples. Such an initial timeout is too long, and the default timeout of one minute is long enough. By removing it, we purposedly ignore the requirement of the current SMTP specification to set it to at least five minutes: http://tools.ietf.org/html/rfc5321#section-4.5.3.2 Submitted by Maxim Dounin.
author Ruslan Ermilov <ru@nginx.com>
date Wed, 15 Aug 2012 11:28:37 +0000
parents b9db45d1433b
children c454373427ef
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 doctype-system="../../../dtd/article.dtd" encoding="utf-8" method="xml"/>

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

   <xsl:param name="LANG"/>

   <xsl:template match="modules">

      <article name="{document(concat($XML, '/i18n.xml'))                     /i18n/text[@lang = $LANG]/item[@id='dirindex']}" link="/{$LANG}/docs/dirindex.html" lang="{$LANG}">

         <section>

            <para>

               <links>

                  <xsl:apply-templates select="module"/>

               </links>

            </para>

         </section>

      </article>
   </xsl:template>

   <xsl:template match="module">

      <xsl:variable select="@name" name="module"/>

      <xsl:for-each select="document(@name)/module/section/directive">

         <link doc="{$module}" id="{@name}"/>
      </xsl:for-each>
   </xsl:template>

</xsl:stylesheet>