summaryrefslogtreecommitdiff
path: root/local_settings.py.pip.sample
diff options
context:
space:
mode:
Diffstat (limited to 'local_settings.py.pip.sample')
-rw-r--r--local_settings.py.pip.sample18
1 files changed, 9 insertions, 9 deletions
diff --git a/local_settings.py.pip.sample b/local_settings.py.pip.sample
index e88acec..747427f 100644
--- a/local_settings.py.pip.sample
+++ b/local_settings.py.pip.sample
@@ -3,13 +3,12 @@
# rename this file to local_settings.py and overload settings in this file
-import os
ROOT_URLCONF = 'chimere_example_project.urls'
STATIC_URL = '/static/'
-CHIMERE_OSM_API_URL = 'api06.dev.openstreetmap.org' # test URL
+CHIMERE_OSM_API_URL = 'api06.dev.openstreetmap.org' # test URL
CHIMERE_OSM_USER = 'osm_user'
CHIMERE_OSM_PASSWORD = 'osm_pass'
@@ -33,10 +32,11 @@ DATABASES = {
},
}
-INSTALLED_APPS += ['django_extensions',
- 'tinymce']
-
-TINYMCE_URL = '%stiny_mce/' % STATIC_URL
-JQUERY_JS_URLS = ('%sjquery/jquery.js' % STATIC_URL,
- 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js')
-JQUERY_CSS_URLS = ('https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css')
+# if you want to use tinymce provide an URL or a relative path to find it
+TINYMCE_URL = ''
+JQUERY_JS_URLS = (
+ '%sjquery/jquery.js' % STATIC_URL,
+ 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js')
+JQUERY_CSS_URLS = (
+ 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/'
+ 'base/jquery-ui.css',)