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="a[@data-expanded-url]">
- <xsl:value-of disable-output-escaping="yes" select="php:function('Tweeper::generate_enclosure', string(./@data-expanded-url))"/>
+ <xsl:value-of disable-output-escaping="yes" select="php:function('Tweeper::generateEnclosure', string(./@data-expanded-url))"/>
</xsl:template>
<xsl:variable name="screen-name" select="//div[@class='user-actions btn-group not-following ']/@data-screen-name"/>
- <xsl:template match="//li[@data-item-type='tweet']">
+ <xsl:template match="//li[@data-item-id and @data-item-type='tweet']">
<xsl:variable name="user-name" select=".//div[contains(@class, 'js-stream-tweet')]/@data-screen-name"/>
<xsl:variable name="item-content" select=".//p[contains(@class, 'js-tweet-text')]"/>
<xsl:variable name="item-permalink" select="concat($BaseURL, .//div[@data-permalink-path]/@data-permalink-path)"/>
<xsl:copy-of select="$item-content/node()"/>
<xsl:text disable-output-escaping="yes">]]></xsl:text>
</description>
- <xsl:if test="$generateEnclosure = 1">
+ <xsl:if test="$generate-enclosure = 1">
<xsl:apply-templates select="$item-content//a[@data-expanded-url]"/>
</xsl:if>
</item>
<xsl:value-of select="$channel-link"/>
</link>
<url>
- <xsl:value-of select="//a[contains(@class, 'profile-picture media-thumbnail')]/@href"/>
+ <xsl:value-of select="//a[contains(@class, 'profile-picture')]/@href"/>
</url>
</image>
- <xsl:apply-templates select="//ol[@id='stream-items-id']/li[@data-item-type='tweet']"/>
+ <xsl:apply-templates select="//ol[@id='stream-items-id']/li[@data-item-id and @data-item-type='tweet']"/>
</channel>
</rss>
</xsl:template>