This removes references from the planner app from django configuration
files.

Signed-off-by: Cleber Rosa <[email protected]>
---
 frontend/settings.py |    2 --
 frontend/urls.py     |    2 --
 2 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/frontend/settings.py b/frontend/settings.py
index 79b2a70..8497cf2 100644
--- a/frontend/settings.py
+++ b/frontend/settings.py
@@ -45,7 +45,6 @@ else:
 # and you need this app to coexist with others
 URL_PREFIX = 'afe/server/'
 TKO_URL_PREFIX = 'new_tko/server/'
-PLANNER_URL_PREFIX = 'planner/server/'
 
 # Local time zone for this installation. Choices can be found here:
 # 
http://www.postgresql.org/docs/8.1/static/datetime-keywords.html#DATETIME-TIMEZONE-SET-TABLE
@@ -110,7 +109,6 @@ TEMPLATE_DIRS = (
 INSTALLED_APPS = (
     'frontend.afe',
     'frontend.tko',
-    'frontend.planner',
     'django.contrib.admin',
     'django.contrib.auth',
     'django.contrib.contenttypes',
diff --git a/frontend/urls.py b/frontend/urls.py
index 5c50f51..097f7bd 100644
--- a/frontend/urls.py
+++ b/frontend/urls.py
@@ -8,7 +8,6 @@ admin.autodiscover()
 
 RE_PREFIX = '^' + settings.URL_PREFIX
 TKO_RE_PREFIX = '^' + settings.TKO_URL_PREFIX
-PLANNER_RE_PREFIX = '^' + settings.PLANNER_URL_PREFIX
 
 handler404 = 'django.views.defaults.page_not_found'
 handler500 = 'frontend.afe.views.handler500'
@@ -18,7 +17,6 @@ urlpatterns = defaults.patterns(
         (RE_PREFIX + r'admin/', defaults.include(admin.site.urls)),
         (RE_PREFIX, defaults.include('frontend.afe.urls')),
         (TKO_RE_PREFIX, defaults.include('frontend.tko.urls')),
-        (PLANNER_RE_PREFIX, defaults.include('frontend.planner.urls')),
         (RE_PREFIX + r'static/(?P<path>.*)', 'django.views.static.serve',
          {'document_root': os.path.join(os.path.dirname(__file__), 'static')}),
     )
-- 
1.7.4.4

_______________________________________________
Autotest mailing list
[email protected]
http://test.kernel.org/cgi-bin/mailman/listinfo/autotest

Reply via email to