fix #255: add author field to rss; fix path in makefile

This commit is contained in:
slav0nic 2012-08-30 11:27:45 +03:00
parent c67ed01f3b
commit c1d5211751
2 changed files with 7 additions and 4 deletions

View file

@ -19,12 +19,15 @@ class ForumFeed(Feed):
def item_pubdate(self, obj):
return obj.created
def item_author_name(self, item):
return item.user.username
class LastPosts(ForumFeed):
title = _('Latest posts on forum')
description = _('Latest posts on forum')
title_template = 'djangobb_forum/feeds/posts_title.html'
description_template = 'djangobb_forumfeeds/posts_description.html'
description_template = 'djangobb_forum/feeds/posts_description.html'
def get_object(self, request):
user_groups = request.user.groups.all()

View file

@ -1,10 +1,10 @@
.PHONY: pep8 pyflakes clean
pep8 :
pep8 --statistics --show-pep8 --filename=*.py --exclude='venv' ../djangobb
pep8 --statistics --show-pep8 --filename=*.py --exclude='venv' ../djangobb_forum
pyflakes :
find ../djangobb -name '*.py' -not \( -path '*/venv/*' \) -exec pyflakes {} \;
find ../djangobb_forum -name '*.py' -not \( -path '*/venv/*' \) -exec pyflakes {} \;
clean :
find ../djangobb -type f -name '*.pyc' -delete
find ../djangobb_forum -type f -name '*.pyc' -delete