Mercurial > hg-website
annotate hgscm/templates/about.html @ 149:2d6b15433c60
FIX: Accidently added the advanced tricks to the workflow guide instead of to the about page.
author | Arne Babenhauserheide <bab@draketo.de> |
---|---|
date | Tue, 12 May 2009 08:00:08 +0200 |
parents | 7150a89dafd0 |
children | ec398217558a |
rev | line source |
---|---|
45
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
1 {% extends "base.html" %} |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
2 |
77
fb737a306703
templatetags: Add mercurial_tricks templatetag
David Soria Parra <dsp@php.net>
parents:
76
diff
changeset
|
3 {% load extras %} |
45
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
4 {% block content %} |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
5 |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
6 <div class="row"> |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
7 <div class="col big"> |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
8 <h1>Mercurial source control management</h1> |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
9 <p><strong>Mercurial is a free, distributed source control management tool. It offers you the power to efficiently handle projects of any size while using an intuitive interface. It is easy to use and hard to break, making it ideal for anyone working with versioned files. |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
10 </strong></p> |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
11 |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
12 <h2>Distributed architecture</h2> |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
13 |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
14 <p>Traditional version control systems such as Subversion are typical client-server architectures with a central server to store the revisions of a project. In contrast, Mercurial is truly distributed, giving each developer a local copy of the entire development history. This way it works independent of network access or a central server. Committing, branching and merging are fast and cheap.</p> |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
15 |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
16 <h2>Fast</h2> |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
17 |
88
7150a89dafd0
Added repo URLs for OpenJDK and NetBeans - maybe we should add info sites instead 'OpenJDK and Mercurial' or such.
Arne Babenhauserheide <bab@draketo.de>
parents:
87
diff
changeset
|
18 <p>Mercurials implementation and data structures are designed to be fast. You can generate diffs between revisions, or jump back in time within seconds. Therefore Mercurial is perfectly suiteable for large projects such as OpenJDK (<a href="http://hg.openjdk.java.net/jdk7/jdk7">hg</a>) or NetBeans (<a href="http://hg.netbeans.org/">hg</a>).</p> |
45
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
19 |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
20 <h2>Platform independent</h2> |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
21 |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
22 <p>Mercurial was written with platform independence in mind. Therefore most of Mercurial is written in Python, with a small part in portable C for performance reasons. As a result, binary releases are available on all major platforms.</p> |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
23 |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
24 <h2>Extensible</h2> |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
25 |
87
a7173052ff90
about: removed unecessary brackets to improve text flow.
Arne Babenhauserheide <bab@draketo.de>
parents:
86
diff
changeset
|
26 <p>The functionality of Mercurial can be increased with extensions, either by activating the official ones which are shipped with Mercurial or downloading some <a href="http://www.selenic.com/mercurial/wiki/index.cgi/UsingExtensions">from the wiki</a> or by <a href="http://www.selenic.com/mercurial/wiki/index.cgi/WritingExtensions">writing your own</a>. Extensions are written in Python and can change the workings of the basic commands, add new commands and access all the core functions of Mercurial.</p> |
45
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
27 |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
28 <h2>Open Source</h2> |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
29 |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
30 <p>Mercurial is free software licensed under the terms of the <a href="http://www.gnu.org/licenses/gpl-2.0.txt">GNU General Public License Version 2</a>.</p> |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
31 |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
32 <h3>Similar projects</h3> |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
33 |
86
5046f45a8eaf
Polish: Relation to other VCS; removed 'other' to clear up that VCS without distributed architecture are clearly different.
Arne Babenhauserheide <bab@draketo.de>
parents:
85
diff
changeset
|
34 <p>Mercurial is used for version control of files. Similar projects include <a href="http://git-scm.org">Git</a> and <a href="http://bazaar-vcs.org">Bazaar</a>. Version control systems without a distributed architecture include <a href="http://subversion.tigris.org/">Subversion</a> and <a href="http://www.nongnu.org/cvs/">CVS</a>. |
45
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
35 </div> |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
36 <div class="col"> |
78
8d25e34c21c2
templatetags: Add DownloadButton tag to display a download button according to operating system
David Soria Parra <dsp@php.net>
parents:
77
diff
changeset
|
37 {% download_button %} |
77
fb737a306703
templatetags: Add mercurial_tricks templatetag
David Soria Parra <dsp@php.net>
parents:
76
diff
changeset
|
38 {% mercurial_tricks %} |
149
2d6b15433c60
FIX: Accidently added the advanced tricks to the workflow guide instead of to the about page.
Arne Babenhauserheide <bab@draketo.de>
parents:
88
diff
changeset
|
39 {% mercurial_tricks_advanced %} |
45
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
40 </div> |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
41 </div> |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
42 |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
43 </div> |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
44 |
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff
changeset
|
45 {% endblock %} |