# HG changeset patch # User David Soria Parra # Date 1234916454 -3600 # Node ID a06b0f4d5c7e6e7cf70102c5acac41a07ca63559 # Parent 16016cc18dedec89c360e434e4bcc11c96111ae2# Parent 37a0375fbddc30de73d0aa3702b1d6e563adb5ba Merge backout diff -r 16016cc18ded -r a06b0f4d5c7e hgscm/apps/www/urls.py --- a/hgscm/apps/www/urls.py Wed Feb 18 01:19:32 2009 +0100 +++ b/hgscm/apps/www/urls.py Wed Feb 18 01:20:54 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'), +) diff -r 16016cc18ded -r a06b0f4d5c7e hgscm/apps/www/views.py --- a/hgscm/apps/www/views.py Wed Feb 18 01:19:32 2009 +0100 +++ b/hgscm/apps/www/views.py Wed Feb 18 01:20:54 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)) diff -r 16016cc18ded -r a06b0f4d5c7e hgscm/media/css/styles.css --- a/hgscm/media/css/styles.css Wed Feb 18 01:19:32 2009 +0100 +++ b/hgscm/media/css/styles.css Wed Feb 18 01:20:54 2009 +0100 @@ -78,6 +78,7 @@ .row { display: block; } .col { float: right; display: inline; width: 270px; margin: 25px; } .big { float: left; width: 470px; } +.quote { float: right; width: 740px; text-align: right; margin-right: 25px; } .big h2, .big h3 { margin-top: 20px; } /* @@ -125,6 +126,8 @@ #home ol li { list-style: none; background: url(../images/bullet-big-1.png) no-repeat 0 0; padding-left: 60px; min-height: 43px; _height: 43px; } #home ol .i-2 { background-image: url(../images/bullet-big-2.png); } #home ol .i-3 { background-image: url(../images/bullet-big-3.png); } +#home ol a { text-decoration: none; } +#home ol a:hover { text-decoration: underline; } /* * Footer @@ -132,4 +135,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; } diff -r 16016cc18ded -r a06b0f4d5c7e hgscm/templates/about.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hgscm/templates/about.html Wed Feb 18 01:20:54 2009 +0100 @@ -0,0 +1,47 @@ +{% extends "base.html" %} + +{% block content %} + +
+
+

Mercurial source control management

+

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. +

+ +

Distributed architecture

+ +

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.

+ +

Fast

+ +

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.

+ +

Platform independent

+ +

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.

+ +

Extensible

+ +

The functionality of Mercurial can be increased with extensions, either by activating the official ones which are shipped with Mercurial or downloading some (from the wiki or by writing your own). 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.

+ +

Open Source

+ +

Mercurial is free software licensed under the terms of the GNU General Public License Version 2.

+ +

Similar projects

+ +

Mercurial is used for version control of files. Similar projects include git, Bazaar, Subversion and CVS. +

+ +
+ + + +{% endblock %} diff -r 16016cc18ded -r a06b0f4d5c7e hgscm/templates/base.html --- a/hgscm/templates/base.html Wed Feb 18 01:19:32 2009 +0100 +++ b/hgscm/templates/base.html Wed Feb 18 01:20:54 2009 +0100 @@ -6,21 +6,21 @@ - Mercurial + Mercurial SCM

mercurial

-