summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastermain/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastermain/settings.py')
-rw-r--r--bitbake/lib/toaster/toastermain/settings.py70
1 files changed, 41 insertions, 29 deletions
diff --git a/bitbake/lib/toaster/toastermain/settings.py b/bitbake/lib/toaster/toastermain/settings.py
index 1fd649c080..54ab31f302 100644
--- a/bitbake/lib/toaster/toastermain/settings.py
+++ b/bitbake/lib/toaster/toastermain/settings.py
@@ -24,7 +24,6 @@
24import os 24import os
25 25
26DEBUG = True 26DEBUG = True
27TEMPLATE_DEBUG = DEBUG
28 27
29# Set to True to see the SQL queries in console 28# Set to True to see the SQL queries in console
30SQL_DEBUG = False 29SQL_DEBUG = False
@@ -161,12 +160,47 @@ STATICFILES_FINDERS = (
161# Make this unique, and don't share it with anybody. 160# Make this unique, and don't share it with anybody.
162SECRET_KEY = 'NOT_SUITABLE_FOR_HOSTED_DEPLOYMENT' 161SECRET_KEY = 'NOT_SUITABLE_FOR_HOSTED_DEPLOYMENT'
163 162
164# List of callables that know how to import templates from various sources. 163class InvalidString(str):
165TEMPLATE_LOADERS = ( 164 def __mod__(self, other):
166 'django.template.loaders.filesystem.Loader', 165 from django.template.base import TemplateSyntaxError
167 'django.template.loaders.app_directories.Loader', 166 raise TemplateSyntaxError(
168# 'django.template.loaders.eggs.Loader', 167 "Undefined variable or unknown value for: \"%s\"" % other)
169) 168
169TEMPLATES = [
170 {
171 'BACKEND': 'django.template.backends.django.DjangoTemplates',
172 'DIRS': [
173 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
174 # Always use forward slashes, even on Windows.
175 # Don't forget to use absolute paths, not relative paths.
176 ],
177 'OPTIONS': {
178 'context_processors': [
179 # Insert your TEMPLATE_CONTEXT_PROCESSORS here or use this
180 # list if you haven't customized them:
181 'django.contrib.auth.context_processors.auth',
182 'django.template.context_processors.debug',
183 'django.template.context_processors.i18n',
184 'django.template.context_processors.media',
185 'django.template.context_processors.static',
186 'django.template.context_processors.tz',
187 'django.contrib.messages.context_processors.messages',
188 # Custom
189 'django.core.context_processors.request',
190 'toastergui.views.managedcontextprocessor',
191
192 ],
193 'loaders': [
194 # List of callables that know how to import templates from various sources.
195 'django.template.loaders.filesystem.Loader',
196 'django.template.loaders.app_directories.Loader',
197 #'django.template.loaders.eggs.Loader',
198 ],
199 'string_if_invalid': InvalidString("%s"),
200 'debug': DEBUG,
201 },
202 },
203]
170 204
171MIDDLEWARE_CLASSES = ( 205MIDDLEWARE_CLASSES = (
172 'django.middleware.common.CommonMiddleware', 206 'django.middleware.common.CommonMiddleware',
@@ -203,22 +237,6 @@ ROOT_URLCONF = 'toastermain.urls'
203# Python dotted path to the WSGI application used by Django's runserver. 237# Python dotted path to the WSGI application used by Django's runserver.
204WSGI_APPLICATION = 'toastermain.wsgi.application' 238WSGI_APPLICATION = 'toastermain.wsgi.application'
205 239
206TEMPLATE_DIRS = (
207 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
208 # Always use forward slashes, even on Windows.
209 # Don't forget to use absolute paths, not relative paths.
210)
211
212TEMPLATE_CONTEXT_PROCESSORS = ('django.contrib.auth.context_processors.auth',
213 'django.core.context_processors.debug',
214 'django.core.context_processors.i18n',
215 'django.core.context_processors.media',
216 'django.core.context_processors.static',
217 'django.core.context_processors.tz',
218 'django.contrib.messages.context_processors.messages',
219 "django.core.context_processors.request",
220 'toastergui.views.managedcontextprocessor',
221 )
222 240
223INSTALLED_APPS = ( 241INSTALLED_APPS = (
224 'django.contrib.auth', 242 'django.contrib.auth',
@@ -348,10 +366,4 @@ connection_created.connect(activate_synchronous_off)
348# 366#
349 367
350 368
351class InvalidString(str):
352 def __mod__(self, other):
353 from django.template.base import TemplateSyntaxError
354 raise TemplateSyntaxError(
355 "Undefined variable or unknown value for: \"%s\"" % other)
356 369
357TEMPLATE_STRING_IF_INVALID = InvalidString("%s")