1 # -*- coding: utf-8 -*-
 
   2 # Django settings for wolnelektury project.
 
   5 PROJECT_DIR = path.abspath(path.dirname(__file__))
 
   9 MAINTENANCE_MODE = False
 
  12     # ('Your Name', 'your_email@domain.com'),
 
  19         'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
 
  20         'NAME': path.join(PROJECT_DIR, 'dev.db'), # Or path to database file if using sqlite3.
 
  21         'USER': '',                      # Not used with sqlite3.
 
  22         'PASSWORD': '',                  # Not used with sqlite3.
 
  23         'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
 
  28 # Local time zone for this installation. Choices can be found here:
 
  29 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
 
  30 # although not all choices may be available on all operating systems.
 
  31 # If running in a Windows environment this must be set to the same as your
 
  33 TIME_ZONE = 'Europe/Warsaw'
 
  35 # Language code for this installation. All choices can be found here:
 
  36 # http://www.i18nguy.com/unicode/language-identifiers.html
 
  41 LANGUAGES = tuple(sorted([
 
  49     ('uk', u'українська'),
 
  52 ], key=lambda x: x[0]))
 
  57 # If you set this to False, Django will make some optimizations so as not
 
  58 # to load the internationalization machinery.
 
  61 # Absolute path to the directory that holds media.
 
  62 # Example: "/home/media/media.lawrence.com/"
 
  63 MEDIA_ROOT = path.join(PROJECT_DIR, '../media/')
 
  64 STATIC_ROOT = path.join(PROJECT_DIR, 'static/')
 
  65 SEARCH_INDEX = path.join(MEDIA_ROOT, 'search/')
 
  67 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
 
  68 # trailing slash if there is a path component (optional in other cases).
 
  69 # Examples: "http://media.lawrence.com", "http://example.com/media/"
 
  71 STATIC_URL = '/static/'
 
  73 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
 
  75 # Examples: "http://foo.com/media/", "/media/".
 
  76 ADMIN_MEDIA_PREFIX = '/admin-media/'
 
  78 # Make this unique, and don't share it with anybody.
 
  80 # List of callables that know how to import templates from various sources.
 
  82     'django.template.loaders.filesystem.Loader',
 
  83     'django.template.loaders.app_directories.Loader',
 
  84 #     'django.template.loaders.eggs.Loader',
 
  87 TEMPLATE_CONTEXT_PROCESSORS = (
 
  88     'django.contrib.auth.context_processors.auth',
 
  89     'django.core.context_processors.debug',
 
  90     'django.core.context_processors.i18n',
 
  91     'django.core.context_processors.media',
 
  92     'django.core.context_processors.request',
 
  93     'wolnelektury.context_processors.extra_settings',
 
  94     'search.context_processors.search_form',
 
  97 MIDDLEWARE_CLASSES = [
 
  98     'django.middleware.cache.UpdateCacheMiddleware',
 
  99     'django.middleware.common.CommonMiddleware',
 
 100     'django.contrib.sessions.middleware.SessionMiddleware',
 
 101     'django.contrib.auth.middleware.AuthenticationMiddleware',
 
 102     'django.middleware.doc.XViewMiddleware',
 
 103     'pagination.middleware.PaginationMiddleware',
 
 104     'django.middleware.locale.LocaleMiddleware',
 
 105     'piwik.django.middleware.PiwikMiddleware',
 
 106     'maintenancemode.middleware.MaintenanceModeMiddleware',
 
 107     'django.middleware.common.CommonMiddleware',
 
 108     'django.middleware.cache.FetchFromCacheMiddleware',
 
 111 ROOT_URLCONF = 'wolnelektury.urls'
 
 114     path.join(PROJECT_DIR, 'templates'),
 
 117 LOGIN_URL = '/uzytkownicy/zaloguj/'
 
 119 LOGIN_REDIRECT_URL = '/'
 
 123     'django.contrib.auth',
 
 124     'django.contrib.contenttypes',
 
 125     'django.contrib.sessions',
 
 126     'django.contrib.sites',
 
 127     'django.contrib.admin',
 
 128     'django.contrib.admindocs',
 
 166         'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
 
 172         'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
 
 179         'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
 
 180         'LOCATION': path.join(PROJECT_DIR, 'django_cache/'),
 
 185 CACHE_MIDDLEWARE_ANONYMOUS_ONLY=True
 
 187 # CSS and JavaScript file groups
 
 190         #'source_filenames': ('css/master.css', 'css/jquery.autocomplete.css', 'css/master.plain.css', 'css/facelist_2-0.css',),
 
 191         'source_filenames': [
 
 192             'css/jquery.countdown.css', 
 
 199             'css/picture_box.css',
 
 205             'css/social/shelf_tags.css',
 
 206             'css/ui-lightness/jquery-ui-1.8.16.custom.css',
 
 208         'output_filename': 'css/all.min?.css',
 
 211         'source_filenames': [
 
 214         'output_filename': 'css/ie.min?.css',
 
 217         'source_filenames': [
 
 219             'css/master.book.css',
 
 221         'output_filename': 'css/book.min?.css',
 
 224         'source_filenames': [
 
 225             'jplayer/jplayer.blue.monday.css', 
 
 227         'output_filename': 'css/player.min?.css',
 
 230         'source_filenames': ('css/simple.css',),
 
 231         'output_filename': 'css/simple.min?.css',
 
 237         'source_filenames': (
 
 238             'js/jquery.cycle.min.js',
 
 239             'js/jquery.jqmodal.js',
 
 241             'js/jquery.countdown.js', 'js/jquery.countdown-pl.js',
 
 242             'js/jquery.countdown-de.js', 'js/jquery.countdown-uk.js',
 
 243             'js/jquery.countdown-es.js', 'js/jquery.countdown-lt.js',
 
 244             'js/jquery.countdown-ru.js', 'js/jquery.countdown-fr.js',
 
 246             'js/jquery-ui-1.8.16.custom.min.js',
 
 256         'output_filename': 'js/base?.min.js',
 
 259         'source_filenames': [
 
 260             'jplayer/jquery.jplayer.min.js', 
 
 261             'jplayer/jplayer.playlist.min.js', 
 
 264         'output_filename': 'js/player.min?.js',
 
 267         'source_filenames': ('js/jquery.eventdelegation.js', 'js/jquery.scrollto.js', 'js/jquery.highlightfade.js', 'js/book.js',),
 
 268         'output_filename': 'js/book?.min.js',
 
 271         'source_filenames': ('js/ierange-m2.js',),
 
 272         'output_filename': 'js/book_ie?.min.js',
 
 277 COMPRESS_VERSION = True
 
 278 COMPRESS_CSS_FILTERS = None
 
 280 THUMBNAIL_QUALITY = 95
 
 281 THUMBNAIL_EXTENSION = 'png'
 
 283 THUMBNAIL_PROCESSORS = (
 
 285     'sorl.thumbnail.processors.colorspace',
 
 286     'sorl.thumbnail.processors.autocrop',
 
 287     'sorl.thumbnail.processors.scale_and_crop',
 
 288     'sorl.thumbnail.processors.filters',
 
 290     'sponsors.processors.add_padding',
 
 293 TRANSLATION_REGISTRY = "wolnelektury.translation"
 
 296 # seconds until a changes appears in the changes api
 
 299 # limit number of filtering tags
 
 302 NO_BUILD_EPUB = False
 
 306 NO_SEARCH_INDEX = False
 
 308 ALL_EPUB_ZIP = 'wolnelektury_pl_epub'
 
 309 ALL_PDF_ZIP = 'wolnelektury_pl_pdf'
 
 310 ALL_MOBI_ZIP = 'wolnelektury_pl_mobi'
 
 312 CATALOGUE_DEFAULT_LANGUAGE = 'pol'
 
 313 PUBLISH_PLAN_FEED = 'http://redakcja.wolnelektury.pl/documents/track/editor-proofreading/'
 
 315 PAGINATION_INVALID_PAGE_RAISES_404 = True
 
 318 djcelery.setup_loader()
 
 320 BROKER_BACKEND = "djkombu.transport.DatabaseTransport"
 
 321 BROKER_HOST = "localhost"
 
 323 BROKER_USER = "guest"
 
 324 BROKER_PASSWORD = "guest"
 
 327 CELERY_EAGER_PROPAGATES_EXCEPTIONS = True
 
 329 # Load localsettings, if they exist
 
 331     from localsettings import *