# HG changeset patch # User David Soria Parra # Date 1243278058 -7200 # Node ID 307dd774a9b6619ad0e7f7659a111b37ab20111a # Parent 9fbcdb15513b85a7b40866ecb3180a2dc5cdce8b who_uses: Initial commit of the "who uses mercurial" page diff -r 9fbcdb15513b -r 307dd774a9b6 hgscm/apps/www/urls.py --- a/hgscm/apps/www/urls.py Sun May 24 18:59:20 2009 +0200 +++ b/hgscm/apps/www/urls.py Mon May 25 21:00:58 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 9fbcdb15513b -r 307dd774a9b6 hgscm/apps/www/views.py --- a/hgscm/apps/www/views.py Sun May 24 18:59:20 2009 +0200 +++ b/hgscm/apps/www/views.py Mon May 25 21:00:58 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 9fbcdb15513b -r 307dd774a9b6 hgscm/templates/frontpage.html --- a/hgscm/templates/frontpage.html Sun May 24 18:59:20 2009 +0200 +++ b/hgscm/templates/frontpage.html Mon May 25 21:00:58 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 9fbcdb15513b -r 307dd774a9b6 hgscm/templates/who_uses.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hgscm/templates/who_uses.html Mon May 25 21:00:58 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 %}