app/django/contrib/flatpages/urls.py
author Mario Ferraro <fadinlight@gmail.com>
Mon, 07 Sep 2009 15:20:49 +0200
changeset 2873 4fb030d43575
parent 54 03e267d67478
permissions -rw-r--r--
Scripts to run Shrinksafe during build. The function that runs shrinksafe over JS files has been put to a separate shell file to be run standalone without building if needed.

from django.conf.urls.defaults import *

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