view xsls/versions.xsls @ 2635:bf8e98fe085f

Linux packages: use $releasever_major in SLES repository instructions. On SLES service packs, $releasever holds a major number (e.g. 12), a dot and a minor number of a service pack (e.g. 5). Since we don't ship packages per-SP for that distribution, but rather the lowest common, we should point our users accordingly.
author Konstantin Pavlov <thresh@nginx.com>
date Tue, 08 Dec 2020 14:07:49 +0300
parents 1594ed379f1f
children 9eadb98ec770
line wrap: on
line source

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

X:stylesheet {

X:template = "mainline_version" {
   !! "document(concat($XML, '/versions.xml'))
                /versions/download[@tag='mainline'][1]/item[1]/@ver";
}

X:template = "stable_version" {
   !! "document(concat($XML, '/versions.xml'))
                /versions/download[@tag='stable'][1]/item[1]/@ver";
}

X:template = "commercial_version" {
    <a href="http://nginx.com/products/">
    !!;
    </a>
}

}