Skip to content

Commit

Permalink
frontend: remove planner from django configuration files
Browse files Browse the repository at this point in the history
This removes references from the planner app from django
configuration files.

Signed-off-by: Cleber Rosa <[email protected]>
  • Loading branch information
clebergnu committed Jun 16, 2011
1 parent dc25be0 commit 498ab6d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions frontend/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
# 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
Expand Down Expand Up @@ -110,7 +109,6 @@
INSTALLED_APPS = (
'frontend.afe',
'frontend.tko',
'frontend.planner',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
Expand Down
2 changes: 0 additions & 2 deletions frontend/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

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'
Expand All @@ -18,7 +17,6 @@
(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')}),
)
Expand Down

0 comments on commit 498ab6d

Please sign in to comment.