annotate hgscm/templates/about.html @ 216:68d5f2b82018

Added easy to use section to the about page
author Arne Babenhauserheide <bab@draketo.de>
date Fri, 10 Jul 2009 10:03:09 +0200
parents ec398217558a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
215
ec398217558a Fix: use html excaping for <commands>
Arne Babenhauserheide <bab@draketo.de>
parents: 149
diff changeset
28 <h2>Easy to use</h2>
ec398217558a Fix: use html excaping for <commands>
Arne Babenhauserheide <bab@draketo.de>
parents: 149
diff changeset
29
216
68d5f2b82018 Added easy to use section to the about page
Arne Babenhauserheide <bab@draketo.de>
parents: 215
diff changeset
30 <p>Mercurial sports a consistent command set in which most subversion users feel right at home. Potentially dangerous actions are available via extensions you need to enable, so the basic interface is easy to use, easy to learn and hard to break. The <a href="{% url quick_start %}">Quick Start</a> should get you going in a just few minutes.</p>
215
ec398217558a Fix: use html excaping for <commands>
Arne Babenhauserheide <bab@draketo.de>
parents: 149
diff changeset
31
45
7276388fc71b about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff changeset
32 <h2>Open Source</h2>
7276388fc71b about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff changeset
33
7276388fc71b about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff changeset
34 <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
35
7276388fc71b about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff changeset
36 <h3>Similar projects</h3>
7276388fc71b about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff changeset
37
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
38 <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
39 </div>
7276388fc71b about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff changeset
40 <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
41 {% download_button %}
77
fb737a306703 templatetags: Add mercurial_tricks templatetag
David Soria Parra <dsp@php.net>
parents: 76
diff changeset
42 {% 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
43 {% mercurial_tricks_advanced %}
45
7276388fc71b about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff changeset
44 </div>
7276388fc71b about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff changeset
45 </div>
7276388fc71b about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff changeset
46
7276388fc71b about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff changeset
47 </div>
7276388fc71b about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff changeset
48
7276388fc71b about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
diff changeset
49 {% endblock %}