X-Git-Url: https://git.ao2.it/tweeper.git/blobdiff_plain/dd95ff95a6089a7e0eb2207aba9f6266afd3b2fe..cf9648c2ee5787195e5b2582aa1f93d2a0b69b0d:/rss_converter_twitter.com.xsl diff --git a/rss_converter_twitter.com.xsl b/rss_converter_twitter.com.xsl index 665b71d..82d520c 100644 --- a/rss_converter_twitter.com.xsl +++ b/rss_converter_twitter.com.xsl @@ -38,10 +38,10 @@ - + - + <xsl:value-of select="concat($user-name, ': ', $item-content)"/> @@ -69,7 +69,16 @@ </xsl:template> <xsl:template match="/"> - <xsl:variable name="channel-title" select="concat('Twitter / ', $screen-name)"/> + <xsl:variable name="channel-title"> + <xsl:choose> + <xsl:when test="$screen-name != ''"> + <xsl:value-of select="concat('Twitter / ', $screen-name)"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="concat('Twitter / ', normalize-space(//h1[1]))"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> <xsl:variable name="channel-link" select="//link[@rel='canonical']/@href"/> <rss version="2.0"> @@ -96,7 +105,7 @@ <xsl:value-of select="//a[contains(@class, 'profile-picture media-thumbnail')]/@href"/> </url> </image> - <xsl:apply-templates select="//*[@data-item-type='tweet']"/> + <xsl:apply-templates select="//ol[@id='stream-items-id']/li[@data-item-type='tweet']"/> </channel> </rss> </xsl:template>