Symptoms when consuming Atom feeds:
- <pubDate/> is empty
- <link/> links to the <channel/> URL and not the <item/> URL
Fixes in AtomToRss20.xsl
- LINE 25: <xsl:value-of select="//*[name()='modified']"/> should be <xsl:value-of select="//*[name()='updated']"/>
- LINE 43: <xsl:value-of select="//*[name()='link']/@href"/>should be <xsl:value-of select="child::*[name()='link']/@href"/>
- LINE 55: <xsl:value-of select="//*[name()='modified']"/> should be <xsl:value-of select="//*[name()='updated']"/>
Attached is a compiled version that incorporates these changes.