You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by ch...@apache.org on 2004/10/06 10:32:12 UTC

svn commit: rev 53855 - forrest/trunk/src/core/context/resources/stylesheets

Author: cheche
Date: Wed Oct  6 01:32:08 2004
New Revision: 53855

Modified:
   forrest/trunk/src/core/context/resources/stylesheets/rss2document.xsl
Log:
Use the channel title for the title of the document


Modified: forrest/trunk/src/core/context/resources/stylesheets/rss2document.xsl
==============================================================================
--- forrest/trunk/src/core/context/resources/stylesheets/rss2document.xsl	(original)
+++ forrest/trunk/src/core/context/resources/stylesheets/rss2document.xsl	Wed Oct  6 01:32:08 2004
@@ -19,7 +19,7 @@
 <xsl:template match="rss">
   <document>
     <header>
-      <title>Example: RSS feed to document</title>
+      <title><xsl:value-of select="channel/title"/></title>
     </header>
     <body>
       <xsl:apply-templates select="channel/item"/>