summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-01-19 12:02:37 -0300
committerAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-05-08 10:00:40 -0600
commit05d4e5d810642102e27d199f3ce8c145654ac8dd (patch)
treecce13742b325b40d688e9ca7e637169ca35f92fc
parent1ac6ed4e82f2b61c478b7cb3d863a4fa8b42418a (diff)
downloadaskbot-05d4e5d810642102e27d199f3ce8c145654ac8dd.tar.gz
askbot-05d4e5d810642102e27d199f3ce8c145654ac8dd.tar.bz2
askbot-05d4e5d810642102e27d199f3ce8c145654ac8dd.zip
fixed feed issues with cache.
-rw-r--r--askbot/feed.py25
-rw-r--r--askbot/skins/default/templates/main_page/tab_bar.html4
2 files changed, 14 insertions, 15 deletions
diff --git a/askbot/feed.py b/askbot/feed.py
index c1933afe..6df9b8aa 100644
--- a/askbot/feed.py
+++ b/askbot/feed.py
@@ -26,7 +26,7 @@ class RssIndividualQuestionFeed(Feed):
"""rss feed class for particular questions
"""
title = askbot_settings.APP_TITLE + _(' - ')+ _('Individual question feed')
- link = askbot_settings.APP_URL
+ #link = askbot_settings.APP_URL
description = askbot_settings.APP_DESCRIPTION
copyright = askbot_settings.APP_COPYRIGHT
@@ -34,11 +34,11 @@ class RssIndividualQuestionFeed(Feed):
if len(bits) != 1:
raise ObjectDoesNotExist
return Post.objects.get_questions().get(id__exact = bits[0])
-
+
def item_link(self, item):
"""get full url to the item
"""
- return self.link + item.get_absolute_url()
+ return askbot_settings.APP_URL + item.get_absolute_url()
def item_pubdate(self, item):
"""get date of creation for the item
@@ -56,7 +56,6 @@ class RssIndividualQuestionFeed(Feed):
chain_elements.append(
Post.objects.get_comments().filter(parent=item)
)
-
answers = Post.objects.get_answers().filter(thread = item.thread)
for answer in answers:
chain_elements.append([answer,])
@@ -65,7 +64,7 @@ class RssIndividualQuestionFeed(Feed):
)
return itertools.chain(*chain_elements)
-
+
def item_title(self, item):
"""returns the title for the item
"""
@@ -77,7 +76,7 @@ class RssIndividualQuestionFeed(Feed):
elif item.post_type == "comment":
title = "Comment by %s for %s" % (item.author, self.title)
return title
-
+
def item_description(self, item):
"""returns the description for the item
"""
@@ -88,7 +87,7 @@ class RssLastestQuestionsFeed(Feed):
"""rss feed class for the latest questions
"""
title = askbot_settings.APP_TITLE + _(' - ')+ _('latest questions')
- link = askbot_settings.APP_URL
+ #link = askbot_settings.APP_URL
description = askbot_settings.APP_DESCRIPTION
#ttl = 10
copyright = askbot_settings.APP_COPYRIGHT
@@ -96,7 +95,7 @@ class RssLastestQuestionsFeed(Feed):
def item_link(self, item):
"""get full url to the item
"""
- return self.link + item.get_absolute_url()
+ return askbot_settings.APP_URL + item.get_absolute_url()
def item_author_name(self, item):
"""get name of author
@@ -117,8 +116,8 @@ class RssLastestQuestionsFeed(Feed):
"""returns url without the slug
because the slug can change
"""
- return self.link + item.get_absolute_url(no_slug = True)
-
+ return askbot_settings.APP_URL + item.get_absolute_url(no_slug = True)
+
def item_description(self, item):
"""returns the desciption for the item
"""
@@ -142,12 +141,12 @@ class RssLastestQuestionsFeed(Feed):
if tags:
#if there are tags in GET, filter the
#questions additionally
- for tag in tags:
+ for tag in tags:
qs = qs.filter(thread__tags__name = tag)
-
+
return qs.order_by('-thread__last_activity_at')[:30]
-
+
def main():
"""main function for use as a script
diff --git a/askbot/skins/default/templates/main_page/tab_bar.html b/askbot/skins/default/templates/main_page/tab_bar.html
index 8b666155..17ab810e 100644
--- a/askbot/skins/default/templates/main_page/tab_bar.html
+++ b/askbot/skins/default/templates/main_page/tab_bar.html
@@ -3,9 +3,9 @@
{% cache 0 "scope_sort_tabs" search_tags request.user author_name scope sort query context.page language_code %}
<a class="rss"
{% if feed_url %}
- href="{{settings.APP_URL}}{{feed_url}}"
+ href="{{feed_url}}"
{% else %}
- href="{{settings.APP_URL}}/feeds/rss/"
+ href="/feeds/rss/"
{% endif %}
title="{% trans %}subscribe to the questions feed{% endtrans %}"
>{% trans %}RSS{% endtrans %}