projects
/
ais.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
7542b33
)
Changed timezone to GMT
author
Jean-Michel Nirgal Vourgère
<jmv@nirgal.com>
Wed, 5 Jan 2011 17:07:26 +0000
(17:07 +0000)
committer
Jean-Michel Nirgal Vourgère
<jmv@nirgal.com>
Wed, 5 Jan 2011 17:07:26 +0000
(17:07 +0000)
Added base site url
bin/djais/settings.py
patch
|
blob
|
history
diff --git
a/bin/djais/settings.py
b/bin/djais/settings.py
index db690b8813fe7b721c0763a200f5965947d7785d..a89389709d0a2ee16d806072bcb4871fb068e443 100644
(file)
--- a/
bin/djais/settings.py
+++ b/
bin/djais/settings.py
@@
-26,7
+26,7
@@
DATABASE_PORT = '' # Set to empty string for default. Not used with
# although not all choices may be available on all operating systems.
# If running in a Windows environment this must be set to the same as your
# system time zone.
# although not all choices may be available on all operating systems.
# If running in a Windows environment this must be set to the same as your
# system time zone.
-TIME_ZONE = '
Europe/Paris
'
+TIME_ZONE = '
GMT
'
# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
@@
-84,3
+84,14
@@
INSTALLED_APPS = (
# 'django.contrib.sites',
'ais.djais',
)
# 'django.contrib.sites',
'ais.djais',
)
+
+TEMPLATE_CONTEXT_PROCESSORS = (
+ "django.contrib.auth.context_processors.auth",
+ "django.core.context_processors.debug",
+ "django.core.context_processors.i18n",
+ "django.core.context_processors.media",
+ "django.core.context_processors.request", # Added by Nirgal
+ "django.contrib.messages.context_processors.messages",
+)
+
+AIS_BASE_URL='https://ais.nirgal.com'