a05bb68ce736bc334d29d2774144c2e34ccf5892
[turniej.git] / turniej / settings.py
1 # -*- coding: utf-8 -*-
2 # Django settings for turniej project.
3 import os.path
4
5 PROJECT_DIR = os.path.abspath(os.path.dirname(__file__))
6
7 DEBUG = False
8 TEMPLATE_DEBUG = DEBUG
9
10 ADMINS = [
11     # ('Your Name', 'your_email@domain.com'),
12 ]
13
14 MANAGERS = ADMINS
15
16 DATABASES = {
17     'default': {
18         'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
19         'NAME': os.path.join(PROJECT_DIR, 'dev.db'), # Or path to database file if using sqlite3.
20         'USER': '',                      # Not used with sqlite3.
21         'PASSWORD': '',                  # Not used with sqlite3.
22         'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
23         'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
24     }
25 }
26
27 # Local time zone for this installation. Choices can be found here:
28 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
29 # although not all choices may be available on all operating systems.
30 # On Unix systems, a value of None will cause Django to use the same
31 # timezone as the operating system.
32 # If running in a Windows environment this must be set to the same as your
33 # system time zone.
34 TIME_ZONE = None
35
36 # Language code for this installation. All choices can be found here:
37 # http://www.i18nguy.com/unicode/language-identifiers.html
38 LANGUAGE_CODE = 'pl'
39
40 SITE_ID = 1
41
42 # If you set this to False, Django will make some optimizations so as not
43 # to load the internationalization machinery.
44 USE_I18N = True
45
46 # If you set this to False, Django will not format dates, numbers and
47 # calendars according to the current locale
48 #USE_L10N = True
49
50 # Absolute filesystem path to the directory that will hold user-uploaded files.
51 # Example: "/home/media/media.lawrence.com/media/"
52 MEDIA_ROOT = os.path.join(PROJECT_DIR, '../media')
53
54 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
55 # trailing slash.
56 # Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
57 MEDIA_URL = '/media/'
58
59 # Absolute path to the directory static files should be collected to.
60 # Don't put anything in this directory yourself; store your static files
61 # in apps' "static/" subdirectories and in STATICFILES_DIRS.
62 # Example: "/home/media/media.lawrence.com/static/"
63 STATIC_ROOT = os.path.join(PROJECT_DIR, '../static')
64
65 # URL prefix for static files.
66 # Example: "http://media.lawrence.com/static/"
67 STATIC_URL = '/static/'
68
69 # URL prefix for admin static files -- CSS, JavaScript and images.
70 # Make sure to use a trailing slash.
71 # Examples: "http://foo.com/static/admin/", "/static/admin/".
72 ADMIN_MEDIA_PREFIX = '/static/admin/'
73
74 # Additional locations of static files
75 STATICFILES_DIRS = (
76     # Put strings here, like "/home/html/static" or "C:/www/django/static".
77     # Always use forward slashes, even on Windows.
78     # Don't forget to use absolute paths, not relative paths.
79
80     os.path.join(PROJECT_DIR, 'static'),
81 )
82
83 # List of finder classes that know how to find static files in
84 # various locations.
85 STATICFILES_FINDERS = (
86     'django.contrib.staticfiles.finders.FileSystemFinder',
87     'django.contrib.staticfiles.finders.AppDirectoriesFinder',
88 #    'django.contrib.staticfiles.finders.DefaultStorageFinder',
89 )
90
91 # List of callables that know how to import templates from various sources.
92 TEMPLATE_LOADERS = [
93     'django.template.loaders.filesystem.Loader',
94     'django.template.loaders.app_directories.Loader',
95 #     'django.template.loaders.eggs.Loader',
96 ]
97
98 MIDDLEWARE_CLASSES = [
99     'django.middleware.common.CommonMiddleware',
100     #'django.contrib.sessions.middleware.SessionMiddleware',
101     #'django.middleware.csrf.CsrfViewMiddleware',
102     #'django.contrib.auth.middleware.AuthenticationMiddleware',
103     #'django.contrib.messages.middleware.MessageMiddleware',
104     'piwik.django.middleware.PiwikMiddleware',
105 ]
106
107 ROOT_URLCONF = 'turniej.urls'
108
109 TEMPLATE_DIRS = [
110     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
111     # Always use forward slashes, even on Windows.
112     # Don't forget to use absolute paths, not relative paths.
113     os.path.join(PROJECT_DIR, 'templates'),
114 ]
115
116 TEMPLATE_CONTEXT_PROCESSORS = (
117     #"django.contrib.auth.context_processors.auth",
118     "django.core.context_processors.debug",
119     "django.core.context_processors.i18n",
120     "django.core.context_processors.media",
121     "django.core.context_processors.static",
122     "django.contrib.messages.context_processors.messages",
123     "django.core.context_processors.request",
124 )
125 TEMPLATE_CONTEXT_PROCESSORS += (
126 )
127
128 INSTALLED_APPS = [
129     #'django.contrib.auth',
130     #'django.contrib.contenttypes',
131     #'django.contrib.sessions',
132     'django.contrib.sites',
133     #'django.contrib.messages',
134     'django.contrib.staticfiles',
135
136     # 'django.contrib.admin',
137     # 'django.contrib.admindocs',
138
139     'south',
140     'piwik.django',
141
142     'fnpdjango',
143     'poetry',
144     'edition1',
145     'edition2',
146 ]
147
148 # A sample logging configuration. The only tangible logging
149 # performed by this configuration is to send an email to
150 # the site admins on every HTTP 500 error.
151 # See http://docs.djangoproject.com/en/dev/topics/logging for
152 # more details on how to customize your logging configuration.
153 LOGGING = {
154     'version': 1,
155     'disable_existing_loggers': False,
156     'handlers': {
157         'mail_admins': {
158             'level': 'ERROR',
159             'class': 'django.utils.log.AdminEmailHandler'
160         }
161     },
162     'loggers': {
163         'django.request': {
164             'handlers': ['mail_admins'],
165             'level': 'ERROR',
166             'propagate': True,
167         },
168     }
169 }
170
171 POETRY_POEMS_FOR_CONTEST = 20
172
173 # Load localsettings, if they exist
174 try:
175     from localsettings import *
176 except ImportError:
177     pass