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="user-name" select="//ProfilePage/user/username"/>
</xsl:choose>
</xsl:variable>
- <xsl:template match="//media/nodes">
+ <xsl:template match="//ProfilePage/user/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>
</xsl:if>
<xsl:value-of select="$item-content-caption"/>
</p><br />
- <a href="{$item-permalink}"><img src="{$item-content-image}" /></a>
+ <a href="{$item-permalink}"><img src="{$item-content-image}" style="max-width: 100%"/></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:template match="/">
<xsl:variable name="channel-title" select="concat('Instagram / ', $screen-name)"/>
- <xsl:variable name="channel-link" select="concat($BaseURL, //__path)"/>
+ <xsl:variable name="channel-link" select="concat($BaseURL, '/', $user-name)"/>
<rss version="2.0">
<xsl:attribute name="xml:base"><xsl:value-of select="$BaseURL" /></xsl:attribute>
<xsl:value-of select="$channel-link"/>
</link>
<url>
- <xsl:value-of select="//user/profile_pic_url"/>
+ <xsl:value-of select="//ProfilePage/user/profile_pic_url"/>
</url>
</image>
- <xsl:apply-templates select="//media/nodes"/>
+ <xsl:apply-templates select="//ProfilePage/user/media/nodes"/>
</channel>
</rss>
</xsl:template>