summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdolfo Fitoria <adolfo.fitoria@gmail.com>2013-01-15 09:52:06 -0600
committerAdolfo Fitoria <adolfo.fitoria@gmail.com>2013-01-15 09:52:06 -0600
commit7ec5b334afd8eed9e625858140898fa387e29ac6 (patch)
treedd6f3ce23bb82bcb873b3d083cda581446f89ff7
parent4cda312624af2d4d8465a64299aa6ba3a852c973 (diff)
downloadaskbot-7ec5b334afd8eed9e625858140898fa387e29ac6.tar.gz
askbot-7ec5b334afd8eed9e625858140898fa387e29ac6.tar.bz2
askbot-7ec5b334afd8eed9e625858140898fa387e29ac6.zip
added ASKBOT_MULTILINGUAL to settings.py template, tests fails if this is not present
-rw-r--r--askbot/setup_templates/settings.py7
-rw-r--r--askbot/setup_templates/settings.py.mustache2
2 files changed, 9 insertions, 0 deletions
diff --git a/askbot/setup_templates/settings.py b/askbot/setup_templates/settings.py
index 237a1280..f2a98559 100644
--- a/askbot/setup_templates/settings.py
+++ b/askbot/setup_templates/settings.py
@@ -273,3 +273,10 @@ TINYMCE_DEFAULT_CONFIG = {
#delayed notifications, time in seconds, 15 mins by default
NOTIFICATION_DELAY_TIME = 60 * 15
+
+GROUP_MESSAGING = {
+ 'BASE_URL_GETTER_FUNCTION': 'askbot.models.user_get_profile_url',
+ 'BASE_URL_PARAMS': {'section': 'messages', 'sort': 'inbox'}
+}
+
+ASKBOT_MULTILINGUAL = False
diff --git a/askbot/setup_templates/settings.py.mustache b/askbot/setup_templates/settings.py.mustache
index bd77e82e..76b40a6e 100644
--- a/askbot/setup_templates/settings.py.mustache
+++ b/askbot/setup_templates/settings.py.mustache
@@ -285,3 +285,5 @@ GROUP_MESSAGING = {
'BASE_URL_GETTER_FUNCTION': 'askbot.models.user_get_profile_url',
'BASE_URL_PARAMS': {'section': 'messages', 'sort': 'inbox'}
}
+
+ASKBOT_MULTILINGUAL = False