view xsls/dirindex.xsls @ 2662:e4d370d43176

Linux packages: removed apt-key usage to import gpg keys on Debian/Ubuntu. apt-key is deprecated since 2017 and will be removed after Debian 11 and Ubuntu 22.04. All distributions since at least 2013 support storing trusted keys in /etc/apt/trusted.gpg.d/ instead, so using it should be safe. A special workaround is added for Ubuntu 16.04 shipping gnupg 2.1, which is not compatible with the CLI invocation we use.
author Konstantin Pavlov <thresh@nginx.com>
date Wed, 17 Feb 2021 16:39:40 +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}"/>
    }
}

}