summaryrefslogtreecommitdiffstats
path: root/settings_local.py.dist
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-11-17 22:14:15 -0500
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-11-17 22:14:15 -0500
commit46e48e400f30bde76a9b21db78f9b727149a3e24 (patch)
treeb1782037766b019b6682c5265f93fe0745c36110 /settings_local.py.dist
parent56bc6d41fa35c8fb06eff8270a986ff5d3f3dc7c (diff)
downloadaskbot-46e48e400f30bde76a9b21db78f9b727149a3e24.tar.gz
askbot-46e48e400f30bde76a9b21db78f9b727149a3e24.tar.bz2
askbot-46e48e400f30bde76a9b21db78f9b727149a3e24.zip
full text search with Sphinx, added session-based greeting message for the first time visitor
Diffstat (limited to 'settings_local.py.dist')
-rw-r--r--settings_local.py.dist27
1 files changed, 19 insertions, 8 deletions
diff --git a/settings_local.py.dist b/settings_local.py.dist
index 685c9fb8..33402d35 100644
--- a/settings_local.py.dist
+++ b/settings_local.py.dist
@@ -29,13 +29,6 @@ EMAIL_USE_TLS=False
#LOCALIZATIONS
TIME_ZONE = 'America/Tijuana'
-#OTHER SETTINGS
-APP_TITLE = u'CNPROG Q&A Forum'
-APP_KEYWORDS = u'CNPROG,forum,community'
-APP_DESCRIPTION = u'Ask and answer questions.'
-APP_INTRO = u'<p>Ask and answer questions, make the world better!</p>'
-APP_COPYRIGHT = 'Copyright CNPROG, 2009. Some rights reserved under creative commons license.'
-
###########################
#
# this will allow running your forum with url like http://site.com/forum
@@ -47,6 +40,16 @@ APP_COPYRIGHT = 'Copyright CNPROG, 2009. Some rights reserved under creative com
#
FORUM_SCRIPT_ALIAS = '' #no leading slash, default = '' empty string
+
+#OTHER SETTINGS
+APP_TITLE = u'CNPROG Q&A Forum'
+APP_KEYWORDS = u'CNPROG,forum,community'
+APP_DESCRIPTION = u'Ask and answer questions.'
+APP_INTRO = u'<p>Ask and answer questions, make the world better!</p>'
+APP_COPYRIGHT = 'Copyright CNPROG, 2009. Some rights reserved under creative commons license.'
+LOGIN_URL = '/%s%s%s' % (FORUM_SCRIPT_ALIAS,'account/','signin/')
+GREETING_URL = LOGIN_URL #may be url of "faq" page or "about", etc
+
USE_I18N = True
LANGUAGE_CODE = 'en'
EMAIL_VALIDATION = 'off' #string - on|off
@@ -62,7 +65,15 @@ EXTERNAL_LEGACY_LOGIN_HOST = 'login.cnprog.com'
EXTERNAL_LEGACY_LOGIN_PORT = 80
EXTERNAL_LEGACY_LOGIN_PROVIDER_NAME = '<span class="orange">CNPROG</span>'
FEEDBACK_SITE_URL = None #None or url
-LOGIN_URL = '/%s%s%s' % (FORUM_SCRIPT_ALIAS,'account/','signin/')
DJANGO_VERSION = 1.1
RESOURCE_REVISION=4
+
+USE_SPHINX_SEARCH = True #if True all SPHINX_* settings are required
+#also sphinx search engine and djangosphinxs app must be installed
+#sample sphinx configuration file is /sphinx/sphinx.conf
+SPHINX_API_VERSION = 0x113 #refer to djangosphinx documentation
+SPHINX_SEARCH_INDICES=('cnprog',) #a tuple of index names remember about a comma after the
+#last item, especially if you have just one :)
+SPHINX_SERVER='localhost'
+SPHINX_PORT=3312