Mercurial > hg-website
comparison 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 |
comparison
equal
deleted
inserted
replaced
181:9fbcdb15513b | 182:307dd774a9b6 |
---|---|
2 | 2 |
3 urlpatterns = patterns('hgscm.apps.www.views', | 3 urlpatterns = patterns('hgscm.apps.www.views', |
4 url(r'^$', 'frontpage', name='frontpage'), | 4 url(r'^$', 'frontpage', name='frontpage'), |
5 url(r'^about$', 'about', name='about'), | 5 url(r'^about$', 'about', name='about'), |
6 url(r'^workflow-guide$', 'workflow_guide', name='workflow_guide'), | 6 url(r'^workflow-guide$', 'workflow_guide', name='workflow_guide'), |
7 url(r'^who-uses-mercurial$', 'who_uses', name='who_uses'), | |
7 url(r'^thepage$', 'thepage', name='thepage'), | 8 url(r'^thepage$', 'thepage', name='thepage'), |
8 url(r'^downloads$', 'downloads', name='downloads'), | 9 url(r'^downloads$', 'downloads', name='downloads'), |
9 url(r'^download/(?P<version>.*?)/(?P<platform>.*?)$', 'download', name='download'), | 10 url(r'^download/(?P<version>.*?)/(?P<platform>.*?)$', 'download', name='download'), |
10 ) | 11 ) |