summaryrefslogtreecommitdiffstats
path: root/forum/views/users.py
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-05-31 00:38:18 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-05-31 00:38:18 -0400
commitf7348366a34a3e1117fd821e29b01323c9bc794f (patch)
tree6dd1f6f8d04b9adf33b71d2bfc019304a7a20257 /forum/views/users.py
parent714311f3d883c6589d278e3e2a05bd1583e4b96d (diff)
downloadaskbot-f7348366a34a3e1117fd821e29b01323c9bc794f.tar.gz
askbot-f7348366a34a3e1117fd821e29b01323c9bc794f.tar.bz2
askbot-f7348366a34a3e1117fd821e29b01323c9bc794f.zip
all forum reader urls are covered by unit tests
Diffstat (limited to 'forum/views/users.py')
-rw-r--r--forum/views/users.py27
1 files changed, 19 insertions, 8 deletions
diff --git a/forum/views/users.py b/forum/views/users.py
index dcc247bf..d2c003bc 100644
--- a/forum/views/users.py
+++ b/forum/views/users.py
@@ -560,6 +560,9 @@ def user_responses(request, user_id, user_view):
"""
We list answers for question, comments, and answer accepted by others for this user.
"""
+ user = get_object_or_404(models.User, id=user_id)
+ if request.user != user:
+ raise Http404
class Response:
def __init__(self, type, title, question_id, answer_id, time, username, user_id, content):
self.type = type
@@ -602,10 +605,19 @@ def user_responses(request, user_id, user_view):
'user_id'
)
if len(answers) > 0:
- answers = [(Response(TYPE_RESPONSE['QUESTION_ANSWERED'], a['title'], a['question_id'],
- a['answer_id'], a['added_at'], a['username'], a['user_id'], a['html'])) for a in answers]
- responses.extend(answers)
-
+ answer_responses = []
+ for a in answers:
+ r = Response(
+ const.TYPE_RESPONSE['QUESTION_ANSWERED'],
+ a['title'],
+ a['question_id'],
+ a['answer_id'],
+ a['added_at'],
+ a['username'],
+ a['user_id'],
+ a['html']
+ )
+ responses.extend(answer_responses)
# question comments
comments = models.Comment.objects.extra(
@@ -632,7 +644,7 @@ def user_responses(request, user_id, user_view):
)
if len(comments) > 0:
- comments = [(Response(TYPE_RESPONSE['QUESTION_COMMENTED'], c['title'], c['question_id'],
+ comments = [(Response(const.TYPE_RESPONSE['QUESTION_COMMENTED'], c['title'], c['question_id'],
'', c['added_at'], c['username'], c['user_id'], c['comment'])) for c in comments]
responses.extend(comments)
@@ -664,7 +676,7 @@ def user_responses(request, user_id, user_view):
)
if len(comments) > 0:
- comments = [(Response(TYPE_RESPONSE['ANSWER_COMMENTED'], c['title'], c['question_id'],
+ comments = [(Response(const.TYPE_RESPONSE['ANSWER_COMMENTED'], c['title'], c['question_id'],
c['answer_id'], c['added_at'], c['username'], c['user_id'], c['comment'])) for c in comments]
responses.extend(comments)
@@ -695,7 +707,7 @@ def user_responses(request, user_id, user_view):
'user_id'
)
if len(answers) > 0:
- answers = [(Response(TYPE_RESPONSE['ANSWER_ACCEPTED'], a['title'], a['question_id'],
+ answers = [(Response(const.TYPE_RESPONSE['ANSWER_ACCEPTED'], a['title'], a['question_id'],
a['answer_id'], a['added_at'], a['username'], a['user_id'], a['html'])) for a in answers]
responses.extend(answers)
@@ -867,7 +879,6 @@ def user_favorites(request, user_id, user_view):
"view_user" : user
}, context_instance=RequestContext(request))
-@login_required
def user_email_subscriptions(request, user_id, user_view):
user = get_object_or_404(models.User, id=user_id)
if request.user != user: