# HG changeset patch # User Arne Babenhauserheide # Date 1234884869 -3600 # Node ID a60f0ba020d98d3d7fa244a5bec594fd16bd4246 # Parent b5b71ff1c37f8287384a333223754c35529a15ef# Parent baf1530ba0b0b7cf0d6fe93d2bc9979993441313 merge ajax random quotes. diff -r baf1530ba0b0 -r a60f0ba020d9 hgscm/apps/www/urls.py --- a/hgscm/apps/www/urls.py Mon Feb 16 07:14:20 2009 -0700 +++ b/hgscm/apps/www/urls.py Tue Feb 17 16:34:29 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 baf1530ba0b0 -r a60f0ba020d9 hgscm/apps/www/views.py --- a/hgscm/apps/www/views.py Mon Feb 16 07:14:20 2009 -0700 +++ b/hgscm/apps/www/views.py Tue Feb 17 16:34:29 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 baf1530ba0b0 -r a60f0ba020d9 hgscm/media/css/styles.css --- a/hgscm/media/css/styles.css Mon Feb 16 07:14:20 2009 -0700 +++ b/hgscm/media/css/styles.css Tue Feb 17 16:34:29 2009 +0100 @@ -78,7 +78,7 @@ .row { display: block; } .col { float: right; display: inline; width: 270px; margin: 25px; } .big { float: left; width: 470px; } -.big h2, .big h3 { margin-top: 20px; } +.big h2 { margin-top: 20px; } /* * Logo @@ -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 baf1530ba0b0 -r a60f0ba020d9 hgscm/templates/about.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hgscm/templates/about.html Tue Feb 17 16:34:29 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 baf1530ba0b0 -r a60f0ba020d9 hgscm/templates/base.html --- a/hgscm/templates/base.html Mon Feb 16 07:14:20 2009 -0700 +++ b/hgscm/templates/base.html Tue Feb 17 16:34:29 2009 +0100 @@ -6,21 +6,21 @@ - Mercurial + Mercurial SCM

mercurial

-