diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-02-21 00:07:11 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-02-21 00:07:11 +0100 |
commit | caf2a8c9f82f3df650973aaeaf34b078ae80e0bd (patch) | |
tree | 9cd65edf95e8a21496aaa5fac20903a41c7841c6 /example_project | |
parent | 1ebcd848f0e42671550aad5c06ab8719cc8ff9e6 (diff) | |
download | Chimère-caf2a8c9f82f3df650973aaeaf34b078ae80e0bd.tar.bz2 Chimère-caf2a8c9f82f3df650973aaeaf34b078ae80e0bd.zip |
Many changes on templates and styles
Diffstat (limited to 'example_project')
-rw-r--r-- | example_project/settings.py.example | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/example_project/settings.py.example b/example_project/settings.py.example index f7fe697..2956e2b 100644 --- a/example_project/settings.py.example +++ b/example_project/settings.py.example @@ -13,7 +13,15 @@ EMAIL_HOST = 'localhost' STATIC_URL = '/static/' TINYMCE_URL = '/tinymce/' -JQUERY_URL = '/javascript/jquery/jquery.js' +JQUERY_JS_URLS = ('/javascript/jquery/jquery.js', + '/javascript/jquery-ui/jquery-ui.js',) +JQUERY_CSS_URLS = ('/javascript/jquery-ui/css/smoothness/jquery-ui.css', + '/javascript/jquery-ui-themes/base/jquery.ui.all.css') + +OSM_CSS_URLS = ["http://www.openlayers.org/api/theme/default/style.css"] +OSM_JS_URLS = [STATIC_URL + "chimere/js/OpenLayers.js", + "http://www.openstreetmap.org/openlayers/OpenStreetMap.js"] + GPSBABEL = '/usr/bin/gpsbabel' GPSBABEL_OPTIONS = 'simplify,crosstrack,error=0.005k' # simplify with an # error of 5 meters |