view hgscm/urls.py @ 47:5cbab8b1194c

templates: Use "Mercurial SCM" as a title
author David Soria Parra <dsp@php.net>
date Tue, 17 Feb 2009 15:23:21 +0100
parents b3d9cbb33d54
children e8119809dfab
line wrap: on
line source

import os
from django.conf.urls.defaults import *
from django.conf import settings

urlpatterns = patterns('',
    (r'^', include('hgscm.apps.www.urls')),

    (r'^media/(?P<path>.*)$', 'django.views.static.serve', 
        { 'document_root': os.path.join(settings.MEDIA_ROOT) }),

    # Uncomment the next line to enable the admin:
    # (r'^admin/(.*)', admin.site.root),
)