X-Git-Url: https://git.ao2.it/tweeper.git/blobdiff_plain/e2e4404f14ad9c387a7b3c1d0c97ab289a7576b0..b7350069c36900359b8f26c6e9794f614a40b20e:/rss_converter_instagram.com.xsl diff --git a/rss_converter_instagram.com.xsl b/rss_converter_instagram.com.xsl index cc540ce..f12ecbb 100644 --- a/rss_converter_instagram.com.xsl +++ b/rss_converter_instagram.com.xsl @@ -24,7 +24,7 @@ xsl:extension-element-prefixes="php" exclude-result-prefixes="php"> - + @@ -33,28 +33,41 @@ - + - - + - + + + + + + + + + + + + + + <xsl:variable name="title-length" select="140"/> + <xsl:variable name="item-content-title" select="normalize-space(concat($user-name, ': ', $item-content-caption))"/> <!-- ellipsize, inspired from http://stackoverflow.com/questions/13622338 --> <xsl:choose> - <xsl:when test="string-length($item-content-caption) > $title-length"> + <xsl:when test="string-length($item-content-title) > $title-length"> <xsl:variable name="truncated-length" select="$title-length - 3"/> - <xsl:value-of select="normalize-space(substring($item-content-caption, 1, $truncated-length))"/> + <xsl:value-of select="substring($item-content-title, 1, $truncated-length)"/> <xsl:text>...</xsl:text> </xsl:when> <xsl:otherwise> - <xsl:value-of select="normalize-space($item-content-caption)"/> + <xsl:value-of select="$item-content-title"/> </xsl:otherwise> </xsl:choose> @@ -66,15 +79,20 @@ - + <![CDATA[ -


+

+ + (Video) + + +


]]>
- +
@@ -95,7 +113,13 @@ - + <![CDATA[ + + + + + + ]]> @@ -108,7 +132,7 @@ <xsl:value-of select="//user/profile_pic_url"/> </url> </image> - <xsl:apply-templates select="//media/nodes/XML_Serializer_Tag"/> + <xsl:apply-templates select="//media/nodes"/> </channel> </rss> </xsl:template>