app/django/contrib/flatpages/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Mon, 09 Mar 2009 00:00:13 +0000
changeset 1761 cf39e8705fac
parent 54 03e267d67478
permissions -rw-r--r--
Except and properly handle Errors in view decorator After the next release we can remove all try/except combinations that are not customized and leave the handling of those exceptions to the view decorator. Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

urlpatterns = patterns('django.contrib.flatpages.views',
    (r'^(?P<url>.*)$', 'flatpage'),
)