diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-08-26 18:17:19 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-08-26 18:17:19 +0200 |
commit | cfd0b613480a841bb82c67f0354b44b8d1f5063c (patch) | |
tree | 236b45b1999269d894e30968c65d273dfb929e3b /settings.py | |
parent | 1f770ea47fc4e3f6a9ff68b17aade93b52baaa39 (diff) | |
download | Chimère - projet Saclay-cfd0b613480a841bb82c67f0354b44b8d1f5063c.tar.bz2 Chimère - projet Saclay-cfd0b613480a841bb82c67f0354b44b8d1f5063c.zip |
Change popup management to a custom one
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/settings.py b/settings.py index e78751d..32f6d95 100644 --- a/settings.py +++ b/settings.py @@ -100,6 +100,11 @@ NOMINATIM_URL = 'http://nominatim.openstreetmap.org/search' CHIMERE_THUMBS_SCALE_HEIGHT=250 CHIMERE_THUMBS_SCALE_WIDTH=None +# length of short description +CHIMERE_SHORT_DESC_LENGTH = 400 + +CHIMERE_MODIF_EMAIL = _(u"""Hello, I would like to propose you a modification about this item: """) + ADMINS = ( # ('Your Name', 'your_email@domain.com'), ) @@ -275,8 +280,6 @@ if 'CHIMERE_SHARE_NETWORKS' not in globals(): STATIC_URL + 'chimere/img/facebook.png'), ("Twitter", 'http://twitter.com/home?status=%(text)s %(url)s', STATIC_URL + 'chimere/img/twitter.png'), - ("Identi.ca", 'http://identi.ca/index.php?action=newnotice&status_textarea=%(text)s %(url)s', - STATIC_URL + 'chimere/img/identica.png'), ) if 'OSM_JS_URLS' not in globals(): |