X-Git-Url: https://git.ao2.it/tweeper.git/blobdiff_plain/eafac3f425aa88b42e6a496b62304848d5bbb4a9..d831bbec69bfdbd12ce7774be02eb224cfe41d3b:/rss_converter_instagram.com.xsl diff --git a/rss_converter_instagram.com.xsl b/rss_converter_instagram.com.xsl index f42ca8b..4f1d14f 100644 --- a/rss_converter_instagram.com.xsl +++ b/rss_converter_instagram.com.xsl @@ -32,20 +32,31 @@ https://instagram.com - - + + - - + + - - - - + + + + - <xsl:value-of select="concat($user-name, ': ', $item-content-title)"/> + <xsl:variable name="title-length" select="140"/> + <!-- ellipsize, inspired from http://stackoverflow.com/questions/13622338 --> + <xsl:choose> + <xsl:when test="string-length($item-content-caption) > $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:text>...</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="normalize-space($item-content-caption)"/> + </xsl:otherwise> + </xsl:choose> @@ -54,24 +65,29 @@ - + <![CDATA[ -


- +

+ + (Video) + + +


+ ]]>
- +
- + @@ -84,7 +100,7 @@ - + @@ -94,10 +110,10 @@ <xsl:value-of select="$channel-link"/> </link> <url> - <xsl:value-of select="//user/profile_picture"/> + <xsl:value-of select="//user/profile_pic_url"/> </url> </image> - <xsl:apply-templates select="//userMedia/XML_Serializer_Tag"/> + <xsl:apply-templates select="//media/nodes/XML_Serializer_Tag"/> </channel> </rss> </xsl:template>