rss_converter_twitter.com.xsl: present images in a more convenient way
authorAntonio Ospite <ao2@ao2.it>
Fri, 20 May 2016 11:33:01 +0000 (13:33 +0200)
committerAntonio Ospite <ao2@ao2.it>
Fri, 20 May 2016 13:03:41 +0000 (15:03 +0200)
Make images clickable and pointing to the original full-size picture.

rss_converter_twitter.com.xsl

index ce2b07f..5c48e19 100644 (file)
         <xsl:text> </xsl:text>
     </xsl:template>
 
         <xsl:text> </xsl:text>
     </xsl:template>
 
+    <!-- Present images in a more convenient way -->
+    <xsl:template match="div[@data-image-url]">
+        <a>
+            <xsl:attribute name="href">
+                <xsl:value-of select="concat(@data-image-url, ':orig')"/>
+            </xsl:attribute>
+            <img>
+                <xsl:attribute name="src">
+                    <xsl:value-of select="@data-image-url"/>
+                </xsl:attribute>
+            </img>
+        </a>
+    </xsl:template>
+
     <xsl:template match="a[@data-expanded-url]" mode="enclosure">
         <xsl:copy-of select="php:function('Tweeper::generateEnclosure', string(./@data-expanded-url))"/>
     </xsl:template>
     <xsl:template match="a[@data-expanded-url]" mode="enclosure">
         <xsl:copy-of select="php:function('Tweeper::generateEnclosure', string(./@data-expanded-url))"/>
     </xsl:template>