# HG changeset patch # User David Soria Parra # Date 1234871647 -3600 # Node ID 7276388fc71b55b575d9705d3278111300e9d10c # Parent b4e2beb77366f028e4b9e1998c8e27cbb2e95937 about: integrate about page in django version diff -r b4e2beb77366 -r 7276388fc71b hgscm/apps/www/urls.py --- a/hgscm/apps/www/urls.py Mon Feb 16 12:14:57 2009 +0100 +++ b/hgscm/apps/www/urls.py Tue Feb 17 12:54:07 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 b4e2beb77366 -r 7276388fc71b hgscm/apps/www/views.py --- a/hgscm/apps/www/views.py Mon Feb 16 12:14:57 2009 +0100 +++ b/hgscm/apps/www/views.py Tue Feb 17 12:54:07 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 b4e2beb77366 -r 7276388fc71b hgscm/templates/about.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hgscm/templates/about.html Tue Feb 17 12:54:07 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 b4e2beb77366 -r 7276388fc71b hgscm/templates/base.html --- a/hgscm/templates/base.html Mon Feb 16 12:14:57 2009 +0100 +++ b/hgscm/templates/base.html Tue Feb 17 12:54:07 2009 +0100 @@ -13,14 +13,14 @@

mercurial

-