Mercurial > hg-website
annotate templates/downloads/index.html @ 484:a39012663778
downloads: reflect Python 2.6 deprecation
Mercurial 4.3 drops support for Python 2.6. Update the
downloads page to reflect that.
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Fri, 28 Jul 2017 22:28:24 -0700 |
parents | 6f3cfd6dcc28 |
children | ddff2dfaa572 |
rev | line source |
---|---|
397
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
1 {% extends "base.html" %} |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
2 |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
3 {% block content %} |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
4 |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
5 <h1>Mercurial downloads</h1> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
6 <script language="javascript"> |
479
4b88b3c4fc80
downloads: initialize downloader from sources.js earlier
Kevin Bullock <kbullock+mercurial@ringworld.org>
parents:
474
diff
changeset
|
7 Downloader.init(sources); |
397
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
8 var versions = Downloader.versions(); |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
9 var more = Downloader.maxversions && |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
10 versions.length > Downloader.maxversions; |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
11 |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
12 // Show tables for Downloader.maxversions versions |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
13 for (i in versions) { |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
14 if (more && i >= Downloader.maxversions) |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
15 break; |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
16 // Need to localize this variable to closure it correctly |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
17 var current = versions[i]; |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
18 document.write(Downloader.table(versions[i], function (o) { |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
19 return o.version == current; |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
20 })); |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
21 } |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
22 |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
23 function exposeversions (node) { |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
24 // Emit but do not render tables for remaining versions |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
25 var html = '' |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
26 for (i in versions) { |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
27 if (i < Downloader.maxversions) |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
28 continue; |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
29 // Need to localize this variable to closure it correctly |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
30 var current = versions[i]; |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
31 html += Downloader.table(versions[i], function (o) { |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
32 return o.version == current; |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
33 }); |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
34 } |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
35 node.innerHTML = html; |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
36 } |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
37 |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
38 if (more) { |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
39 document.write('\ |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
40 <div onclick="exposeversions(this);">\ |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
41 <center id="more">[more versions]</center>\ |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
42 </div>\ |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
43 <br/>\ |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
44 '); |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
45 } |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
46 </script> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
47 |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
48 <h5>Development Repositories</h5> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
49 <dl> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
50 <dt>Main</dt> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
51 <dd>The main development repository of the Mercurial maintainer |
436 | 52 <a href="https://www.mercurial-scm.org/wiki/mpm">Matt Mackall</a> |
467
8a0dad3adbf7
downloads: link to new main repo
Kevin Bullock <kbullock+mercurial@ringworld.org>
parents:
456
diff
changeset
|
53 can be found at <a href="https://www.mercurial-scm.org/repo/hg"> |
8a0dad3adbf7
downloads: link to new main repo
Kevin Bullock <kbullock+mercurial@ringworld.org>
parents:
456
diff
changeset
|
54 https://www.mercurial-scm.org/repo/hg</a>.</dd> |
455
f6d8312a5c48
downloads: crew -> committed
Kevin Bullock <kbullock+mercurial@ringworld.org>
parents:
442
diff
changeset
|
55 <dt>Committers</dt> |
f6d8312a5c48
downloads: crew -> committed
Kevin Bullock <kbullock+mercurial@ringworld.org>
parents:
442
diff
changeset
|
56 <dd>The development repository of the Mercurial core contributors |
f6d8312a5c48
downloads: crew -> committed
Kevin Bullock <kbullock+mercurial@ringworld.org>
parents:
442
diff
changeset
|
57 can be found at |
f6d8312a5c48
downloads: crew -> committed
Kevin Bullock <kbullock+mercurial@ringworld.org>
parents:
442
diff
changeset
|
58 <a href="https://www.mercurial-scm.org/repo/hg-committed/"> |
f6d8312a5c48
downloads: crew -> committed
Kevin Bullock <kbullock+mercurial@ringworld.org>
parents:
442
diff
changeset
|
59 https://www.mercurial-scm.org/repo/hg-committed/</a>.</dd> |
397
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
60 </dl> |
456
c3c50748a20b
downloads: add link to DeveloperRepos on wiki
Kevin Bullock <kbullock+mercurial@ringworld.org>
parents:
455
diff
changeset
|
61 <p class="dl-note">See |
c3c50748a20b
downloads: add link to DeveloperRepos on wiki
Kevin Bullock <kbullock+mercurial@ringworld.org>
parents:
455
diff
changeset
|
62 <a href="https://www.mercurial-scm.org/wiki/DeveloperRepos">Developer |
c3c50748a20b
downloads: add link to DeveloperRepos on wiki
Kevin Bullock <kbullock+mercurial@ringworld.org>
parents:
455
diff
changeset
|
63 Repositories</a> on the wiki for a full list.</p> |
397
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
64 |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
65 <h5>Requirements</h5> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
66 <dl> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
67 <dt>Python</dt> |
484
a39012663778
downloads: reflect Python 2.6 deprecation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
480
diff
changeset
|
68 <dd>Mercurial uses <a href="https://www.python.org">Python</a> |
a39012663778
downloads: reflect Python 2.6 deprecation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
480
diff
changeset
|
69 (version <em>2.7</em>). Most ready-to-run Mercurial |
a39012663778
downloads: reflect Python 2.6 deprecation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
480
diff
changeset
|
70 distributions include Python or use the Python that comes |
a39012663778
downloads: reflect Python 2.6 deprecation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
480
diff
changeset
|
71 with your operating system. |
a39012663778
downloads: reflect Python 2.6 deprecation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
480
diff
changeset
|
72 </dd> |
397
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
73 </dl> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
74 |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
75 <h5>Older Releases</h5> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
76 <dl> |
438 | 77 <dt>Python versions<dt> |
78 <dd>For more information about version support, see | |
79 <a href="https://www.mercurial-scm.org/wiki/SupportedPythonVersions">Supported | |
80 Python Versions</a> on the wiki.</dd> | |
484
a39012663778
downloads: reflect Python 2.6 deprecation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
480
diff
changeset
|
81 <dt>Python 2.6</dt> |
a39012663778
downloads: reflect Python 2.6 deprecation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
480
diff
changeset
|
82 <dd><a href="/release/mercurial-4.2.2.tar.gz">Mercurial 4.2.2</a> |
a39012663778
downloads: reflect Python 2.6 deprecation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
480
diff
changeset
|
83 is the last release to support Python 2.6. Use this if you need |
a39012663778
downloads: reflect Python 2.6 deprecation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
480
diff
changeset
|
84 to run Mercurial on old platforms and you cannot update your |
a39012663778
downloads: reflect Python 2.6 deprecation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
480
diff
changeset
|
85 Python installation.</dd> |
438 | 86 <dt>Python 2.5</dt> |
87 <dd><a href="/release/mercurial-3.4.2.tar.gz">Mercurial 3.4.2</a> | |
88 is the last release to support Python 2.5. Use this if you | |
89 need to run Mercurial on very old platforms and you cannot update | |
90 your Python installation.</dd> | |
91 <dt>Python 2.4</dt> | |
92 <dd><a href="/release/mercurial-3.4.2.tar.gz">Mercurial 3.4.2</a> | |
93 is the last release to support Python 2.4. Use this if you | |
94 need to run Mercurial on very old platforms and you cannot update | |
95 your Python installation.</dd> | |
397
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
96 <dt>Python 2.3</dt> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
97 <dd><a href="/release/mercurial-1.2.1.tar.gz">Mercurial 1.2.1</a> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
98 is the last release to support Python 2.3. Use this if you |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
99 need to run Mercurial on very old platforms and you cannot update |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
100 your Python installation.</dd> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
101 <dt>Older source releases</dt> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
102 <dd><a href="/release/">All previous source releases</a> are available |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
103 to download.</dd> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
104 </dl> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
105 |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
106 {% endblock %} |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
107 {% block sidebar %} |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
108 <h3>Get started</h3> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
109 <p>Mercurial is written in Python with platform independence in mind. |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
110 As a result, Mercurial is available on |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
111 <a href="http://www.microsoft.com/windows">Microsoft Windows</a>, |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
112 <a href="http://kernel.org">GNU/Linux</a>, |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
113 <a href="http://www.apple.com">Mac OS X</a>, |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
114 <a href="http://oracle.com/solaris">Solaris 11 Express</a> and others. |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
115 You can either download a binary package for the system of your choice or |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
116 build it from sources.</p> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
117 |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
118 <p>Windows users are likely to enjoy the <a href="http://tortoisehg.org">TortoiseHg</a> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
119 GUI the most. It integrates Mercurial directly into your explorer.</p> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
120 |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
121 <p>Packages for common Linux, BSD and Solaris distributions can be |
474
68ea82e8ff7c
downloads: add link to PPA for ubuntu/debian
heatherboo <heather.j.booker@gmail.com>
parents:
467
diff
changeset
|
122 installed from the system specific repositories:</p> |
68ea82e8ff7c
downloads: add link to PPA for ubuntu/debian
heatherboo <heather.j.booker@gmail.com>
parents:
467
diff
changeset
|
123 <p>(Ubuntu: If you need a more recent version than what is available through apt-get, you can <a href="https://launchpad.net/~mercurial-ppa/+archive/ubuntu/releases">try the PPA</a>.) |
68ea82e8ff7c
downloads: add link to PPA for ubuntu/debian
heatherboo <heather.j.booker@gmail.com>
parents:
467
diff
changeset
|
124 </p> |
397
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
125 <p> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
126 <pre> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
127 # Debian/Ubuntu |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
128 $ apt-get install mercurial |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
129 |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
130 # Fedora |
480
6f3cfd6dcc28
downloads: replace yum with dnf for fedora instructions
David Demelier <markand@malikania.fr>
parents:
479
diff
changeset
|
131 $ dnf install mercurial |
397
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
132 |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
133 # Gentoo |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
134 $ emerge mercurial |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
135 |
414
3d0f1f7cee05
downloads: add macos homebrew install instructions
David Soria Parra <davidsp@fb.com>
parents:
397
diff
changeset
|
136 # Mac OS (homebrew) |
3d0f1f7cee05
downloads: add macos homebrew install instructions
David Soria Parra <davidsp@fb.com>
parents:
397
diff
changeset
|
137 $ brew install mercurial |
3d0f1f7cee05
downloads: add macos homebrew install instructions
David Soria Parra <davidsp@fb.com>
parents:
397
diff
changeset
|
138 |
397
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
139 # FreeBSD |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
140 $ cd /usr/ports/devel/mercurial |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
141 $ make install |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
142 |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
143 # Solaris 11 Express |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
144 $ pkg install SUNWmercurial |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
145 </pre> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
146 </p> |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
diff
changeset
|
147 {% endblock %} |