a48245cacc594993a930dd7bddf0b46e742977e1
[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
35                                         <xsl:text> and as a </xsl:text>
36                                         <a href="#git">Git Repo.</a>
37
38                                         <xsl:text>Further information on the binary and OS distributions can be found in the </xsl:text>
39                                         <a href="https://wiki.exim.org/ObtainingExim">Exim Wiki,</a>
40                                         <xsl:text> which is mirrored on </xsl:text>
41                                         <a href="https://github.com/Exim/exim">Github</a>.
42
43                                         <xsl:text>If we published <em>maintenance</em> releases, you can find the tarballs in the </xsl:text>
44                                         <a href="https://downloads.exim.org/exim4/fixes/">fixes area,</a>
45                                         <xsl:text> or in indiviual branches suffixed with <em>+fixes</em>.</xsl:text>
46                                 </p>
47
48             <h3>Verification of Downloads</h3>
49
50             <p>
51             All published tarballs are cryptographically signed with an OpenPGP implementation (such as GnuPG).
52             The signatures are distributed alongside the tarballs.
53             The signatures are created with keys belonging to the developers.
54             The keys can be found in our
55             <a href="https://downloads.exim.org/Exim-Maintainers-Keyring.asc">maintainers keyring</a>.
56             (Please crosscheck these keys with keys you can find at other sources.)
57             </p>
58             <p>
59             The exim.org domain supports <a href="https://wiki.gnupg.org/WKD">the WKD mechanism</a> for OpenPGP key retrieval.
60             </p>
61
62             <h3 id="git">Exim Git Repositories</h3>
63
64             <p>If you prefer tracking our commits to the source tree directly via Git:
65             <ul>
66                 <li>Main Git Repository: <code>git://git.exim.org/exim.git</code></li>
67                 <li>Web interface: <a href="https://git.exim.org/exim.git">https://git.exim.org/exim.git</a></li>
68                 <li>Mirror at GitHub <a href="https://github.com/Exim/exim.git">https://github.com/Exim/exim.git</a></li>
69             </ul>
70             All releases get a signed Git tag.
71             </p>
72
73             </xsl:template>
74
75 </xsl:stylesheet>