<!--
Stylesheet to convert Twitter user timelines to RSS.
- Copyright (C) 2013-2014 Antonio Ospite <ao2@ao2.it>
+ Copyright (C) 2013-2018 Antonio Ospite <ao2@ao2.it>
This file is part of tweeper.
<xsl:attribute name="href">
<xsl:value-of select="concat(@data-image-url, ':orig')"/>
</xsl:attribute>
- <img>
+ <img style="max-width: 100%">
<xsl:attribute name="src">
<xsl:value-of select="@data-image-url"/>
</xsl:attribute>
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:attribute name="style">
- <xsl:value-of select="concat(@style, '; background-repeat: no-repeat')"/>
+ <xsl:value-of select="concat(@style, '; background-repeat: no-repeat; background-size: 100% auto')"/>
</xsl:attribute>
<xsl:apply-templates select="node()"/>
</xsl:copy>
<xsl:variable name="screen-name" select="//div[@class='user-actions btn-group not-following ']/@data-screen-name"/>
- <xsl:template match="//li[@data-item-id and @data-item-type='tweet']">
+ <xsl:template match="//div[@class='permalink-inner permalink-tweet-container'] | //li[@data-item-id and @data-item-type='tweet']">
<xsl:variable name="user-name" select=".//div[@data-tweet-id]/@data-screen-name"/>
<xsl:variable name="item-content" select=".//p[contains(@class, 'js-tweet-text')]"/>
<xsl:variable name="item-media" select=".//div[contains(@class, 'AdaptiveMedia-container')]"/>
</pubDate>
<description>
<xsl:text disable-output-escaping="yes"><![CDATA[</xsl:text>
+ <xsl:value-of select="concat($user-name, ':')"/>
+ <xsl:element name="br"/>
<xsl:if test="$item-has-video">
- <xsl:text>(Video)</xsl:text>
+ <xsl:text> (Video)</xsl:text>
<xsl:element name="br"/>
</xsl:if>
- <xsl:apply-templates select="$item-content/node()"/>
+ <xsl:element name="span">
+ <xsl:attribute name="style">white-space: pre-wrap;</xsl:attribute>
+ <xsl:apply-templates select="$item-content/node()"/>
+ </xsl:element>
<xsl:apply-templates select="$item-media/node()"/>
<xsl:text disable-output-escaping="yes">]]></xsl:text>
</description>
</xsl:choose>
</xsl:variable>
<xsl:variable name="channel-link" select="//link[@rel='canonical']/@href"/>
+ <xsl:variable name="channel-image" select="//a[contains(@class, 'profile-picture')]/@href"/>
<rss version="2.0">
<xsl:attribute name="xml:base"><xsl:value-of select="$BaseURL" /></xsl:attribute>
</link>
<description>
<xsl:value-of select="normalize-space(//div[@class='ProfileHeaderCard'])"/>
+ <!-- The following rule should only match on hashtag URLs -->
+ <xsl:value-of select="normalize-space(//div[@class='SearchNavigation-textContainer'])"/>
</description>
- <image>
- <title>
- <xsl:value-of select="$channel-title"/>
- </title>
- <link>
- <xsl:value-of select="$channel-link"/>
- </link>
- <url>
- <xsl:value-of select="//a[contains(@class, 'profile-picture')]/@href"/>
- </url>
- </image>
+ <xsl:if test="$channel-image != ''">
+ <image>
+ <title>
+ <xsl:value-of select="$channel-title"/>
+ </title>
+ <link>
+ <xsl:value-of select="$channel-link"/>
+ </link>
+ <url>
+ <xsl:value-of select="$channel-image"/>
+ </url>
+ </image>
+ </xsl:if>
<xsl:apply-templates select="//ol[@id='stream-items-id']/li[@data-item-id and @data-item-type='tweet' and not(contains(@class, 'has-profile-promoted-tweet'))]"/>
+
+ <!-- These rules will only match on permalink URLs -->
+ <xsl:apply-templates select="//div[@class='permalink-inner permalink-tweet-container']"/>
+ <xsl:apply-templates select="//div[@data-component-context='replies']//li[@data-item-id and @data-item-type='tweet' and not(contains(@class, 'has-profile-promoted-tweet'))]"/>
+
</channel>
</rss>
</xsl:template>