polish download info
[exim-website.git] / templates / web / mirrors.xsl
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4
5         <!-- WRAPPER -->
6                 <xsl:import href="../wrapper.xsl"/>
7                 <xsl:template match="/"> <xsl:apply-imports/> </xsl:template>
8
9                 <xsl:variable name="docroot" select="'.'"/>
10
11         <!-- Title -->
12                 <xsl:variable name="html.head.title" select="'Download sites for Exim'"/>
13
14         <!-- Canonical -->
15                 <xsl:variable name="html.head.append">
16                         <link rel="canonical" href="https://www.exim.org/mirrors.html"/>
17                 </xsl:variable>
18
19         <!-- CONTENT -->
20                 <xsl:template name="content">
21
22                         <!-- Title -->
23                                 <h2>
24                                         <xsl:value-of select="$html.head.title"/>
25                                 </h2>
26
27
28
29                         <!-- General Download Info -->
30                                 <p>
31                                 <xsl:text>Exim is available as a native package for a number of software distributions.
32                                 The sources are available as </xsl:text>
33                                 <a href="https://downloads.exim.org/exim4/">tarballs</a>
34                                 <xsl:text> and as a </xsl:text>
35                                 <a href="#git">Git Repo (see below).</a>
36                                 </p>
37
38                                 <p>
39                                 <xsl:text>Further information on the binary and OS distributions can be found in the </xsl:text>
40                                 <a href="https://github.com/Exim/exim.wiki/ObtainingExim">Exim Wiki.</a>
41                                 </p>
42
43                                 <p>
44                                 <xsl:text>If we published </xsl:text><em>maintenance</em><xsl:text> releases, you can find the tarballs in the </xsl:text>
45                                 <a href="https://downloads.exim.org/exim4/fixes/">fixes area,</a>
46                                 <xsl:text> and in individual </xsl:text><a href="#git">git branches</a><xsl:text> suffixed with </xsl:text><em>+fixes.</em>
47                                 <xsl:text> Please note, that we normally we do not publish maintenance releases as tarballs, unless they contain
48                                 critical changes.</xsl:text>
49                                 </p>
50
51             <h3>Verification of Downloads</h3>
52
53             <p>
54             All published tarballs are cryptographically signed with an OpenPGP implementation (such as GnuPG).
55             The signatures are distributed alongside the tarballs.
56             The signatures are created with keys belonging to the developers.
57             The keys can be found in our
58             <a href="https://downloads.exim.org/Exim-Maintainers-Keyring.asc">maintainers keyring</a>.
59             (Please crosscheck these keys with keys you can find at other sources.)
60             </p>
61
62             <p>
63             The exim.org domain supports <a href="https://wiki.gnupg.org/WKD">the WKD mechanism</a> for OpenPGP key retrieval.
64             </p>
65
66             <h3 id="git">Exim Git Repositories</h3>
67
68             <p>If you prefer tracking our commits to the source tree directly via Git:
69             <ul>
70                 <li>Main Git Repository: <code>git://git.exim.org/exim.git</code></li>
71                 <li>Web interface: <a href="https://git.exim.org/exim.git">https://git.exim.org/exim.git</a></li>
72                 <li>Mirror at GitHub <a href="https://github.com/Exim/exim.git">https://github.com/Exim/exim.git</a></li>
73             </ul>
74             All releases get a signed Git tag.
75             </p>
76
77             </xsl:template>
78
79 </xsl:stylesheet>