Mercurial > hg-website
annotate hgscm/apps/www/urls.py @ 207:c1c9a4f809ba
integrated quick_start and learn_mercurial into the django project (with links).
Only missing parts: A wiki-page for links to learning resources and autodetection of the most current version.
author | Arne Babenhauserheide <bab@draketo.de> |
---|---|
date | Thu, 02 Jul 2009 15:35:27 +0200 |
parents | 307dd774a9b6 |
children |
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'), |
207
c1c9a4f809ba
integrated quick_start and learn_mercurial into the django project (with links).
Arne Babenhauserheide <bab@draketo.de>
parents:
182
diff
changeset
|
7 url(r'^learn-mercurial$', 'learn_mercurial', name='learn_mercurial'), |
c1c9a4f809ba
integrated quick_start and learn_mercurial into the django project (with links).
Arne Babenhauserheide <bab@draketo.de>
parents:
182
diff
changeset
|
8 url(r'^quick-start$', 'quick_start', name='quick_start'), |
182
307dd774a9b6
who_uses: Initial commit of the "who uses mercurial" page
David Soria Parra <dsp@php.net>
parents:
178
diff
changeset
|
9 url(r'^who-uses-mercurial$', 'who_uses', name='who_uses'), |
65 | 10 url(r'^thepage$', 'thepage', name='thepage'), |
70
bef09338eceb
downloads: add initial handling for downloads
David Soria Parra <dsp@php.net>
parents:
65
diff
changeset
|
11 url(r'^downloads$', 'downloads', name='downloads'), |
bef09338eceb
downloads: add initial handling for downloads
David Soria Parra <dsp@php.net>
parents:
65
diff
changeset
|
12 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
|
13 ) |