# HG changeset patch # User Arne Babenhauserheide # Date 1243978671 -7200 # Node ID 3531c412ab40be5d3aac08a27cbc3363b178cfdf # Parent c3b7cf9896aaca4d044c87911b6d507f36fddf5c# Parent 307dd774a9b6619ad0e7f7659a111b37ab20111a merge diff -r c3b7cf9896aa -r 3531c412ab40 hgscm/apps/www/urls.py --- a/hgscm/apps/www/urls.py Tue Jun 02 23:36:57 2009 +0200 +++ b/hgscm/apps/www/urls.py Tue Jun 02 23:37:51 2009 +0200 @@ -4,6 +4,7 @@ url(r'^$', 'frontpage', name='frontpage'), url(r'^about$', 'about', name='about'), url(r'^workflow-guide$', 'workflow_guide', name='workflow_guide'), + url(r'^who-uses-mercurial$', 'who_uses', name='who_uses'), url(r'^thepage$', 'thepage', name='thepage'), url(r'^downloads$', 'downloads', name='downloads'), url(r'^download/(?P.*?)/(?P.*?)$', 'download', name='download'), diff -r c3b7cf9896aa -r 3531c412ab40 hgscm/apps/www/views.py --- a/hgscm/apps/www/views.py Tue Jun 02 23:36:57 2009 +0200 +++ b/hgscm/apps/www/views.py Tue Jun 02 23:37:51 2009 +0200 @@ -12,6 +12,9 @@ def about(request): return render_to_response("about.html", { }, RequestContext(request)) +def who_uses(request): + return render_to_response("who_uses.html", { }, + RequestContext(request)) def workflow_guide(request): return render_to_response("workflow_guide.html", { }, RequestContext(request)) diff -r c3b7cf9896aa -r 3531c412ab40 hgscm/templates/frontpage.html --- a/hgscm/templates/frontpage.html Tue Jun 02 23:36:57 2009 +0200 +++ b/hgscm/templates/frontpage.html Tue Jun 02 23:37:51 2009 +0200 @@ -20,7 +20,7 @@
  • It is fast and powerful

    -

    Mercurial offers you the power and speed to efficiently handle projects of any size and kind. Every clone contains the whole project history, so committing, branching, tagging and merging are local operations which makes them fast and convenient. You can use a multitude of workflows and easily enhance its functionality with extensions.

    +

    Mercurial offers you the power and speed to efficiently handle projects of any size and kind. Every clone contains the whole project history, so committing, branching, tagging and merging are local operations which makes them fast and convenient. You can use a multitude of workflows and easily enhance its functionality with extensions.

  • It is easy to learn

    diff -r c3b7cf9896aa -r 3531c412ab40 hgscm/templates/who_uses.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hgscm/templates/who_uses.html Tue Jun 02 23:37:51 2009 +0200 @@ -0,0 +1,31 @@ +{% extends "base.html" %} + +{% load extras %} +{% block content %} + +
    +
    +

    Who uses Mercurial

    +

    Mercurial is a free, distributed source control management tool. It it currently used by many Open Source Projects such as...

    +

    Python

    + Python is a famous and widley adopted scritping language. Many application like Mercurial, Django and Googles AppEngine are build on top of Python. In 2009 the Python developers choosed to move from Subversion to Mercurial.

    +

    http://www.python.org

    +

    Mozilla

    + Mozilla is an open source project that is currently developing the popular Firefox internet browser, the email client Thunderbird and the application suite SeaMonkey. Mozilla choosed Mercurial in 2006.

    +

    http://www.mozilla.org

    +

    OpenSolaris

    +

    The Solaris based open source operating system project choosed Mercurial in 2006. It is used for the development of OpenSolaris core components and packages. Mercurial helps OpenSolaris to maintain their external contributions and make sure that external packages fit the quality requirements of the project. Mercurial was choosen after a deep evaluation of existing version control systems.

    +

    The project has a dedicated web page with information about the evaluation.

    +

    http://www.opensolaris.org

    +

    Java / OpenJDK

    + OpenJDK is a the official opne sourced Java implementation of Sun Microsystems. With open sourcing the project, Sun choosed Mercurial as their main version control system. +

    http://openjdk.java.net/

    +

    and others...

    +

    Not just OpenSolaris, Mozilla, Java and Python choosed Mercurial, but a lot of projects of any size choosed Mercurial for it's efficiency and it's power. A longer list of projects that use Mercurial can be found in the wiki..

    +
    +
    + {% download_button %} +
    +
    + +{% endblock %}