view xsls/download.xsls @ 2060:237b67ef69a6

Improved win32 build instructions. Added "--with-openssl-opt=no-asm" argument which is required since OpenSSL 1.0.2, as OpenSSL started to use assembler by default in 1.0.0 and then broke builds with MASM in OpenSSL 1.0.2 (ticket #1396). While here, added "--with-debug", added missing "--http-scgi-temp-path" and "--http-uwsgi-temp-path", updated OpenSSL to 1.0.2l, switched to slightly more readable one-argument-per-line style in configure example, added indentation to continuation lines, removed useless "--builddir=objs" argument ("objs" is the default), and removed useless "-f objs/Makefile" argument in nmake (nginx generates appropriate Makefile in the current directory).
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 17 Oct 2017 17:57:36 +0300
parents b2b10d564893
children 68e8c8dc9489
line wrap: on
line source

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

X:stylesheet {

X:template = "download" {
    X:var last="@last"
    X:for-each "document(concat($XML, '/versions.xml'))
                /versions/download[@tag = current()/@tag]" {
        <table width="100%">

        !! "item[position() &lt;= $last]";

        </table>
    }
}


X:template = "download/item" {
    <tr>
        <td width="20%">
        X:if "position() = 1" {
            <a>
            X:attribute "href" {
                X:text{/} !{$LANG} X:text{/CHANGES}
                X:if "$LANG != 'en'" { X:text{.} !{$LANG} }
                X:if "../@changes != ''" { X:text{-} !{../@changes} }
            }
            X:text{CHANGES}
            X:if "$LANG != 'en'" { X:text{.} !{$LANG} }
            X:if "../@changes != ''" { X:text{-} !{../@changes} }
            </a>
        }
        </td>

        <td width="20%">
        <a>
        X:attribute "href" {
            X:text {/download/nginx-} !{@ver} X:text {.tar.gz}
        }
        X:text {nginx-} !{@ver}
        </a>

        X:if "@pgp = 'yes'" {
            X:text {&#xA0; }
            <a>
            X:attribute "href" {
                X:text {/download/nginx-} !{@ver} X:text {.tar.gz.asc}
            }
            X:text {pgp}
            </a>
        }
        </td>

        <td>
        X:if "@win= 'yes'" {
            <a>
            X:attribute "href" {
                X:text {/download/nginx-} !{@ver} X:text {.zip}
            }
            X:text {nginx/Windows-} !{@ver}
            </a>

            X:if "@pgp = 'yes'" {
                X:text {&#xA0; }
                <a>
                X:attribute "href" {
                    X:text {/download/nginx-} !{@ver} X:text {.zip.asc}
                }
                X:text {pgp}
                </a>
            }
        }
        </td>

    </tr>
}

}