1 # -*- coding: utf-8 -*-
 
   4 PROJECT_ROOT = path.realpath(path.dirname(__file__))
 
  10     (u'Marek StÄ™pniowski', 'marek@stepniowski.com'),
 
  15 DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
 
  16 DATABASE_NAME = PROJECT_ROOT + '/dev.sqlite'             # Or path to database file if using sqlite3.
 
  17 DATABASE_USER = ''             # Not used with sqlite3.
 
  18 DATABASE_PASSWORD = ''         # Not used with sqlite3.
 
  19 DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
 
  20 DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.
 
  22 # Local time zone for this installation. Choices can be found here:
 
  23 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
 
  24 # although not all choices may be available on all operating systems.
 
  25 # If running in a Windows environment this must be set to the same as your
 
  27 TIME_ZONE = 'Europe/Warsaw Poland'
 
  29 # Language code for this installation. All choices can be found here:
 
  30 # http://www.i18nguy.com/unicode/language-identifiers.html
 
  35 # If you set this to False, Django will make some optimizations so as not
 
  36 # to load the internationalization machinery.
 
  39 # Absolute path to the directory that holds media.
 
  40 # Example: "/home/media/media.lawrence.com/"
 
  41 MEDIA_ROOT = PROJECT_ROOT + '/media/'
 
  42 STATIC_ROOT = PROJECT_ROOT + '/static/'
 
  44 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
 
  45 # trailing slash if there is a path component (optional in other cases).
 
  46 # Examples: "http://media.lawrence.com", "http://example.com/media/"
 
  48 STATIC_URL = '/static/'
 
  50 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
 
  52 # Examples: "http://foo.com/media/", "/media/".
 
  53 ADMIN_MEDIA_PREFIX = '/admin-media/'
 
  55 # Make this unique, and don't share it with anybody.
 
  56 SECRET_KEY = 'ife@x^_lak+x84=lxtr!-ur$5g$+s6xt85gbbm@e_fk6q3r8=+'
 
  58 # List of callables that know how to import templates from various sources.
 
  60     'django.template.loaders.filesystem.load_template_source',
 
  61     'django.template.loaders.app_directories.load_template_source',
 
  62 #     'django.template.loaders.eggs.load_template_source',
 
  65 TEMPLATE_CONTEXT_PROCESSORS = (
 
  66     "django.core.context_processors.auth",
 
  67     "django.core.context_processors.debug",
 
  68     "django.core.context_processors.i18n",
 
  69     "explorer.context_processors.settings",
 
  70     "django.core.context_processors.request",
 
  74 MIDDLEWARE_CLASSES = (
 
  75     'django.middleware.common.CommonMiddleware',
 
  76     'django.contrib.sessions.middleware.SessionMiddleware',
 
  77     'django.contrib.auth.middleware.AuthenticationMiddleware',
 
  78     'explorer.middleware.EditorSettingsMiddleware',
 
  79     'django.middleware.doc.XViewMiddleware',
 
  85     PROJECT_ROOT + '/templates'
 
  88 # CSS and JS files to compress
 
  91 #         'source_filenames': ('css/master.css', 'css/jquery.date_input.css', 'css/jquery.countdown.css',),
 
  92 #         'output_filename': 'css/all.min.css',
 
  98 #         'source_filenames': ('js/jquery.js', 'js/jquery.date_input.js', 'js/jquery.date_input-pl.js',
 
  99 #             'js/jquery.countdown.js', 'js/jquery.countdown-pl.js',),
 
 100 #         'output_filename': 'js/all.min.js',
 
 104 # COMPRESS_CSS_FILTERS = None
 
 107     'django.contrib.auth',
 
 108     'django.contrib.contenttypes',
 
 109     'django.contrib.sessions',
 
 110     'django.contrib.sites',
 
 111     'django.contrib.admin',
 
 112     'django.contrib.admindocs',
 
 119 # REPOSITORY_PATH = '/Users/zuber/Projekty/platforma/files/books'
 
 121 EDITOR_COOKIE_NAME = 'options'
 
 122 EDITOR_DEFAULT_SETTINGS = {
 
 124         {'name': 'htmleditor', 'ratio': 0.5},
 
 125         {'name': 'gallery', 'ratio': 0.5}
 
 130     from localsettings import *