blob: 555a2e9976a4f80205c73b5ad3b38b68ad514c68 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:n="http://www.betaversion.org/linotype/news/1.0"
xmlns:h="http://www.w3.org/1999/xhtml">
<xsl:param name="home"/>
<xsl:param name="count"/>
<xsl:template match="/">
<rss version="0.91">
<channel>
<title>Stefano's Linotype</title>
<link>http://www.betaversion.org/~stefano/linotype/</link>
<description>Stefano Mazzocchi's Weblog</description>
<language>en</language>
<xsl:apply-templates select="(//n:news[@online = 'on'])[position() &lt; number($count)]"/>
</channel>
</rss>
</xsl:template>
<xsl:template match="n:news">
<item>
<title><xsl:value-of select="n:title"/></title>
<link><xsl:value-of select="$home"/>/<xsl:value-of select="../@id"/>/</link>
<description><xsl:apply-templates select="h:body"/></description>
</item>
</xsl:template>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>