-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.py
executable file
·209 lines (168 loc) · 5.66 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
##
##
##
##
##
# Please edit hknsettings.py to set local settings, not this file
##
##
##
##
##
#########################
# HKN-Specific Settings #
#########################
import os
SERVER_ROOT = os.path.join(os.getcwd(), os.path.dirname(__file__))
if SERVER_ROOT.endswith('hkn'):
SERVER_ROOT = SERVER_ROOT + '/'
DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
DATABASE_NAME = SERVER_ROOT + "hkn.db" # Or path to database file if using sqlite3.
CACHE_BACKEND = 'locmem:///'
CACHE_MIDDLEWARE_ANONYMOUS_ONLY = True
EXAMS_USER_MODULE = 'django.contrib.auth.models.User'
EXAM_LOGIN_REQUIRED = False
LOGIN_URL = "/login/"
ACCOUNT_ACTIVATION_DAYS = 7
SESSION_SAVE_EVERY_REQUEST = True
#django-tagging setting
FORCE_LOWERCASE_TAGS = True
# don't change this
IMAGES_PATH = os.path.expanduser("/var/www/hkn/files")
# URL that handles the media served from MEDIA_ROOT.
# Example: "http://media.lawrence.com"
MEDIA_URL = '/files/'
STATIC_PREFIX = '/static/'
STATIC_URL= '/static/'
# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
# trailing slash.
# Examples: "http://foo.com/media/", "/media/".
ADMIN_MEDIA_PREFIX = '/static/admin/'
# django crap
DEBUG = True
TEMPLATE_DEBUG = DEBUG
# Absolute path to the directory that holds media.
# Example: "/home/media/media.lawrence.com/"
MEDIA_ROOT = SERVER_ROOT + "files/"
DJANGO_COMMON = SERVER_ROOT + "django-common/"
ADMINS = (
('HKN Computing Services', '[email protected]'),
)
DEFAULT_FROM_EMAIL = "HKN CompServ <[email protected]>"
EMAIL_HOST = "hkn.eecs.berkeley.edu"
EMAIL_PORT= 25
EMAIL_HOST_USER = ""
EMAIL_HOST_PASSWORD = ""
EMAIL_USE_TLS = True
LOGGING_INTERCEPT_REDIRECTS = True
LOGGING_LOG_SQL = True
LOGGING_SHOW_METRICS = True
LOGGING_OUTPUT_ENABLED = False
MANAGERS = ADMINS
# Local time zone for this installation. Choices can be found here:
# http://www.postgresql.org/docs/8.1/static/datetime-keywords.html#DATETIME-TIMEZONE-SET-TABLE
# although not all variations may be possible on all operating systems.
# If running in a Windows environment this must be set to the same as your
# system time zone.
TIME_ZONE = 'America/Los_Angeles'
# Language code for this installation. All choices can be found here:
# http://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes
# http://blogs.law.harvard.edu/tech/stories/storyReader$15
LANGUAGE_CODE = 'en-us'
# this site's ID
SITE_ID = 1
# If you set this to False, Django will make some optimizations so as not
# to load the internationalization machinery.
USE_I18N = True
LOGIN_REDIRECT_URL = "/"
# Make this unique, and don't share it with anybody.
SECRET_KEY = 'bb39p31)!7=far+)+wxz@mg*5v#g*!35ivju#^5t3l!y*2(76*'
# List of callables that know how to import templates from various sources.
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.load_template_source',
'django.template.loaders.app_directories.load_template_source',
# 'django.template.loaders.eggs.load_template_source',
)
MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.middleware.cache.UpdateCacheMiddleware',
'django.middleware.cache.FetchFromCacheMiddleware',
'hkn.main.middleware.HknAuthMiddleware',
'hkn.main.middleware.LayoutMiddleware',
'django.middleware.doc.XViewMiddleware',
'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware',
'djangologging.middleware.LoggingMiddleware',
'djangodblog.DBLogMiddleware',
)
ROOT_URLCONF = 'hkn.main.urls'
TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
SERVER_ROOT + "templates"
)
TEMPLATE_CONTEXT_PROCESSORS = (
"hkn.main.context_processor.hkn_vars",
"request.context_processor.requests",
#"hkn.gcal.context_processor.gcal",
"django.core.context_processors.auth",
"django.core.context_processors.debug",
"django.core.context_processors.i18n",
"django.core.context_processors.request",
)
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
'django.contrib.markup',
'django.contrib.flatpages',
'django.contrib.webdesign',
'ajaxlist',
'request',
'hkn.info',
'hkn.gcal',
'hkn.event',
'exam',
'hkn.tutor',
'hkn.main',
'hkn.indrel',
'course',
'tagging',
'review',
'photologue',
'registration',
'nice_types',
'djangodblog',
'resume',
'hkn.cand',
'formmailer',
# 'south',
)
AUTHENTICATION_BACKENDS = (
'django_auth_ldap.backend.LDAPBackend',
'django.contrib.auth.backends.ModelBackend',
)
DBLOG_CATCH_404_ERRORS = True
GCAL_ENABLED = False
GCAL_EMAIL = "[email protected]"
GCAL_PASSWORD = "monkey13"
def setup_logger():
import logging
logging.basicConfig(
level = logging.WARNING,
format = '%(asctime)s %(name)s %(module)s:%(lineno)s %(levelname)s %(message)s',
)
EXTRA_INSTALLED_APPS = tuple()
# hknsettings settings will override the above
from hknsettings import *
if __name__.startswith("hkn."):
setup_logger()
if EXTRA_INSTALLED_APPS:
INSTALLED_APPS = tuple(list(INSTALLED_APPS)+list(EXTRA_INSTALLED_APPS))
# make sure SERVER_ROOT ends with hkn/
if not SERVER_ROOT.endswith("hkn/"):
raise Exception, "Your SERVER_ROOT is configured incorrectly in /hkn/settings.py. Make sure it ends with \"hkn/\" (including the final slash)"