<!--
Stylesheet to convert Dilbert daily strips to RSS.
- Copyright (C) 2013-2014 Antonio Ospite <ao2@ao2.it>
+ Copyright (C) 2013-2018 Antonio Ospite <ao2@ao2.it>
This file is part of tweeper.
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:php="http://php.net/xsl"
- xsl:extension-element-prefixes="php"
exclude-result-prefixes="php">
+ <xsl:param name="generate-enclosure"/>
+ <xsl:param name="show-multimedia"/>
+
<xsl:output method="xml" indent="yes"/>
<xsl:variable name="BaseURL" select="//meta[@property='og:url']/@content"/>
<xsl:value-of select="$item-permalink"/>
</guid>
<pubDate>
- <xsl:value-of select="php:functionString('Tweeper::strToRssDate', normalize-space(.//date))"/>
+ <xsl:value-of select="php:functionString('Tweeper\Tweeper::strToRssDate', normalize-space(.//date))"/>
</pubDate>
<description>
<xsl:text disable-output-escaping="yes"><![CDATA[</xsl:text>
- <img src="{$picture-url}" alt="{$picture-title}"/>
+ <xsl:if test="$show-multimedia = 1">
+ <img src="{$picture-url}" alt="{$picture-title}"/>
+ </xsl:if>
<xsl:text disable-output-escaping="yes">]]></xsl:text>
</description>
<xsl:if test="$generate-enclosure = 1">
- <xsl:copy-of select="php:functionString('Tweeper::generateEnclosure', $picture-url)"/>
+ <!--
+ Dilbert.com uses protocol-relative urls for pictures but
+ generateEnclosure() relies on curl which cannot work
+ without a schema.
+
+ Use http as protocol because curl gives some error when
+ attempting TLS negotiation with the server where
+ Dilbert.com assets are.
+ -->
+ <xsl:copy-of select="php:functionString('Tweeper\Tweeper::generateEnclosure', concat('http:', $picture-url))"/>
</xsl:if>
</item>
</xsl:template>