]> git.openstreetmap.org Git - osqa.git/commitdiff
Merge pull request #26 from udacity/remove_dj_version
authorJavyer Der Derian <javier@tribalo.net>
Thu, 17 Apr 2014 21:57:23 +0000 (18:57 -0300)
committerJavyer Der Derian <javier@tribalo.net>
Thu, 17 Apr 2014 21:57:23 +0000 (18:57 -0300)
Remove DJANGO_VERSION from the recommended settings

1  2 
settings_local.py.dist

diff --combined settings_local.py.dist
index 896a433d2c874a54191975a3a52d966cba1ab36f,9ac25a581ec7a19bb2d306509ccbee981e864a27..81c1eaaf7093bc065e4bde3b61eb4eaf09736e13
@@@ -3,33 -3,14 +3,33 @@@ import os.pat
  
  SITE_SRC_ROOT = os.path.dirname(__file__)
  LOG_FILENAME = 'django.osqa.log'
 -
 -#for logging
 -import logging
 -logging.basicConfig(
 -    filename=os.path.join(SITE_SRC_ROOT, 'log', LOG_FILENAME),
 -    level=logging.ERROR,
 -    format='%(pathname)s TIME: %(asctime)s MSG: %(filename)s:%(funcName)s:%(lineno)d %(message)s',
 -)
 +LOGGING = {
 +    'version': 1,
 +    'formatters': {
 +        'default': {
 +            'format': '%(pathname)s TIME: %(asctime)s MSG: %(filename)s:%(funcName)s:%(lineno)d %(message)s',
 +        }
 +    },
 +    'handlers': {
 +        'file': {
 +            'level': 'DEBUG',
 +            'class': 'logging.FileHandler',
 +            'formatter': 'default',
 +            'filename': os.path.join(SITE_SRC_ROOT, 'log', LOG_FILENAME),
 +        },
 +    },
 +    'loggers' : {
 +        # ensure that all log entries are propagated to root
 +        'django': { 'propagate': True },
 +        'django.request': { 'propagate': True },
 +        'django.security': { 'propagate': True },
 +        'py.warnings': { 'propagate': True },
 +    },
 +    'root': {
 +        'handlers': ['file'],
 +        'level': 'DEBUG',
 +    },
 +}
  
  #ADMINS and MANAGERS
  ADMINS = ()
@@@ -41,7 -22,7 +41,7 @@@ DEBUG_TOOLBAR_CONFIG = 
  }
  TEMPLATE_DEBUG = DEBUG
  INTERNAL_IPS = ('127.0.0.1',)
 -
 +ALLOWED_HOSTS = ('yourhostname.com',)
  
  DATABASES = {
      'default': {
@@@ -51,7 -32,6 +51,7 @@@
          'PASSWORD': '',
          'HOST': '',
          'PORT': '',
 +        'CONN_MAX_AGE': 600,
      }
  }
  
@@@ -72,7 -52,6 +72,6 @@@ TIME_ZONE = 'America/New_York
  USE_I18N = True
  LANGUAGE_CODE = 'en'
  
- DJANGO_VERSION = 1.1
  OSQA_DEFAULT_SKIN = 'default'
  
  DISABLED_MODULES = ['books', 'recaptcha', 'project_badges']