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')), )