[SCM] live-studio branch, master, updated. be51da814fb12d25dce46a7f078a46f5c89bd777

Chris Lamb lamby at debian.org
Fri Jul 30 02:52:32 UTC 2010


The following commit has been merged in the master branch:
commit abfc8e5cfdd689382453d21e4aec8b44002fbdbb
Author: Chris Lamb <lamby at debian.org>
Date:   Wed Jul 28 16:23:07 2010 -0400

    Add empty debug app.
    
    Signed-off-by: Chris Lamb <lamby at debian.org>

diff --git a/config/settings/defaults/apps.py b/config/settings/defaults/apps.py
index 75d515b..0853a9b 100644
--- a/config/settings/defaults/apps.py
+++ b/config/settings/defaults/apps.py
@@ -6,6 +6,7 @@ INSTALLED_APPS = [
     'django.contrib.admin',
 
     'live_studio_www.auth',
+    'live_studio_www.debug',
     'live_studio_www.static',
     'live_studio_www.templatetags',
 ]
diff --git a/config/settings/roles/__init__.py b/live_studio_www/debug/__init__.py
similarity index 100%
copy from config/settings/roles/__init__.py
copy to live_studio_www/debug/__init__.py
diff --git a/live_studio_www/auth/models.py b/live_studio_www/debug/models.py
similarity index 100%
copy from live_studio_www/auth/models.py
copy to live_studio_www/debug/models.py
diff --git a/live_studio_www/debug/urls.py b/live_studio_www/debug/urls.py
new file mode 100644
index 0000000..22e51d1
--- /dev/null
+++ b/live_studio_www/debug/urls.py
@@ -0,0 +1,4 @@
+from django.conf.urls.defaults import *
+
+urlpatterns = patterns('live_studio_www.debug.views',
+)
diff --git a/live_studio_www/urls.py b/live_studio_www/urls.py
index bdb17ff..fe49d33 100644
--- a/live_studio_www/urls.py
+++ b/live_studio_www/urls.py
@@ -5,5 +5,6 @@ admin.autodiscover()
 
 urlpatterns = patterns('',
     (r'^admin/', include(admin.site.urls)),
+    (r'', include('live_studio_www.debug.urls', namespace='debug')),
     (r'', include('live_studio_www.static.urls', namespace='static')),
 )

-- 
live-studio



More information about the debian-live-changes mailing list