From 528ade0bfccb149d2ec2e056f1d55b1979ce0785 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Fri, 1 Feb 2013 18:32:47 +0100 Subject: Changes to reflect move from example_project to chimere_example_project --- local_settings.py.pip.sample | 4 ++-- local_settings.py.sample | 6 ++++-- settings.py | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/local_settings.py.pip.sample b/local_settings.py.pip.sample index 6b6cffc..e88acec 100644 --- a/local_settings.py.pip.sample +++ b/local_settings.py.pip.sample @@ -5,6 +5,8 @@ import os +ROOT_URLCONF = 'chimere_example_project.urls' + STATIC_URL = '/static/' CHIMERE_OSM_API_URL = 'api06.dev.openstreetmap.org' # test URL @@ -31,8 +33,6 @@ DATABASES = { }, } -ROOT_URLCONF = 'example_project.urls' - INSTALLED_APPS += ['django_extensions', 'tinymce'] diff --git a/local_settings.py.sample b/local_settings.py.sample index b5939af..0d3252d 100644 --- a/local_settings.py.sample +++ b/local_settings.py.sample @@ -5,6 +5,10 @@ import os +ROOT_URLCONF = 'chimere_example_project.urls' + +STATIC_URL = '/static/' + CHIMERE_OSM_API_URL = 'api06.dev.openstreetmap.org' # test URL CHIMERE_OSM_USER = 'osm_user' CHIMERE_OSM_PASSWORD = 'osm_pass' @@ -28,5 +32,3 @@ DATABASES = { 'PASSWORD': '', }, } - -ROOT_URLCONF = 'example_project.urls' diff --git a/settings.py b/settings.py index b0839d6..431d6b1 100644 --- a/settings.py +++ b/settings.py @@ -140,7 +140,7 @@ MIDDLEWARE_CLASSES = ( 'django.contrib.messages.middleware.MessageMiddleware' ) -ROOT_URLCONF = 'example_project.urls' +ROOT_URLCONF = 'chimere_example_project.urls' TEMPLATE_DIRS = [ # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". -- cgit v1.2.3