X-Git-Url: http://mmka.chem.univ.gda.pl/gitweb/?a=blobdiff_plain;f=plgng%2Fsettings.py;h=70576ac464bcda3c40495ad49bb4ca017276a111;hb=HEAD;hp=797169029785d715e103df83d9df0916d7887d94;hpb=52e1db7e850a63b8271e348c487bd60853ed73e8;p=qcg-portal.git diff --git a/plgng/settings.py b/plgng/settings.py index 7971690..70576ac 100644 --- a/plgng/settings.py +++ b/plgng/settings.py @@ -1,68 +1,19 @@ -""" -Django settings for plgng project. +from settings_common import * -For more information on this file, see -https://docs.djangoproject.com/en/1.7/topics/settings/ - -For the full list of settings and their values, see -https://docs.djangoproject.com/en/1.7/ref/settings/ -""" - -# Build paths inside the project like this: os.path.join(BASE_DIR, ...) -import os - -import django.conf.global_settings as defaults - - -BASE_DIR = os.path.dirname(os.path.dirname(__file__)) - - -# Quick-start development settings - unsuitable for production -# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/ - -# SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = 'x%_rlnhibsxum1m5o_c5ac@p0nw+1r0&#k!v3+52)s(d=2$5y&' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True - TEMPLATE_DEBUG = True -ALLOWED_HOSTS = [] - - -# Application definition - -INSTALLED_APPS = ( - 'grappelli', - 'django.contrib.admin', - 'django.contrib.auth', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.messages', - 'django.contrib.staticfiles', - 'django.contrib.webdesign', - 'qcg', -) +PROXY_FILE = os.path.join(BASE_DIR, '../proxy') -MIDDLEWARE_CLASSES = ( - 'django.contrib.sessions.middleware.SessionMiddleware', - 'django.middleware.common.CommonMiddleware', - 'django.middleware.csrf.CsrfViewMiddleware', - 'django.contrib.auth.middleware.AuthenticationMiddleware', - 'django.contrib.auth.middleware.SessionAuthenticationMiddleware', - 'django.contrib.messages.middleware.MessageMiddleware', - 'django.middleware.clickjacking.XFrameOptionsMiddleware', -) -TEMPLATE_CONTEXT_PROCESSORS = defaults.TEMPLATE_CONTEXT_PROCESSORS + ( - 'django.core.context_processors.request', +INSTALLED_APPS += ( + 'sslserver', + 'debug_toolbar' ) -ROOT_URLCONF = 'plgng.urls' - -WSGI_APPLICATION = 'plgng.wsgi.application' - # Database # https://docs.djangoproject.com/en/1.7/ref/settings/#databases @@ -74,21 +25,4 @@ DATABASES = { } } -# Internationalization -# https://docs.djangoproject.com/en/1.7/topics/i18n/ - -LANGUAGE_CODE = 'pl' - -TIME_ZONE = 'Europe/Warsaw' - -USE_I18N = True - -USE_L10N = True - -USE_TZ = True - - -# Static files (CSS, JavaScript, Images) -# https://docs.djangoproject.com/en/1.7/howto/static-files/ - -STATIC_URL = '/static/' +DEBUG_TOOLBAR_CONFIG = {'JQUERY_URL': '/static/qcg/jquery/jquery.min.js'}