From 22bccd294f84a88db45b810cff9aa588246e983c Mon Sep 17 00:00:00 2001 From: Greg Taylor Date: Thu, 26 Apr 2007 02:19:49 +0000 Subject: [PATCH] Minor update. --- urls.py | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/urls.py b/urls.py index 4811fa01bf..728f5f2af9 100755 --- a/urls.py +++ b/urls.py @@ -1,9 +1,14 @@ +# +# File that determines what each URL points to. This uses _Python_ regular +# expressions, not Perl's. +# +# See: +# http://diveintopython.org/regular_expressions/street_addresses.html#re.matching.2.3 +# + from django.conf.urls.defaults import * urlpatterns = patterns('', - # Example: - # (r'^evennia/', include('evennia.apps.foo.urls.foo')), - - # Uncomment this for admin: - (r'^admin/', include('django.contrib.admin.urls')), + # Admin interface + (r'^admin/', include('django.contrib.admin.urls')), )