X-Git-Url: https://git.ao2.it/tweeper.git/blobdiff_plain/8b8fce67efe48521ed344220c74be3d9658f703c..8a9794cc47a6f389541168ced98e14080907034b:/rss_converter_instagram.com.xsl diff --git a/rss_converter_instagram.com.xsl b/rss_converter_instagram.com.xsl index 9ef06ef..e869d7d 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"> - + @@ -32,20 +32,40 @@ https://instagram.com - - - + - - + + + + + + + + + + + + - + - <xsl:value-of select="$item-content-caption"/> + <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-title) > $title-length"> + <xsl:variable name="truncated-length" select="$title-length - 3"/> + <xsl:value-of select="substring($item-content-title, 1, $truncated-length)"/> + <xsl:text>...</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$item-content-title"/> + </xsl:otherwise> + </xsl:choose> @@ -55,23 +75,28 @@ - + <![CDATA[ -


- +

+ + (Video) + + +


+ ]]>
- - + +
- + @@ -84,7 +109,13 @@ - + <![CDATA[ + + + + + + ]]> @@ -94,10 +125,10 @@ <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/XML_Serializer_Tag"/> + <xsl:apply-templates select="//ProfilePage/user/media/nodes"/> </channel> </rss> </xsl:template>