Mercurial > hg-website
annotate 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 |
rev | line source |
---|---|
26
b3d9cbb33d54
adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff
changeset
|
1 from django.conf.urls.defaults import * |
b3d9cbb33d54
adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff
changeset
|
2 |
b3d9cbb33d54
adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff
changeset
|
3 urlpatterns = patterns('hgscm.apps.www.views', |
b3d9cbb33d54
adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff
changeset
|
4 url(r'^$', 'frontpage', name='frontpage'), |
45
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
26
diff
changeset
|
5 url(r'^about$', 'about', name='about'), |
178
45155fbcee67
changed guide url to /workflow-guide.
Arne Babenhauserheide <bab@draketo.de>
parents:
161
diff
changeset
|
6 url(r'^workflow-guide$', 'workflow_guide', name='workflow_guide'), |
182
307dd774a9b6
who_uses: Initial commit of the "who uses mercurial" page
David Soria Parra <dsp@php.net>
parents:
178
diff
changeset
|
7 url(r'^who-uses-mercurial$', 'who_uses', name='who_uses'), |
65 | 8 url(r'^thepage$', 'thepage', name='thepage'), |
70
bef09338eceb
downloads: add initial handling for downloads
David Soria Parra <dsp@php.net>
parents:
65
diff
changeset
|
9 url(r'^downloads$', 'downloads', name='downloads'), |
bef09338eceb
downloads: add initial handling for downloads
David Soria Parra <dsp@php.net>
parents:
65
diff
changeset
|
10 url(r'^download/(?P<version>.*?)/(?P<platform>.*?)$', 'download', name='download'), |
45
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
26
diff
changeset
|
11 ) |