diff -r 48cfb4388c9a -r 393bcc75d26a web/ldtplatform/settings.py --- 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/".