You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by cr...@apache.org on 2004/09/15 09:40:49 UTC

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

Author: crossley
Date: Wed Sep 15 00:40:49 2004
New Revision: 46092

Added:
   forrest/trunk/src/core/context/resources/stylesheets/rss2document.xsl   (contents, props changed)
Log:
Add a simple transformation for rss to document.


Added: forrest/trunk/src/core/context/resources/stylesheets/rss2document.xsl
==============================================================================
--- (empty file)
+++ forrest/trunk/src/core/context/resources/stylesheets/rss2document.xsl	Wed Sep 15 00:40:49 2004
@@ -0,0 +1,38 @@
+<?xml version='1.0'?>
+<!--
+  Copyright 2002-2004 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+
+<xsl:template match="rss">
+  <document>
+    <header>
+      <title>Example: RSS feed to document</title>
+    </header>
+    <body>
+      <xsl:apply-templates select="channel/item"/>
+    </body>
+  </document>
+</xsl:template>
+
+<xsl:template match="item">
+  <section>
+    <title><xsl:value-of select="title" disable-output-escaping="yes"/></title>
+    <p><link href="{link}"><xsl:value-of select="link"/></link></p>
+    <p><xsl:value-of select="description" disable-output-escaping="yes"/></p>
+  </section>
+</xsl:template>
+
+</xsl:stylesheet>

rss to document (was Re: svn commit: rev 46092...)

Posted by Nicola Ken Barozzi <ni...@apache.org>.
crossley@apache.org wrote:
> Author: crossley
> Date: Wed Sep 15 00:40:49 2004
> New Revision: 46092
> 
> Added:
>    forrest/trunk/src/core/context/resources/stylesheets/rss2document.xsl   (contents, props changed)
> Log:
> Add a simple transformation for rss to document.

:-)

-- 
Nicola Ken Barozzi                   nicolaken@apache.org
             - verba volant, scripta manent -
    (discussions get forgotten, just code remains)
---------------------------------------------------------------------