Mercurial > hg-website
changeset 52:81812f49ba9c
merged Django work from dsp
author | Arne Babenhauserheide <bab@draketo.de> |
---|---|
date | Tue, 17 Feb 2009 15:50:50 +0100 |
parents | ed9c990f1083 (current diff) 360d682148ce (diff) |
children | b5b71ff1c37f |
files | |
diffstat | 6 files changed, 87 insertions(+), 16 deletions(-) [+] |
line wrap: on
line diff
--- a/hgscm/apps/www/urls.py Tue Feb 17 15:49:23 2009 +0100 +++ b/hgscm/apps/www/urls.py Tue Feb 17 15:50:50 2009 +0100 @@ -2,4 +2,5 @@ urlpatterns = patterns('hgscm.apps.www.views', url(r'^$', 'frontpage', name='frontpage'), -) \ No newline at end of file + url(r'^about$', 'about', name='about'), +)
--- a/hgscm/apps/www/views.py Tue Feb 17 15:49:23 2009 +0100 +++ b/hgscm/apps/www/views.py Tue Feb 17 15:50:50 2009 +0100 @@ -4,3 +4,6 @@ def frontpage(request): return render_to_response("frontpage.html", { }, RequestContext(request)) +def about(request): + return render_to_response("about.html", { }, + RequestContext(request))
--- a/hgscm/media/css/styles.css Tue Feb 17 15:49:23 2009 +0100 +++ b/hgscm/media/css/styles.css Tue Feb 17 15:50:50 2009 +0100 @@ -132,4 +132,4 @@ #footer { font-family: Verdana, Helvetica, Arial, sans-serif; font-size: .6428em; display: inline-block; overflow: hidden; text-align: right; padding: 10px 25px; } #footer { display: block; } #footer div { float: left; } -#footer a { text-decoration: none; } \ No newline at end of file +#footer a { text-decoration: none; }
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hgscm/templates/about.html Tue Feb 17 15:50:50 2009 +0100 @@ -0,0 +1,47 @@ +{% extends "base.html" %} + +{% block content %} + +<div class="row"> + <div class="col big"> + <h1>Mercurial source control management</h1> + <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. + </strong></p> + + <h2>Distributed architecture</h2> + + <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> + + <h2>Fast</h2> + + <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 or NetBeans.</p> + + <h2>Platform independent</h2> + + <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> + + <h2>Extensible</h2> + + <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> + + <h2>Open Source</h2> + + <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> + + <h3>Similar projects</h3> + + <p>Mercurial is used for version control of files. Similar projects include <a href="http://www.git-scm.org">git</a>, <a href="http://bazaar-vcs.org">Bazaar</a>, <a href="http://subversion.tigris.org/">Subversion</a> and <a href="http://www.nongnu.org/cvs/">CVS</a>. + </div> + <div class="col"> + <h2>Download Mercurial</h2> + <a class="download typeface-js" href="javascript:void(0);"> + <strong>Download now</strong> + Mercurial <em>2.42</em> + <span>Windows XP | Vista | 7</span> + </a> + </div> + </div> + +</div> + +{% endblock %}
--- a/hgscm/templates/base.html Tue Feb 17 15:49:23 2009 +0100 +++ b/hgscm/templates/base.html Tue Feb 17 15:50:50 2009 +0100 @@ -6,21 +6,21 @@ <link href="{{ MEDIA_URL }}css/styles.css" type="text/css" rel="stylesheet"> <script type="text/javascript" src="{{ MEDIA_URL }}javascript/typeface.js"></script> <script type="text/javascript" src="{{ MEDIA_URL }}javascript/optimer_regular.typeface.js"></script> - <title>Mercurial</title> + <title>Mercurial SCM</title> </head> <body id="home"> <h1 id="logo"><a href="/">mercurial</a></h1> <ul id="nav" class="typeface-js"> - <li><a href="javascript:void(0);">about</a></li> + <li><a href="{% url about %}">about</a></li> <li><a href="javascript:void(0);">download</a></li> <li><a href="javascript:void(0);">extensions</a></li> <li><a href="javascript:void(0);">docs</a></li> <li><a href="javascript:void(0);">community</a></li> </ul> - <form id="search" method="post" action="index.html"> + <form id="search" method="post" action="search/"> <fieldset> <legend>Search form</legend> <label for="keyword">keyword</label>
--- a/hgscm/templates/frontpage.html Tue Feb 17 15:49:23 2009 +0100 +++ b/hgscm/templates/frontpage.html Tue Feb 17 15:50:50 2009 +0100 @@ -26,27 +26,47 @@ <div class="row"> <div class="col big"> - <h3>How can you benefit from Mercurial?</h3> + <h3>How you can benefit from Mercurial</h3> <ol> <li class="i-1"> - <h4><a href="javascript:void(0);">Download and install</a></h4> - <p>Donec ut pede ac lorem iaculis aliquam. Curabitur feugiat, libero scelerisque laoreet malesuada, purus lorem fermentum quam, eget rhoncus quam sapien ac nulla. Praesent id turpis.</p> + <h4>It is <a href="about.html">fast and powerful</a></h4> + <p>Mercurial offers you the power and speed to efficiently handle <a href="./who_uses_mercurial">projects of any size and kind</a>. You can use a multitude of <a href="./workflows">workflows</a> and easily enhance its functionality with <a href="./extensions">extensions</a>.</p> </li> <li class="i-2"> - <h4><a href="javascript:void(0);">Follow our simple Guide to learn how you can Revision your documents with Mercurial</a></h4> - <p>Suspendisse pulvinar dolor nec massa. Mauris sit amet orci porta velit congue fringilla. Pellentesque ipsum libero, scelerisque luctus</p> + <h4>It is <a href="./learn_mercurial">easy to learn</a></h4> + <p>You can follow our simple <a href="guide">guide</a> to learn how to revision your documents with Mercurial, or just use the <a href="./quick_start">quick start</a> to get going instantly. </p> </li> <li class="i-3"> - <h4><a href="javascript:void(0);">Get involved.</a></h4> - <p>Create extensions, translate the documentation, test beta versions.</p> + <h4>And it <a href="./testimonies">just works</a></h4> + <p>Mercurial strives to deliver on each of its promises. Most tasks simply work on the first try and without requiring arcane knowledge. <!--(If one doesn't, that's most likely no feature but a <a href="http://selenic.com/mercurial/bugs/">bug</a>. Please <a href="http://selenic.com/mercurial/bugs/">tell us about it</a>!) + commented out because it feels awkward.--></p> </li> </ol> </div> <div class="col"> - <h3>Take a look at Mercurial</h3> - <!-- Flash Player should probably come here--> - <img src="{{ MEDIA_URL }}images/tour.jpg" alt=""> + <h3>Quick Start</h3> + + <p><em>Clone a project and create a patch</em> +<pre>$ hg clone http://hg-scm.org/hello +$ cd hello +$ (edit files) +$ hg add (new files) +$ hg commit -m 'My changes' +$ hg export > patch.diff + +</pre> +</p> + +<p><em>Create a project and commit</em> +<pre>$ cd (project-directory) +$ hg init +$ (add some files) +$ hg add +$ hg commit -m 'Initial commit' +</pre> +</p> + <!--Change into project dir before initiating repo to avoid a possible stumbling point.--> </div> </div> -{% endblock %} \ No newline at end of file +{% endblock %}