2
Vote

Cannot read author/name field in Atom rss

description

Hi! It looks like control have a bug. I have tried to use your control to read rss http://ainstainergroup.blogspot.com/feeds/posts/default and I couldn't read the author field. I don't really into XSLT that's why I can't solve this problem by myself. Someone, help! How I can read author/name field?

comments

jsmcmullen wrote Mar 2, 2010 at 5:13 AM

For my blogspot blog, I found that if I add the following to AtomToRss20.xsl, you can then read the author name (but not the email).

Add the following to the list of xsl:element listings for the "items" template:

<xsl:element name="author">
<xsl:value-of select="child::*[name()='author']/child::*[name()='name']"/>
</xsl:element>