<xsl:text>https://instagram.com</xsl:text>
</xsl:variable>
- <xsl:template match="display_src">
- <xsl:copy-of select="php:function('Tweeper::generateEnclosure', string(text()))"/>
- </xsl:template>
-
<xsl:variable name="user-name" select="//ProfilePage/user/username"/>
<!-- Some users do not specify the full name -->
</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::epochToRssDate', number($timestamp))"/>
+ <xsl:value-of select="php:functionString('Tweeper::epochToRssDate', $timestamp)"/>
</pubDate>
<description>
<xsl:text disable-output-escaping="yes"><![CDATA[</xsl:text>
<p>
<xsl:if test="./is_video/text() = 1">
- (Video)
+ (Video)
</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="$generate-enclosure = 1">
- <xsl:apply-templates select="./display_src"/>
+ <xsl:copy-of select="php:functionString('Tweeper::generateEnclosure', $item-content-image)"/>
</xsl:if>
</item>
</xsl:template>
<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>