summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-05-08 23:19:36 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-05-08 23:19:36 -0400
commit248ceb476de4f5504c1b8a5d0017223889690201 (patch)
tree414df807528e7f0754907100d05b8598645e3315
parent950c36db5bd0540ffcc60a8d89cae303db12b941 (diff)
downloadaskbot-248ceb476de4f5504c1b8a5d0017223889690201.tar.gz
askbot-248ceb476de4f5504c1b8a5d0017223889690201.tar.bz2
askbot-248ceb476de4f5504c1b8a5d0017223889690201.zip
removed unused file
-rw-r--r--forum/const.py134
1 files changed, 0 insertions, 134 deletions
diff --git a/forum/const.py b/forum/const.py
deleted file mode 100644
index a3ab2a47..00000000
--- a/forum/const.py
+++ /dev/null
@@ -1,134 +0,0 @@
-# encoding:utf-8
-from django.utils.translation import ugettext as _
-"""
-All constants could be used in other modules
-For reasons that models, views can't have unicode text in this project, all unicode text go here.
-"""
-CLOSE_REASONS = (
- (1, _('duplicate question')),
- (2, _('question is off-topic or not relevant')),
- (3, _('too subjective and argumentative')),
- (4, _('not a real question')),
- (5, _('the question is answered, right answer was accepted')),
- (6, _('question is not relevant or outdated')),
- (7, _('question contains offensive or malicious remarks')),
- (8, _('spam or advertising')),
- (9, _('too localized')),
-)
-
-TYPE_REPUTATION = (
- (1, 'gain_by_upvoted'),
- (2, 'gain_by_answer_accepted'),
- (3, 'gain_by_accepting_answer'),
- (4, 'gain_by_downvote_canceled'),
- (5, 'gain_by_canceling_downvote'),
- (-1, 'lose_by_canceling_accepted_answer'),
- (-2, 'lose_by_accepted_answer_cancled'),
- (-3, 'lose_by_downvoted'),
- (-4, 'lose_by_flagged'),
- (-5, 'lose_by_downvoting'),
- (-6, 'lose_by_flagged_lastrevision_3_times'),
- (-7, 'lose_by_flagged_lastrevision_5_times'),
- (-8, 'lose_by_upvote_canceled'),
-)
-
-#do not translate these!!!
-POST_SORT_METHODS = (
- ('latest', _('newest')),
- ('oldest', _('oldest')),
- ('active', _('active')),
- ('inactive', _('inactive')),
- ('hottest', _('hottest')),
- ('coldest', _('coldest')),
- ('mostvoted', _('most voted')),
- ('leastvoted', _('least voted')),
- ('relevant', _('relevance')),
- )
-#todo: add assertion here that all sort methods are unique
-#because they are keys to the hash used in implementations of Q.run_advanced_search
-
-DEFAULT_POST_SORT_METHOD = 'active'
-POST_SCOPE_LIST = (
- ('all', _('all')),
- ('unanswered', _('unanswered')),
- ('favorite', _('favorite')),
- )
-DEFAULT_POST_SCOPE = 'all'
-DEFAULT_QUESTIONS_PAGE_SIZE = 30
-PAGE_SIZE_CHOICES = (('10','10',),('30','30',),('50','50',),)
-
-UNANSWERED_MEANING_LIST = ('NO_ANSWERS','NO_UPVOTED_ANSWERS','NO_ACCEPTED_ANSWERS')
-UNANSWERED_MEANING = 'NO_ACCEPTED_ANSWERS'
-assert(UNANSWERED_MEANING in UNANSWERED_MEANING_LIST)
-
-#todo:
-#this probably needs to be language-specific
-#and selectable/changeable from the admin interface
-#however it will be hard to expect that people will type
-#correct regexes - plus this must be an anchored regex
-#to do full string match
-TAG_REGEX = r'^[a-z0-9\+\.\-]+$'
-TAG_SPLIT_REGEX = r'[ ,]+'
-MAX_TAG_LENGTH = 20 #default 20 chars
-MAX_TAGS_PER_POST = 5 #no more than five tags
-
-TYPE_ACTIVITY_ASK_QUESTION=1
-TYPE_ACTIVITY_ANSWER=2
-TYPE_ACTIVITY_COMMENT_QUESTION=3
-TYPE_ACTIVITY_COMMENT_ANSWER=4
-TYPE_ACTIVITY_UPDATE_QUESTION=5
-TYPE_ACTIVITY_UPDATE_ANSWER=6
-TYPE_ACTIVITY_PRIZE=7
-TYPE_ACTIVITY_MARK_ANSWER=8
-TYPE_ACTIVITY_VOTE_UP=9
-TYPE_ACTIVITY_VOTE_DOWN=10
-TYPE_ACTIVITY_CANCEL_VOTE=11
-TYPE_ACTIVITY_DELETE_QUESTION=12
-TYPE_ACTIVITY_DELETE_ANSWER=13
-TYPE_ACTIVITY_MARK_OFFENSIVE=14
-TYPE_ACTIVITY_UPDATE_TAGS=15
-TYPE_ACTIVITY_FAVORITE=16
-TYPE_ACTIVITY_USER_FULL_UPDATED = 17
-TYPE_ACTIVITY_QUESTION_EMAIL_UPDATE_SENT = 18
-#TYPE_ACTIVITY_EDIT_QUESTION=17
-#TYPE_ACTIVITY_EDIT_ANSWER=18
-
-TYPE_ACTIVITY = (
- (TYPE_ACTIVITY_ASK_QUESTION, _('question')),
- (TYPE_ACTIVITY_ANSWER, _('answer')),
- (TYPE_ACTIVITY_COMMENT_QUESTION, _('commented question')),
- (TYPE_ACTIVITY_COMMENT_ANSWER, _('commented answer')),
- (TYPE_ACTIVITY_UPDATE_QUESTION, _('edited question')),
- (TYPE_ACTIVITY_UPDATE_ANSWER, _('edited answer')),
- (TYPE_ACTIVITY_PRIZE, _('received award')),
- (TYPE_ACTIVITY_MARK_ANSWER, _('marked best answer')),
- (TYPE_ACTIVITY_VOTE_UP, _('upvoted')),
- (TYPE_ACTIVITY_VOTE_DOWN, _('downvoted')),
- (TYPE_ACTIVITY_CANCEL_VOTE, _('canceled vote')),
- (TYPE_ACTIVITY_DELETE_QUESTION, _('deleted question')),
- (TYPE_ACTIVITY_DELETE_ANSWER, _('deleted answer')),
- (TYPE_ACTIVITY_MARK_OFFENSIVE, _('marked offensive')),
- (TYPE_ACTIVITY_UPDATE_TAGS, _('updated tags')),
- (TYPE_ACTIVITY_FAVORITE, _('selected favorite')),
- (TYPE_ACTIVITY_USER_FULL_UPDATED, _('completed user profile')),
- (TYPE_ACTIVITY_QUESTION_EMAIL_UPDATE_SENT, _('email update sent to user')),
-)
-
-TYPE_RESPONSE = {
- 'QUESTION_ANSWERED' : _('question_answered'),
- 'QUESTION_COMMENTED': _('question_commented'),
- 'ANSWER_COMMENTED' : _('answer_commented'),
- 'ANSWER_ACCEPTED' : _('answer_accepted'),
-}
-
-CONST = {
- 'closed' : _('[closed]'),
- 'deleted' : _('[deleted]'),
- 'default_version' : _('initial version'),
- 'retagged' : _('retagged'),
-}
-
-#how to filter questions by tags in email digests?
-TAG_EMAIL_FILTER_CHOICES = (('ignored', _('exclude ignored tags')),('interesting',_('allow only selected tags')))
-MAX_ALERTS_PER_EMAIL = 7
-USERS_PAGE_SIZE = 28