refactor catalogue to separate app,
[redakcja.git] / redakcja / settings / common.py
1 # -*- coding: utf-8 -*-
2 from __future__ import absolute_import
3 import os.path
4
5 PROJECT_ROOT = os.path.realpath(os.path.dirname(os.path.dirname(__file__)))
6
7 DEBUG = False
8 TEMPLATE_DEBUG = DEBUG
9
10 MAINTENANCE_MODE = False
11
12 ADMINS = (
13     # (u'Marek Stępniowski', 'marek@stepniowski.com'),
14     # (u'Łukasz Rekucki', 'lrekucki@gmail.com'),
15     (u'Radek Czajka', 'radoslaw.czajka@nowoczesnapolska.org.pl'),
16 )
17
18 MANAGERS = ADMINS
19
20 # Local time zone for this installation. Choices can be found here:
21 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
22 # although not all choices may be available on all operating systems.
23 # If running in a Windows environment this must be set to the same as your
24 # system time zone.
25 TIME_ZONE = 'Europe/Warsaw'
26
27 # Language code for this installation. All choices can be found here:
28 # http://www.i18nguy.com/unicode/language-identifiers.html
29 LANGUAGE_CODE = 'pl'
30
31 #import locale
32 #locale.setlocale(locale.LC_ALL, '')
33
34 SITE_ID = 1
35
36 # If you set this to False, Django will make some optimizations so as not
37 # to load the internationalization machinery.
38 USE_I18N = True
39 USE_L10N = True
40
41
42 # Absolute path to the directory that holds media.
43 # Example: "/home/media/media.lawrence.com/"
44 MEDIA_ROOT = PROJECT_ROOT + '/media/dynamic'
45 STATIC_ROOT = PROJECT_ROOT + '/static/'
46
47 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
48 # trailing slash if there is a path component (optional in other cases).
49 # Examples: "http://media.lawrence.com", "http://example.com/media/"
50 MEDIA_URL = '/media/dynamic/'
51 STATIC_URL = '/media/static/'
52
53 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
54 # trailing slash.
55 # Examples: "http://foo.com/media/", "/media/".
56 ADMIN_MEDIA_PREFIX = '/media/admin-media/'
57
58 # Make this unique, and don't share it with anybody.
59 SECRET_KEY = 'ife@x^_lak+x84=lxtr!-ur$5g$+s6xt85gbbm@e_fk6q3r8=+'
60 SESSION_COOKIE_NAME = "redakcja_sessionid"
61
62 # List of callables that know how to import templates from various sources.
63 TEMPLATE_LOADERS = (
64     'django.template.loaders.filesystem.Loader',
65     'django.template.loaders.app_directories.Loader',
66 )
67
68 TEMPLATE_CONTEXT_PROCESSORS = (
69     "django.contrib.auth.context_processors.auth",
70     "django.core.context_processors.debug",
71     "django.core.context_processors.i18n",
72     "redakcja.context_processors.settings", # this is instead of media
73     'django.core.context_processors.csrf',
74     "django.core.context_processors.request",
75 )
76
77
78 MIDDLEWARE_CLASSES = (
79     'django.middleware.common.CommonMiddleware',
80     'django.middleware.csrf.CsrfViewMiddleware',
81     'django.contrib.sessions.middleware.SessionMiddleware',
82
83     'django.contrib.auth.middleware.AuthenticationMiddleware',
84
85     'django.middleware.doc.XViewMiddleware',
86     'pagination.middleware.PaginationMiddleware',
87     'maintenancemode.middleware.MaintenanceModeMiddleware',
88 )
89
90 AUTHENTICATION_BACKENDS = (
91     'django.contrib.auth.backends.ModelBackend',
92 )
93
94 ROOT_URLCONF = 'redakcja.urls'
95
96 TEMPLATE_DIRS = (
97     PROJECT_ROOT + '/templates',
98 )
99
100 FIREPYTHON_LOGGER_NAME = "fnp"
101
102 INSTALLED_APPS = (
103     'django.contrib.auth',
104     'django.contrib.contenttypes',
105     'django.contrib.sessions',
106     'django.contrib.sites',
107     'django.contrib.admin',
108     'django.contrib.admindocs',
109     'django.contrib.comments',
110
111     'compress',
112     'south',
113     'sorl.thumbnail',
114     'filebrowser',
115     'pagination',
116     'gravatar',
117
118     'catalogue',
119     'dvcs',
120     'wiki',
121     'toolbar',
122     'apiclient',
123 )
124
125 LOGIN_REDIRECT_URL = '/documents/user'
126
127
128 FILEBROWSER_URL_FILEBROWSER_MEDIA = STATIC_URL + 'filebrowser/'
129 FILEBROWSER_DIRECTORY = 'images/'
130 FILEBROWSER_ADMIN_VERSIONS = []
131 FILEBROWSER_VERSIONS_BASEDIR = 'thumbnails/'
132 FILEBROWSER_DEFAULT_ORDER = "path_relative"
133
134 # REPOSITORY_PATH = '/Users/zuber/Projekty/platforma/files/books'
135 IMAGE_DIR = 'images'
136
137
138 WL_API_CONFIG = {
139     "URL": "http://localhost:7000/api/",
140     "AUTH_REALM": "WL API",
141     "AUTH_USER": "platforma",
142     "AUTH_PASSWD": "platforma",
143 }
144
145 SHOW_APP_VERSION = False
146
147 try:
148     from redakcja.settings.compress import *
149 except ImportError:
150     pass
151