From 0b9212c4b06dbdcb479e66ae7af467ed7540a689 Mon Sep 17 00:00:00 2001
From: Evgeny Fadeev
Date: Sat, 21 Apr 2012 20:06:08 -0400
Subject: fixed url on a badges page
---
askbot/skins/default/templates/badges.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/askbot/skins/default/templates/badges.html b/askbot/skins/default/templates/badges.html
index 62627b05..668de4f8 100644
--- a/askbot/skins/default/templates/badges.html
+++ b/askbot/skins/default/templates/badges.html
@@ -7,7 +7,7 @@
{% trans %}Community gives you awards for your questions, answers and votes.{% endtrans %}
{% trans %}Below is the list of available badges and number
of times each type of badge has been awarded. Have ideas about fun
-badges? Please, give us your feedback
+badges? Please, give us your feedback
{% endtrans %}
--
cgit v1.2.3-1-g7c22
From f4a72b0cd2bd5eacdf4e0b466d7761f8d1a06ee7 Mon Sep 17 00:00:00 2001
From: Evgeny Fadeev
Date: Sun, 29 Apr 2012 16:45:19 -0300
Subject: fixed the cached_db setting for the SESSION_ENGINE setting that is
commented out
---
askbot/setup_templates/settings.py | 2 +-
askbot/setup_templates/settings.py.mustache | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/askbot/setup_templates/settings.py b/askbot/setup_templates/settings.py
index f9920bca..191d13f3 100644
--- a/askbot/setup_templates/settings.py
+++ b/askbot/setup_templates/settings.py
@@ -183,7 +183,7 @@ CACHE_TIMEOUT = 6000
CACHE_PREFIX = 'askbot' #make this unique
CACHE_MIDDLEWARE_ANONYMOUS_ONLY = True
#If you use memcache you may want to uncomment the following line to enable memcached based sessions
-#SESSION_ENGINE = 'django.contrib.sessions.backends.cache_db'
+#SESSION_ENGINE = 'django.contrib.sessions.backends.cached_db'
AUTHENTICATION_BACKENDS = (
'django.contrib.auth.backends.ModelBackend',
diff --git a/askbot/setup_templates/settings.py.mustache b/askbot/setup_templates/settings.py.mustache
index e39231f0..3287fb18 100644
--- a/askbot/setup_templates/settings.py.mustache
+++ b/askbot/setup_templates/settings.py.mustache
@@ -182,7 +182,7 @@ CACHE_TIMEOUT = 6000
CACHE_PREFIX = 'askbot' #make this unique
CACHE_MIDDLEWARE_ANONYMOUS_ONLY = True
#If you use memcache you may want to uncomment the following line to enable memcached based sessions
-#SESSION_ENGINE = 'django.contrib.sessions.backends.cache_db'
+#SESSION_ENGINE = 'django.contrib.sessions.backends.cached_db'
AUTHENTICATION_BACKENDS = (
'django.contrib.auth.backends.ModelBackend',
--
cgit v1.2.3-1-g7c22