Index: build.xml
===================================================================
--- build.xml	(revision 7:5b46493979c9)
+++ build.xml	(revision 8:ad0ee12d13fd)
@@ -31,4 +31,15 @@
 		</xslt>
 		
+		<!-- RSS --> 
+		<xslt in="${výstup}/atom.xml" out="${výstup}/rss.xml" style="${šablona}/rss.xsl">			
+			<classpath location="/usr/share/java/saxonb-9.0.jar"/>
+			<classpath location="${funkce}"/>			
+			<factory name="net.sf.saxon.TransformerFactoryImpl">
+				<attribute name="http://saxon.sf.net/feature/allow-external-functions" value="true"/>				
+			</factory>
+		</xslt>
+		
+		<!-- TODO: Sitemap.xml -->
+		
 	</target>
 	
Index: šablona/rss.xsl
===================================================================
--- šablona/rss.xsl	(revision 8:ad0ee12d13fd)
+++ šablona/rss.xsl	(revision 8:ad0ee12d13fd)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet version="2.0"
+	xmlns:a="http://www.w3.org/2005/Atom"
+	xmlns:g="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/prostor"
+	xmlns:j="java:cz.frantovo.xmlWebGenerator.Funkce"
+	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+	xmlns:fn="http://www.w3.org/2005/xpath-functions"
+	xmlns:atom="http://www.w3.org/2005/Atom"
+	exclude-result-prefixes="fn g j a">
+	<xsl:output	method="xml" indent="yes" encoding="UTF-8"/>
+	
+	<xsl:template match="/">		
+		<rss version="2.0">
+			<channel>
+				<xsl:variable name="url" select="a:feed/a:link[not(@rel)]/@href"/>
+				<title><xsl:value-of select="a:feed/a:title"/></title>
+				<link><xsl:value-of select="$url"/></link>
+				<description><xsl:value-of select="a:feed/a:subtitle"/></description>				
+				<atom:link rel="self" href="{$url}rss.xml"/>
+				<xsl:apply-templates select="a:feed/a:entry"/>
+			</channel>
+		</rss>		
+	</xsl:template>
+	
+	<xsl:template match="a:entry">
+		<item>		
+			<title><xsl:value-of select="a:title"/></title>
+			<link><xsl:value-of select="a:link/@href"/></link>
+			<description><xsl:value-of select="a:summary"/></description>
+			<guid><xsl:value-of select="a:id"/></guid>
+			<pubDate><xsl:value-of select="format-dateTime(a:updated,
+                '[FNn,*-3], [D01] [MNn,*-3] [Y0001] [H01]:[m01]:[s01] [Z]',
+                'en',
+                'ISO',
+                'US')"/></pubDate>		
+		</item>
+	</xsl:template>
+	
+</xsl:stylesheet>
Index: šablona/stránka.xsl
===================================================================
--- šablona/stránka.xsl	(revision 6:801a8935caf7)
+++ šablona/stránka.xsl	(revision 8:ad0ee12d13fd)
@@ -20,6 +20,6 @@
 			<head>
 				<title><xsl:value-of select="g:stránka/g:nadpis"/></title>
-				<link title="Novinky (Atom)" href="atom.xml" type="application/atom+xml" rel="alternate" />
-				<link title="Novinky (RSS)" href="rss.xml" type="application/atom+xml" rel="alternate" />				
+				<link title="Novinky (Atom)" href="atom.xml" type="application/atom+xml" rel="alternate"/>
+				<link title="Novinky (RSS)"  href="rss.xml"  type="application/rss+xml"  rel="alternate"/>				
 			</head>
 			<body>
