Mercurial > hg-website
view hgscm/apps/www/urls.py @ 182:307dd774a9b6
who_uses: Initial commit of the "who uses mercurial" page
author | David Soria Parra <dsp@php.net> |
---|---|
date | Mon, 25 May 2009 21:00:58 +0200 |
parents | 45155fbcee67 |
children | c1c9a4f809ba |
line wrap: on
line source
from django.conf.urls.defaults import * urlpatterns = patterns('hgscm.apps.www.views', 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<version>.*?)/(?P<platform>.*?)$', 'download', name='download'), )