4 from urllib import unquote
5 from django.conf import settings as django_settings
6 from django.shortcuts import render_to_response, get_object_or_404
7 from django.http import HttpResponseRedirect, HttpResponse, HttpResponseForbidden, Http404
8 from django.core.paginator import Paginator, EmptyPage, InvalidPage
9 from django.template import RequestContext
10 from django import template
11 from django.utils.html import *
12 from django.utils import simplejson
13 from django.db.models import Q
14 from django.utils.translation import ugettext as _
15 from django.template.defaultfilters import slugify
16 from django.core.urlresolvers import reverse
17 from django.utils.datastructures import SortedDict
18 from django.views.decorators.cache import cache_page
19 from django.utils.http import urlquote as django_urlquote
20 from django.template.defaultfilters import slugify
21 from django.utils.safestring import mark_safe
23 from forum.utils.html import sanitize_html
24 from forum.utils.diff import textDiff as htmldiff
25 from forum.forms import *
26 from forum.models import *
27 from forum.const import *
28 from forum.utils.forms import get_next_url
29 from forum.models.question import question_view
33 #refactor - move these numbers somewhere?
38 DEFAULT_PAGE_SIZE = 60
40 QUESTIONS_PAGE_SIZE = 30
42 ANSWERS_PAGE_SIZE = 10
44 #system to display main content
45 def _get_tags_cache_json():#service routine used by views requiring tag list in the javascript space
46 """returns list of all tags in json format
47 no caching yet, actually
49 tags = Tag.objects.filter(deleted=False).all()
52 dic = {'n': tag.name, 'c': tag.used_count}
54 tags = simplejson.dumps(tags_list)
57 @decorators.render('index.html')
59 return question_list(request, Question.objects.all(), sort='active', base_path=reverse('questions'))
61 @decorators.render('questions.html', 'unanswered')
62 def unanswered(request):
63 return question_list(request, Question.objects.filter(accepted_answer=None),
64 _('Open questions without an accepted answer'))
66 @decorators.render('questions.html', 'questions')
67 def questions(request):
68 return question_list(request, Question.objects.all())
70 @decorators.render('questions.html')
71 def tag(request, tag):
72 return question_list(request, Question.objects.filter(tags__name=unquote(tag)),
73 mark_safe(_('Questions tagged <span class="tag">%(tag)s</span>') % {'tag': tag}))
75 @decorators.list('questions', QUESTIONS_PAGE_SIZE)
76 def question_list(request, initial, list_description=_('questions'), sort=None, base_path=None):
77 pagesize = request.utils.page_size(QUESTIONS_PAGE_SIZE)
78 page = int(request.GET.get('page', 1))
80 questions = initial.filter(deleted=False)
82 if request.user.is_authenticated():
83 questions = questions.filter(
84 ~Q(tags__id__in=request.user.marked_tags.filter(user_selections__reason='bad')))
88 sort = request.utils.sort_method('latest')
90 request.utils.set_sort_method(sort)
92 view_dic = {"latest":"-added_at", "active":"-last_activity_at", "hottest":"-answer_count", "mostvoted":"-score" }
94 questions=questions.order_by(view_dic.get(sort, '-added_at'))
97 "questions" : questions,
98 "questions_count" : questions.count(),
99 "tags_autocomplete" : _get_tags_cache_json(),
100 "list_description": list_description,
101 "base_path" : base_path,
106 if request.method == "GET" and "q" in request.GET:
107 keywords = request.GET.get("q")
108 search_type = request.GET.get("t")
111 return HttpResponseRedirect(reverse(index))
112 if search_type == 'tag':
113 return HttpResponseRedirect(reverse('tags') + '?q=%s' % (keywords.strip()))
114 elif search_type == "user":
115 return HttpResponseRedirect(reverse('users') + '?q=%s' % (keywords.strip()))
116 elif search_type == "question":
117 return question_search(request, keywords)
119 return render_to_response("search.html", context_instance=RequestContext(request))
121 @decorators.render('questions.html')
122 def question_search(request, keywords):
123 def question_search(keywords, orderby):
124 return Question.objects.filter(Q(title__icontains=keywords) | Q(html__icontains=keywords))
126 from forum.modules import get_handler
128 question_search = get_handler('question_search', question_search)
129 initial = question_search(keywords)
131 return question_list(request, initial, _("questions matching '%(keywords)s'") % {'keywords': keywords},
132 base_path="%s?t=question&q=%s" % (reverse('search'), django_urlquote(keywords)), sort=False)
135 def tags(request):#view showing a listing of available tags - plain list
138 sortby = request.GET.get('sort', 'used')
140 page = int(request.GET.get('page', '1'))
144 if request.method == "GET":
145 stag = request.GET.get("q", "").strip()
147 objects_list = Paginator(Tag.objects.filter(deleted=False).exclude(used_count=0).extra(where=['name like %s'], params=['%' + stag + '%']), DEFAULT_PAGE_SIZE)
150 objects_list = Paginator(Tag.objects.all().filter(deleted=False).exclude(used_count=0).order_by("name"), DEFAULT_PAGE_SIZE)
152 objects_list = Paginator(Tag.objects.all().filter(deleted=False).exclude(used_count=0).order_by("-used_count"), DEFAULT_PAGE_SIZE)
155 tags = objects_list.page(page)
156 except (EmptyPage, InvalidPage):
157 tags = objects_list.page(objects_list.num_pages)
159 return render_to_response('tags.html', {
165 'is_paginated' : is_paginated,
166 'pages': objects_list.num_pages,
168 'has_previous': tags.has_previous(),
169 'has_next': tags.has_next(),
170 'previous': tags.previous_page_number(),
171 'next': tags.next_page_number(),
172 'base_url' : reverse('tags') + '?sort=%s&' % sortby
174 }, context_instance=RequestContext(request))
176 def get_answer_sort_order(request):
177 view_dic = {"latest":"-added_at", "oldest":"added_at", "votes":"-score" }
179 view_id = request.GET.get('sort', request.session.get('answer_sort_order', None))
181 if view_id is None or not view_id in view_dic:
184 if view_id != request.session.get('answer_sort_order', None):
185 request.session['answer_sort_order'] = view_id
187 return (view_id, view_dic[view_id])
189 def update_question_view_times(request, question):
190 if not 'last_seen_in_question' in request.session:
191 request.session['last_seen_in_question'] = {}
193 last_seen = request.session['last_seen_in_question'].get(question.id,None)
195 if (not last_seen) or last_seen < question.last_activity_at:
196 question_view.send(sender=update_question_view_times, instance=question, user=request.user)
197 request.session['last_seen_in_question'][question.id] = datetime.datetime.now()
199 request.session['last_seen_in_question'][question.id] = datetime.datetime.now()
201 def question(request, id, slug):
202 question = get_object_or_404(Question, id=id)
204 if slug != urlquote(slugify(question.title)):
205 return HttpResponseRedirect(question.get_absolute_url())
207 page = int(request.GET.get('page', 1))
208 view_id, order_by = get_answer_sort_order(request)
210 if question.deleted and not request.user.can_view_deleted_post(question):
213 answer_form = AnswerForm(question)
214 answers = request.user.get_visible_answers(question)
216 if answers is not None:
217 answers = [a for a in answers.order_by("-accepted", order_by)
218 if not a.deleted or a.author == request.user]
220 objects_list = Paginator(answers, ANSWERS_PAGE_SIZE)
221 page_objects = objects_list.page(page)
223 update_question_view_times(request, question)
225 if request.user.is_authenticated():
227 subscription = QuestionSubscription.objects.get(question=question, user=request.user)
233 return render_to_response('question.html', {
234 "question" : question,
235 "answer" : answer_form,
236 "answers" : page_objects.object_list,
237 "tags" : question.tags.all(),
239 "similar_questions" : question.get_related_questions(),
240 "subscription": subscription,
242 'is_paginated' : True,
243 'pages': objects_list.num_pages,
245 'has_previous': page_objects.has_previous(),
246 'has_next': page_objects.has_next(),
247 'previous': page_objects.previous_page_number(),
248 'next': page_objects.next_page_number(),
249 'base_url' : request.path + '?sort=%s&' % view_id,
250 'extend_url' : "#sort-top"
252 }, context_instance=RequestContext(request))
255 REVISION_TEMPLATE = template.loader.get_template('node/revision.html')
257 def revisions(request, id):
258 post = get_object_or_404(Node, id=id).leaf
259 revisions = list(post.revisions.order_by('revised_at'))
263 for i, revision in enumerate(revisions):
264 rev_ctx.append(dict(inst=revision, html=REVISION_TEMPLATE.render(template.Context({
265 'title': revision.title,
266 'html': revision.html,
267 'tags': revision.tagname_list(),
271 rev_ctx[i]['diff'] = mark_safe(htmldiff(rev_ctx[i-1]['html'], rev_ctx[i]['html']))
273 rev_ctx[i]['diff'] = mark_safe(rev_ctx[i]['html'])
275 if not (revision.summary):
276 rev_ctx[i]['summary'] = _('Revision n. %(rev_number)d') % {'rev_number': revision.revision}
278 rev_ctx[i]['summary'] = revision.summary
280 return render_to_response('revisions_question.html', {
282 'revisions': rev_ctx,
283 }, context_instance=RequestContext(request))