view xsls/dirindex.xsls @ 2087:4931a7ba6a32

Restored proper tense in limit_conn description. The limit_conn module only limits connections with active requests, that is, if a connection has a request "being processed" by the server. During a text review in 95c3c3bbf1ce it was changed to "has a request processed", which is incorrect (it is true after processing the first request). Reported by Abilio Marques, http://mailman.nginx.org/pipermail/nginx/2017-December/055322.html.
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 19 Dec 2017 20:49:06 +0300
parents 364a04c4f761
children
line wrap: on
line source

<!--
  Copyright (C) Nginx, Inc.
  -->

X:stylesheet {

X:output method="xml" doctype-system="../../../dtd/article.dtd" encoding="utf-8"
         indent="yes";

<!--
  -- a current directory of a XSLT script is where the script is stored,
  -- but not where XSLT processor has been started to run the script
  -->
X:param XML = "'../xml'";

X:param LANG;

X:template = "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>
    !! "module";
    </links>
    </para>
    </section>
    </article>
}

X:template = "module" {
    X:var module="@name"
    X:for-each "document(@name)/module/section/directive" {
        <link doc="{$module}" id="{@name}"/>
    }
}

}