diff options
author | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2009-08-05 22:49:44 -0400 |
---|---|---|
committer | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2009-08-05 22:49:44 -0400 |
commit | 026541b6a70cd183d49ffec205232cfb0b205b25 (patch) | |
tree | 53397ba83b39bbfc9d567840b68c251e6cdd8d2f /settings.py | |
parent | 146b90ec874a4f3eee0a31902a90e4c2d89bc729 (diff) | |
download | askbot-026541b6a70cd183d49ffec205232cfb0b205b25.tar.gz askbot-026541b6a70cd183d49ffec205232cfb0b205b25.tar.bz2 askbot-026541b6a70cd183d49ffec205232cfb0b205b25.zip |
added anonymous posting, per-question subscription and fixes by Pothers and some more, see development.log
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/settings.py b/settings.py index e2d384c1..fac3c0d5 100644 --- a/settings.py +++ b/settings.py @@ -17,8 +17,9 @@ ADMINS = ( ) MANAGERS = ADMINS +#email server settings SERVER_EMAIL = '' -DEFAULT_FROM_EMAIL = '' +DEFAULT_FROM_EMAIL = 'team@cnprog.com' EMAIL_HOST_USER = '' EMAIL_HOST_PASSWORD = '' EMAIL_SUBJECT_PREFIX = '[cnprog.com]' @@ -31,12 +32,12 @@ TIME_ZONE = 'Asia/Chongqing Asia/Chungking' # LANGUAGE_CODE = 'en-us' SITE_ID = 1 -#OTHER SETTINS +#OTHER SETTINGS APP_TITLE = u'CNProg.com 程序员问答社区' -APP_URL = 'http://www.cnprog.com' APP_KEYWORDS = u'技术问答社区,中国程序员,编程技术社区,程序员社区,程序员论坛,程序员wiki,程序员博客' APP_DESCRIPTION = u'中国程序员的编程技术问答社区。我们做专业的、可协作编辑的技术问答社区。' APP_INTRO = u' <p>CNProg是一个<strong>面向程序员</strong>的可协作编辑的<strong>开放源代码问答社区</strong>。</p><p> 您可以在这里提问各类<strong>程序技术问题</strong> - 问题不分语言和平台。 同时也希望您对力所能及的问题,给予您的宝贵答案。</p>' +APP_COPYRIGHT = 'Copyright CNPROG.COM 2009' ADMIN_MEDIA_PREFIX = '/admin/media/' SECRET_KEY = '$oo^&_m&qwbib=(_4m_n*zn-d=g#s0he5fx9xonnym#8p6yigm' # List of callables that know how to import templates from various sources. @@ -60,7 +61,7 @@ MIDDLEWARE_CLASSES = ( TEMPLATE_CONTEXT_PROCESSORS = ( 'django.core.context_processors.request', - 'django.core.context_processors.auth', + 'context.auth_processor', 'context.application_settings', #'django.core.context_processors.i18n', ) @@ -98,3 +99,9 @@ from settings_local import * USE_I18N = True LANGUAGE_CODE = 'en' +EMAIL_VALIDATION = 'off' +MIN_USERNAME_LENGTH = 1 +EMAIL_UNIQUE = False +APP_URL = 'http://server.com' #used by email notif system and RSS +GOOGLE_SITEMAP_CODE = '55uGNnQVJW8p1bbXeF/Xbh9I7nZBM/wLhRz6N/I1kkA=' +GOOGLE_ANALYTICS_KEY = '' |