1 # Django settings for wolnelektury project.
 
   4 PROJECT_DIR = path.abspath(path.dirname(__file__))
 
  10     # ('Your Name', 'your_email@domain.com'),
 
  15 DATABASE_ENGINE = 'sqlite3'    # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
 
  16 DATABASE_NAME = path.join(PROJECT_DIR, 'dev.db')  # 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 = path.join(PROJECT_DIR, '../media')
 
  42 STATIC_ROOT = path.join(PROJECT_DIR, '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.
 
  57 # List of callables that know how to import templates from various sources.
 
  59     'django.template.loaders.filesystem.load_template_source',
 
  60     'django.template.loaders.app_directories.load_template_source',
 
  61 #     'django.template.loaders.eggs.load_template_source',
 
  64 TEMPLATE_CONTEXT_PROCESSORS = [
 
  65     'django.core.context_processors.auth',
 
  66     'django.core.context_processors.debug',
 
  67     'django.core.context_processors.i18n',
 
  68     'django.core.context_processors.media',
 
  69     'django.core.context_processors.request',
 
  72 MIDDLEWARE_CLASSES = [
 
  73     'django.middleware.common.CommonMiddleware',
 
  74     'django.contrib.sessions.middleware.SessionMiddleware',
 
  75     'django.contrib.auth.middleware.AuthenticationMiddleware',
 
  76     'django.middleware.doc.XViewMiddleware',
 
  77     'pagination.middleware.PaginationMiddleware',
 
  80 ROOT_URLCONF = 'wolnelektury.urls'
 
  83     path.join(PROJECT_DIR, 'templates'),
 
  86 LOGIN_URL = '/uzytkownicy/zaloguj/'
 
  88 LOGIN_REDIRECT_URL = '/'
 
  92     'django.contrib.auth',
 
  93     'django.contrib.contenttypes',
 
  94     'django.contrib.sessions',
 
  95     'django.contrib.sites',
 
  96     'django.contrib.admin',
 
  97     'django.contrib.admindocs',
 
 110 CACHE_BACKEND = 'locmem:///?max_entries=3000'
 
 112 # CSS and JavaScript file groups
 
 115         'source_filenames': ('css/master.css', 'css/jquery.autocomplete.css', 'css/master.plain.css', 'css/sponsors.css',),
 
 116         'output_filename': 'css/all.min.css',
 
 119         'source_filenames': ('css/master.book.css',),
 
 120         'output_filename': 'css/book.min.css',
 
 126         'source_filenames': ('js/jquery.js',),
 
 127         'output_filename': 'js/jquery.min.js',
 
 130         'source_filenames': ('js/jquery.autocomplete.js', 'js/jquery.form.js', 
 
 131             'js/jquery.jqmodal.js', 'js/jquery.labelify.js', 'js/catalogue.js',),
 
 132         'output_filename': 'js/all.min.js',
 
 135         'source_filenames': ('js/jquery.eventdelegation.js', 'js/jquery.scrollto.js', 'js/jquery.highlightfade.js', 'js/book.js',),
 
 136         'output_filename': 'js/book.min.js',
 
 140 COMPRESS_CSS_FILTERS = None
 
 143 # Load localsettings, if they exist
 
 145     from localsettings import *