diff options
author | hrcerqueira <hrcerqueira@gmail.com> | 2010-03-03 16:05:46 +0000 |
---|---|---|
committer | hrcerqueira <hrcerqueira@gmail.com> | 2010-03-03 16:05:46 +0000 |
commit | ec71d0c85766da2f9c369d2dc92c83d2a25cd22d (patch) | |
tree | 471a930a2e551846902300958dc5435233fd8d0c /settings.py | |
parent | 1d35d25b8ce9f3004eebd10d88757c5921dd686c (diff) | |
download | askbot-ec71d0c85766da2f9c369d2dc92c83d2a25cd22d.tar.gz askbot-ec71d0c85766da2f9c369d2dc92c83d2a25cd22d.tar.bz2 askbot-ec71d0c85766da2f9c369d2dc92c83d2a25cd22d.zip |
Temp login token request (for password recovery and google openid problems)
Utilities to send html emails, a base html email template and template tags to build full urls with domain name and protocol (for html email images and styles)
Email validation now uses an improved algorithm
Fixed a bug in the user message system
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/settings.py b/settings.py index db5d8172..cee1c5c1 100644 --- a/settings.py +++ b/settings.py @@ -28,14 +28,14 @@ MIDDLEWARE_CLASSES = [ 'forum.middleware.anon_user.ConnectToSessionMessagesMiddleware', 'forum.middleware.pagesize.QuestionsPageSizeMiddleware', 'forum.middleware.cancel.CancelActionMiddleware', - 'debug_toolbar.middleware.DebugToolbarMiddleware', - 'recaptcha_django.middleware.ReCaptchaMiddleware', + #'debug_toolbar.middleware.DebugToolbarMiddleware', + #'recaptcha_django.middleware.ReCaptchaMiddleware', 'django.middleware.transaction.TransactionMiddleware', ] TEMPLATE_CONTEXT_PROCESSORS = ( 'django.core.context_processors.request', - 'context.application_settings', + 'forum.context.application_settings', #'django.core.context_processors.i18n', 'forum.user_messages.context_processors.user_messages',#must be before auth 'django.core.context_processors.auth', #this is required for admin |