diff options
author | bnewbold <bnewbold@manus.(none)> | 2007-02-03 23:55:37 -0800 |
---|---|---|
committer | bnewbold <bnewbold@manus.(none)> | 2007-02-03 23:55:37 -0800 |
commit | 08ef0f8e464fed2fe8ec20b6c53220aecc025f2d (patch) | |
tree | 9029a97697e6fdd9133cadac33c701dc0ce4eee9 /bn_django/urls.py | |
parent | 0bd3a227b89e3c6f43b70c9d0ddd85df24d63ff4 (diff) | |
download | bnewnet-08ef0f8e464fed2fe8ec20b6c53220aecc025f2d.tar.gz bnewnet-08ef0f8e464fed2fe8ec20b6c53220aecc025f2d.zip |
added .gitignore
this commit is just to try and resolve gitweb's beef...
Diffstat (limited to 'bn_django/urls.py')
-rw-r--r-- | bn_django/urls.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bn_django/urls.py b/bn_django/urls.py index 11c8530..35b9796 100644 --- a/bn_django/urls.py +++ b/bn_django/urls.py @@ -3,7 +3,10 @@ from django.conf.urls.defaults import * urlpatterns = patterns('', # Example: # (r'^bn_django/', include('bn_django.foo.urls')), + (r'^knowledge/', include('bn_django.bn_wiki.urls')), + (r'^code/', include('bn_django.code_browser.urls')), + (r'^photos/', include('bn_django.photo_gallery.urls')), # Uncomment this for admin: -# (r'^admin/', include('django.contrib.admin.urls')), + (r'^admin/', include('django.contrib.admin.urls')), ) |