view hgscm/apps/www/urls.py @ 178:45155fbcee67

changed guide url to /workflow-guide.
author Arne Babenhauserheide <bab@draketo.de>
date Sun, 24 May 2009 16:05:17 +0200
parents 7395ca01d978
children 307dd774a9b6
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'^thepage$', 'thepage', name='thepage'),
    url(r'^downloads$', 'downloads', name='downloads'),
    url(r'^download/(?P<version>.*?)/(?P<platform>.*?)$', 'download', name='download'),
)