From 08ef0f8e464fed2fe8ec20b6c53220aecc025f2d Mon Sep 17 00:00:00 2001 From: bnewbold Date: Sat, 3 Feb 2007 23:55:37 -0800 Subject: added .gitignore this commit is just to try and resolve gitweb's beef... --- .gitignore | 5 +++++ bn_django/urls.py | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..354894d --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +photos +media +code +*.pyc +*.pyo 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')), ) -- cgit v1.2.3