xsl:extension-element-prefixes="php"
exclude-result-prefixes="php">
- <xsl:param name="generateEnclosure"/>
+ <xsl:param name="generate-enclosure"/>
<xsl:output method="xml" indent="yes"/>
</xsl:variable>
<xsl:template match="display_src">
- <xsl:value-of disable-output-escaping="yes" select="php:function('Tweeper::generate_enclosure', string(text()))"/>
+ <xsl:copy-of select="php:function('Tweeper::generateEnclosure', string(text()))"/>
</xsl:template>
- <xsl:variable name="screen-name" select="//ProfilePage/XML_Serializer_Tag/user/full_name"/>
- <xsl:variable name="user-name" select="//ProfilePage/XML_Serializer_Tag/user/username"/>
+ <xsl:variable name="user-name" select="//ProfilePage/user/username"/>
- <xsl:template match="//media/nodes/XML_Serializer_Tag">
+ <!-- Some users do not specify the full name -->
+ <xsl:variable name="full-name" select="//ProfilePage/user/full_name"/>
+ <xsl:variable name="screen-name">
+ <xsl:choose>
+ <xsl:when test="$full-name != ''">
+ <xsl:value-of select="$full-name"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$user-name"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:variable>
+
+ <xsl:template match="//media/nodes">
<xsl:variable name="item-content-image" select="./display_src"/>
<xsl:variable name="item-content-caption" select="./caption"/>
<xsl:variable name="item-permalink" select="concat($BaseURL, '/p/', ./code, '/')"/>
</guid>
<pubDate>
<xsl:variable name="timestamp" select="./date"/>
- <xsl:value-of select="php:functionString('Tweeper::epoch_to_gmdate', number($timestamp))"/>
+ <xsl:value-of select="php:functionString('Tweeper::epochToRssDate', number($timestamp))"/>
</pubDate>
<description>
<xsl:text disable-output-escaping="yes"><![CDATA[</xsl:text>
<a href="{$item-permalink}"><img src="{$item-content-image}" /></a>
<xsl:text disable-output-escaping="yes">]]></xsl:text>
</description>
- <xsl:if test="$generateEnclosure = 1">
+ <xsl:if test="$generate-enclosure = 1">
<xsl:apply-templates select="./display_src"/>
</xsl:if>
</item>
<xsl:value-of select="//user/profile_pic_url"/>
</url>
</image>
- <xsl:apply-templates select="//media/nodes/XML_Serializer_Tag"/>
+ <xsl:apply-templates select="//media/nodes"/>
</channel>
</rss>
</xsl:template>