web/ldtplatform/settings.py
changeset 852 393bcc75d26a
parent 845 07e203d0d26f
child 853 ca39a8cf816f
--- a/web/ldtplatform/settings.py	Thu Oct 11 19:54:35 2012 +0200
+++ b/web/ldtplatform/settings.py	Sun Oct 14 13:31:34 2012 +0200
@@ -226,6 +226,9 @@
 PUBLIC_GROUP_NAME = 'everyone'
 MAX_USERS_SEARCH = 20
 
+MAX_TAG_LENGTH = 50
+FORCE_LOWERCASE_TAGS = True
+
 SYNTAX = {
           '++' : 'OK',
           '--' : 'KO',
@@ -257,11 +260,6 @@
 if not "LOGIN_ERROR_URL" in locals():
     LOGIN_ERROR_URL = BASE_URL + 'ldtplatform/accounts/login'
 
-if not "GLOBAL_LOG_LEVEL" in locals():
-    GLOBAL_LOG_LEVEL = LOG_LEVEL
-if not "GLOBAL_LOG_HANDLERS" in locals():
-    GLOBAL_LOG_HANDLERS = [{'handler':logging.FileHandler(LOG_FILE), 'format':"%(asctime)s - %(levelname)s : %(message)s"}]
-
 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
 # trailing slash.
 # Examples: "http://foo.com/media/", "/media/".