﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
1294	RSS framework doesn't pick up item_author_name	jaanus@…	Adrian Holovaty	"Code:
{{{
#!python
class LatestFeed(Feed):
    title = 'Chat feed title'
    link = 'http://www.example.com'
    description = 'Chat feed'
    def get_object(self, bits):
        if len(bits) != 1:
            raise ObjectDoesNotExist
        return chats.get_object(name__exact=bits[0])
    def items(self, obj):
        return messages.get_list(chatname__exact=obj.name, order_by=('-timestamp',), limit=50)
    def item_pubdate(self, item):
        return item.timestamp
    def item_author_name(self, item):
        return item.from_dispname
}}}
output:
{{{
<item>
  <title>title is fine here</title> 
  <link>http://the_link_is_fine.com</link> 
  <description>here's some text</description> 
  <pubDate>Fri, 27 Jan 2006 15:15:58 -0000</pubDate> 
  <guid>http://the_link_is_fine.com</guid> 
  </item>
}}}

no trace of author in the output???"	enhancement	closed	Testing framework	new-admin	blocker	invalid			Unreviewed	0	0	0	0	0	0
