summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-03-10 16:28:25 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-03-10 16:28:25 -0300
commit62548d699fb81aa972a0ccca429978ecbd160bff (patch)
tree49350e8e54e787783eddf88d0452c0efff7a6908
parentc5da82e661d38519bdd4f6bcc2524c344372432a (diff)
downloadaskbot-62548d699fb81aa972a0ccca429978ecbd160bff.tar.gz
askbot-62548d699fb81aa972a0ccca429978ecbd160bff.tar.bz2
askbot-62548d699fb81aa972a0ccca429978ecbd160bff.zip
removed the statement making the default site url being askbot.org - makes no sense, still need to add either an auto-test or auto-fix of the url in the settings
-rw-r--r--askbot/conf/site_settings.py1
-rw-r--r--askbot/setup_templates/settings.py.mustache2
2 files changed, 1 insertions, 2 deletions
diff --git a/askbot/conf/site_settings.py b/askbot/conf/site_settings.py
index 8cd73b3d..c64ea952 100644
--- a/askbot/conf/site_settings.py
+++ b/askbot/conf/site_settings.py
@@ -63,7 +63,6 @@ settings.register(
livesettings.StringValue(
QA_SITE_SETTINGS,
'APP_URL',
- default='http://askbot.org',
description=_(
'Base URL for your Q&A forum, must start with '
'http or https'
diff --git a/askbot/setup_templates/settings.py.mustache b/askbot/setup_templates/settings.py.mustache
index 19fd3c61..71ccf0f2 100644
--- a/askbot/setup_templates/settings.py.mustache
+++ b/askbot/setup_templates/settings.py.mustache
@@ -222,7 +222,7 @@ djcelery.setup_loader()
DOMAIN_NAME = '{{domain_name}}'
CSRF_COOKIE_NAME = '{{domain_name}}_csrf'
-CSRF_COOKIE_DOMAIN = DOMAIN_NAME
+CSRF_COOKIE_DOMAIN = DOMAIN_NAME #note that this can be edited
STATIC_ROOT = os.path.join(PROJECT_ROOT, "static")
STATICFILES_DIRS = (os.path.join(ASKBOT_ROOT, 'skins'),)