# HG changeset patch # User Arne Babenhauserheide # Date 1234882250 -3600 # Node ID 81812f49ba9c2338b23462aad81c1e58059e0fb0 # Parent ed9c990f1083574b5b3811fcd0501f250bdaa06f# Parent 360d682148ceb88698c8b0d9b54c3e1e45e8b883 merged Django work from dsp diff -r ed9c990f1083 -r 81812f49ba9c hgscm/apps/www/urls.py --- 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'), +) diff -r ed9c990f1083 -r 81812f49ba9c hgscm/apps/www/views.py --- 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)) diff -r ed9c990f1083 -r 81812f49ba9c hgscm/media/css/styles.css --- 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; } diff -r ed9c990f1083 -r 81812f49ba9c hgscm/templates/about.html --- /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 %} + +
+
+

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 ed9c990f1083 -r 81812f49ba9c hgscm/templates/base.html --- 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 @@ - Mercurial + Mercurial SCM

mercurial

-