summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbnewbold <bnewbold@manus.(none)>2007-02-03 23:55:37 -0800
committerbnewbold <bnewbold@manus.(none)>2007-02-03 23:55:37 -0800
commit08ef0f8e464fed2fe8ec20b6c53220aecc025f2d (patch)
tree9029a97697e6fdd9133cadac33c701dc0ce4eee9
parent0bd3a227b89e3c6f43b70c9d0ddd85df24d63ff4 (diff)
downloadbnewnet-08ef0f8e464fed2fe8ec20b6c53220aecc025f2d.tar.gz
bnewnet-08ef0f8e464fed2fe8ec20b6c53220aecc025f2d.zip
added .gitignore
this commit is just to try and resolve gitweb's beef...
-rw-r--r--.gitignore5
-rw-r--r--bn_django/urls.py5
2 files changed, 9 insertions, 1 deletions
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')),
)