1
import os
2
# Django settings for dphoto project.
3
4
DEBUG = True
5
TEMPLATE_DEBUG = DEBUG
6
7
ADMINS = (
8
     ('Milos Kozak', 'milos.kozak@lejmr.com'),
9
)
10
11
MANAGERS = ADMINS
12
13
DATABASE_ENGINE = ''           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
14
DATABASE_NAME = ''             # Or path to database file if using sqlite3.
15
DATABASE_USER = ''             # Not used with sqlite3.
16
DATABASE_PASSWORD = ''         # Not used with sqlite3.
17
DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
18
DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.
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
PROJECT_PATH = os.path.abspath(os.path.dirname(__file__))
26
TIME_ZONE = 'Europe/Prague'
27
28
# Language code for this installation. All choices can be found here:
29
# http://www.i18nguy.com/unicode/language-identifiers.html
30
LANGUAGE_CODE = 'cs'
31
32
SITE_ID = 1
33
34
# If you set this to False, Django will make some optimizations so as not
35
# to load the internationalization machinery.
36
USE_I18N = True
37
38
# Absolute path to the directory that holds media.
39
# Example: "/home/media/media.lawrence.com/"
40
MEDIA_ROOT = os.path.join(PROJECT_PATH,'media')
41
42
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
43
# trailing slash if there is a path component (optional in other cases).
44
# Examples: "http://media.lawrence.com", "http://example.com/media/"
45
MEDIA_URL = '/media/'
46
47
# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
48
# trailing slash.
49
# Examples: "http://foo.com/media/", "/media/".
50
ADMIN_MEDIA_PREFIX = '/media_admin/'
51
52
# Make this unique, and don't share it with anybody.
53
SECRET_KEY = '7l%@45tqtq6@k_&&(dqjt^7^f&mv=7evb*-!$zme7ll^xv+ga+'
54
55
# List of callables that know how to import templates from various sources.
56
TEMPLATE_LOADERS = (
57
    'django.template.loaders.filesystem.load_template_source',
58
    'django.template.loaders.app_directories.load_template_source',
59
#     'django.template.loaders.eggs.load_template_source',
60
)
61
62
MIDDLEWARE_CLASSES = (
63
    'django.middleware.common.CommonMiddleware',
64
    'django.contrib.sessions.middleware.SessionMiddleware',
65
    'django.contrib.auth.middleware.AuthenticationMiddleware',
66
    'dphoto.menu.MyMiddleware',
67
)
68
69
TEMPLATE_CONTEXT_PROCESSORS = (
70
    'dphoto.menu.ContextProcesor',
71
)
72
73
ROOT_URLCONF = 'dphoto.urls'
74
75
TEMPLATE_DIRS = (
76
    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
77
    # Always use forward slashes, even on Windows.
78
    # Don't forget to use absolute paths, not relative paths.
79
    os.path.join(PROJECT_PATH,'templates'),
80
)
81
82
INSTALLED_APPS = (
83
    'django.contrib.auth',
84
    'django.contrib.contenttypes',
85
    'django.contrib.sessions',
86
    'django.contrib.sites',
87
    'django.contrib.webdesign',
88
    'dphoto.gallery'
89
)
90
91
GALLERY_ROOT = os.path.join(PROJECT_PATH,'images','photos/')
92
93
PREVIEWS_ROOT = os.path.join(PROJECT_PATH,'images','previews')
94
PREVIEW_SIZE=(600,500)
95
PREVIEWS_FORCE=False
96
97
THUMBNAILS_ROOT = os.path.join(PROJECT_PATH,'images','thumbnails')
98
THUMBNAIL_SIZE=(100, 100)
99
ROUND_CORNER=True
100
CORNER_RADIUS=10
101
THUMBNAILS_FORCE=False