1 # -*- coding: utf-8 -*-
 
   4 PROJECT_ROOT = path.realpath(path.dirname(__file__))
 
   9 MAINTENANCE_MODE = False
 
  12     # (u'Marek Stępniowski', 'marek@stepniowski.com'),
 
  13     (u'Łukasz Rekucki', 'lrekucki@gmail.com'),
 
  18 DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
 
  19 DATABASE_NAME = PROJECT_ROOT + '/dev.sqlite'             # Or path to database file if using sqlite3.
 
  20 DATABASE_USER = ''             # Not used with sqlite3.
 
  21 DATABASE_PASSWORD = ''         # Not used with sqlite3.
 
  22 DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
 
  23 DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.
 
  25 # Local time zone for this installation. Choices can be found here:
 
  26 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
 
  27 # although not all choices may be available on all operating systems.
 
  28 # If running in a Windows environment this must be set to the same as your
 
  30 TIME_ZONE = 'Europe/Warsaw Poland'
 
  32 # Language code for this installation. All choices can be found here:
 
  33 # http://www.i18nguy.com/unicode/language-identifiers.html
 
  37 #locale.setlocale(locale.LC_ALL, '')
 
  41 # If you set this to False, Django will make some optimizations so as not
 
  42 # to load the internationalization machinery.
 
  45 # Absolute path to the directory that holds media.
 
  46 # Example: "/home/media/media.lawrence.com/"
 
  47 MEDIA_ROOT = PROJECT_ROOT + '/media/'
 
  48 STATIC_ROOT = PROJECT_ROOT + '/static/'
 
  50 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
 
  51 # trailing slash if there is a path component (optional in other cases).
 
  52 # Examples: "http://media.lawrence.com", "http://example.com/media/"
 
  54 STATIC_URL = '/static/'
 
  56 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
 
  58 # Examples: "http://foo.com/media/", "/media/".
 
  59 ADMIN_MEDIA_PREFIX = '/admin-media/'
 
  61 # Make this unique, and don't share it with anybody.
 
  62 SECRET_KEY = 'ife@x^_lak+x84=lxtr!-ur$5g$+s6xt85gbbm@e_fk6q3r8=+'
 
  64 # List of callables that know how to import templates from various sources.
 
  66     'django.template.loaders.filesystem.load_template_source',
 
  67     'django.template.loaders.app_directories.load_template_source',
 
  68 #     'django.template.loaders.eggs.load_template_source',
 
  71 TEMPLATE_CONTEXT_PROCESSORS = (
 
  72     "django.core.context_processors.auth",
 
  73     "django.core.context_processors.debug",
 
  74     "django.core.context_processors.i18n",
 
  75     "platforma.context_processors.settings",
 
  76     "django.core.context_processors.request",
 
  80 MIDDLEWARE_CLASSES = (
 
  81     'django.middleware.common.CommonMiddleware',
 
  82     'django.contrib.sessions.middleware.SessionMiddleware',
 
  84     'django.contrib.auth.middleware.AuthenticationMiddleware',
 
  85     'django_cas.middleware.CASMiddleware',
 
  87     'django.middleware.doc.XViewMiddleware',
 
  88     'maintenancemode.middleware.MaintenanceModeMiddleware',
 
  91 AUTHENTICATION_BACKENDS = (
 
  92     'django.contrib.auth.backends.ModelBackend',
 
  93     'django_cas.backends.CASBackend',
 
  99     PROJECT_ROOT + '/templates',
 
 104 # Central Auth System
 
 106 ## Set this to where the CAS server lives 
 
 107 # CAS_SERVER_URL = "http://cas.fnp.pl/
 
 108 CAS_ADMIN_PREFIX = "/admin/"
 
 109 CAS_LOGOUT_COMPLETELY = True
 
 111 # CSS and JS files to compress
 
 114          'source_filenames': (
 
 117             'css/jquery.autocomplete.css',
 
 119         'output_filename': 'compressed/detail_styles_?.css',
 
 122         'source_filenames': (
 
 125         'output_filename': 'compressed/listing_styles_?.js',
 
 130     # everything except codemirror
 
 132         'source_filenames': (
 
 133                 'js/jquery-1.4.2.min.js', 
 
 134                 'js/jquery.autocomplete.js', 
 
 135                 'js/jquery.blockui.js',
 
 136                 'js/jquery.elastic.js',
 
 137                 'js/button_scripts.js',
 
 142         'output_filename': 'compressed/detail_scripts_?.js',
 
 145         'source_filenames': (
 
 146                 'js/jquery-1.4.2.min.js', 
 
 149         'output_filename': 'compressed/listing_scripts_?.js',
 
 153 COMPRESS_CSS_FILTERS = None
 
 154 COMPRESS_JS_FILTERS = None
 
 155 COMPRESS_AUTO = False
 
 156 COMPRESS_VERSION = True
 
 157 COMPRESS_VERSIONING = 'compress.versioning.hash.MD5Versioning'
 
 161     'django.contrib.auth',
 
 162     'django.contrib.contenttypes',
 
 163     'django.contrib.sessions',
 
 164     'django.contrib.sites',
 
 165     'django.contrib.admin',
 
 166     'django.contrib.admindocs',
 
 182 TEST_RUNNER = 'django_nose.run_tests'
 
 183 TEST_MODULES = ('wiki', 'toolbar', 'vstorage')
 
 185     '--tests=' + ','.join(TEST_MODULES),
 
 186     '--cover-package=' + ','.join(TEST_MODULES),
 
 193 FILEBROWSER_URL_FILEBROWSER_MEDIA = STATIC_URL + 'filebrowser/'
 
 194 FILEBROWSER_DIRECTORY = 'images/'
 
 195 FILEBROWSER_ADMIN_VERSIONS = []
 
 196 FILEBROWSER_VERSIONS_BASEDIR = 'thumbnails/'
 
 197 FILEBROWSER_DEFAULT_ORDER = "path_relative"
 
 199 # REPOSITORY_PATH = '/Users/zuber/Projekty/platforma/files/books'
 
 202 # Python logging settings
 
 205 log = logging.getLogger('platforma')
 
 206 log.setLevel(logging.DEBUG)
 
 207 ch = logging.StreamHandler()
 
 208 ch.setLevel(logging.DEBUG)
 
 209 formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
 
 210 ch.setFormatter(formatter)
 
 213 # Import localsettings file, which may override settings defined here
 
 215     from localsettings import *