Mercurial > public > sg101
comparison gpp/settings.py @ 219:26ee684c2033
Initial commit of Haystack search integration. See #51.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 05 Jun 2010 20:46:52 +0000 |
parents | 8c1832b9d815 |
children | 423c39ee44e0 |
comparison
equal
deleted
inserted
replaced
218:6dbb8faef085 | 219:26ee684c2033 |
---|---|
126 'django.contrib.messages', | 126 'django.contrib.messages', |
127 'django.contrib.sessions', | 127 'django.contrib.sessions', |
128 'django.contrib.sites', | 128 'django.contrib.sites', |
129 'elsewhere', | 129 'elsewhere', |
130 'tagging', | 130 'tagging', |
131 'haystack', | |
131 'accounts', | 132 'accounts', |
132 'antispam', | 133 'antispam', |
133 'bio', | 134 'bio', |
134 'bulletins', | 135 'bulletins', |
135 'comments', | 136 'comments', |
199 ####################################################################### | 200 ####################################################################### |
200 FORCE_LOWERCASE_TAGS = True | 201 FORCE_LOWERCASE_TAGS = True |
201 MAX_TAG_LENGTH = 50 | 202 MAX_TAG_LENGTH = 50 |
202 | 203 |
203 ####################################################################### | 204 ####################################################################### |
205 # Haystack Search Settings | |
206 ####################################################################### | |
207 HAYSTACK_SITECONF = 'gpp.search_sites' | |
208 HAYSTACK_SEARCH_ENGINE = 'xapian' | |
209 HAYSTACK_XAPIAN_PATH = os.path.join(project_path, 'xapian_index') | |
210 | |
211 | |
212 ####################################################################### | |
204 # GPP Specific Settings | 213 # GPP Specific Settings |
205 ####################################################################### | 214 ####################################################################### |
206 GPP_LOG_LEVEL = 0 | 215 GPP_LOG_LEVEL = 0 |
207 GPP_SEND_EMAIL = local_settings.GPP_SEND_EMAIL # see MAILER_ENQUEUE_MAIL | 216 GPP_SEND_EMAIL = local_settings.GPP_SEND_EMAIL # see MAILER_ENQUEUE_MAIL |
208 GPP_NO_REPLY_EMAIL = 'no_reply' | 217 GPP_NO_REPLY_EMAIL = 'no_reply' |