projects
/
tweeper.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
src/Tweeper.php: make code more robust by properly check return values
[tweeper.git]
/
src
/
rss_converter_pump.io.xsl
diff --git
a/src/rss_converter_pump.io.xsl
b/src/rss_converter_pump.io.xsl
index
61f4f7f
..
42f8ac0
100644
(file)
--- a/
src/rss_converter_pump.io.xsl
+++ b/
src/rss_converter_pump.io.xsl
@@
-24,6
+24,9
@@
xmlns:php="http://php.net/xsl"
exclude-result-prefixes="php">
xmlns:php="http://php.net/xsl"
exclude-result-prefixes="php">
+ <xsl:param name="generate-enclosure"/>
+ <xsl:param name="show-usernames"/>
+
<xsl:output method="xml" indent="yes"/>
<xsl:variable name="domain-name" select="substring-after(//div[@id='profile-block']/@data-profile-id, '@')"/>
<xsl:output method="xml" indent="yes"/>
<xsl:variable name="domain-name" select="substring-after(//div[@id='profile-block']/@data-profile-id, '@')"/>
@@
-36,7
+39,10
@@
<xsl:variable name="item-permalink" select=".//p[@class='muted']/small/a/@href"/>
<item>
<title>
<xsl:variable name="item-permalink" select=".//p[@class='muted']/small/a/@href"/>
<item>
<title>
- <xsl:value-of select="concat($user-name, ': ', normalize-space($item-content))"/>
+ <xsl:if test="$show-usernames = 1">
+ <xsl:value-of select="concat($user-name, ': ')"/>
+ </xsl:if>
+ <xsl:value-of select="normalize-space($item-content)"/>
</title>
<link>
<xsl:value-of select="$item-permalink"/>
</title>
<link>
<xsl:value-of select="$item-permalink"/>
@@
-48,8
+54,10
@@
<xsl:value-of select="php:functionString('Tweeper\Tweeper::strToRssDate', .//abbr[@class='easydate']/@title)"/>
</pubDate>
<description>
<xsl:value-of select="php:functionString('Tweeper\Tweeper::strToRssDate', .//abbr[@class='easydate']/@title)"/>
</pubDate>
<description>
- <xsl:value-of select="concat($user-name, ': ')"/>
<xsl:text disable-output-escaping="yes"><![CDATA[</xsl:text>
<xsl:text disable-output-escaping="yes"><![CDATA[</xsl:text>
+ <xsl:if test="$show-usernames = 1">
+ <xsl:value-of select="concat($user-name, ': ')"/>
+ </xsl:if>
<xsl:copy-of select="$item-content/node()"/>
<xsl:text disable-output-escaping="yes">]]></xsl:text>
</description>
<xsl:copy-of select="$item-content/node()"/>
<xsl:text disable-output-escaping="yes">]]></xsl:text>
</description>