Mercurial > hg-website
view hgscm/templates/downloads.html @ 227:75f1f4cc2ef1
Cleaned up and resorted downloads.json (by most spread system) and included TotoiseHG.
author | Arne Babenhauserheide <bab@draketo.de> |
---|---|
date | Thu, 16 Jul 2009 11:17:24 +0200 |
parents | bef09338eceb |
children |
line wrap: on
line source
{% extends "base.html" %} {% block content %} <div class="row"> <div class="big col"> <h1>Mercurial downloads</h1> {% for d in downloads %} {% ifequal d.latest "true" %} <table border="0" cellspacing="0" cellpadding="0" class="latest" width="100%"> {% else %} <table border="0" cellspacing="0" cellpadding="0" width="100%"> {% endifequal %} <thead> <tr> <th>Mercurial {{ d.version }}</th> <th></th> <th></th> </tr> </thead> <tbody> {% for v in d.versions %} <tr> <td>{{ v.system }}</td> <td>{{ v.language }}</td> <td><a href="download/{{d.version}}/{{v.identifier}}">download</a></td> </tr> {% endfor %} </tbody> </table> {% endfor %} </div> <div class="col"> <h3>Get started</h3> <p>Mercurial is written in python with platform independence in mind. As a result, Mercurial is available on <a href="http://www.microsoft.com/windows">Microsoft Windows</a>, <a href="http://kernel.org">GNU/Linux</a>, <a href="http://www.apple.com">MacOS X</a>, <a href="http://www.opensolaris.org">OpenSolaris</a> and others. You can either download a binary package for the system of your choice or build it from sources.</p> <p>Windows users are likely to enjoy the <a href="http://tortoisehg.sf.net">TortoiseHG</a> GUI the most. It integrates Mercurial directly into your explorer.</p> <p>Packages for common Linux, BSD and Solaris distributions can be installed from the system specific repositories</p> <p> <pre> # Debian/ubuntu $ apt-get install mercurial # Fedora $ yum install mercurial # Gentoo $ emerge mercurial # OpenSolaris $ pkg install SUNWmercurial </p> </div> </div> {% endblock %}