view original/hgscm/urls.py @ 273:f255cc055e78

Rename docs/news to news/wiki
author David Soria Parra <dsp@php.net>
date Wed, 28 Oct 2009 10:46:45 +0100
parents 4b97017259f9
children
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) }),

    (r'^favicon\.ico$', 'django.views.static.serve', {'document_root': os.path.join(settings.MEDIA_ROOT), 'path': 'images/favicon.ico'}),
    # Uncomment the next line to enable the admin:
    # (r'^admin/(.*)', admin.site.root),
)