add RSS 1.1 example file - sfeed_tests - sfeed tests and RSS and Atom files
(HTM) git clone git://git.codemadness.org/sfeed_tests
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit a5bead608d1a1850d77e077d6310446866087560
(DIR) parent 790527e571b2212a764d4c0f8f352880bc23515c
(HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Tue, 1 Aug 2023 18:44:39 +0200
add RSS 1.1 example file
from: http://inamidst.com/rss1.1/#Channel
Diffstat:
A input/sfeed/rss/rss11_example.xml | 35 +++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+), 0 deletions(-)
---
(DIR) diff --git a/input/sfeed/rss/rss11_example.xml b/input/sfeed/rss/rss11_example.xml
@@ -0,0 +1,35 @@
+<Channel xmlns="http://purl.org/net/rss1.1#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ rdf:about="http://www.xml.com/xml/news.rss">
+<title>XML.com</title>
+<link>http://xml.com/pub</link>
+<description>
+ XML.com features a rich mix of information and services
+ for the XML community.
+</description>
+<image rdf:parseType="Resource">
+ <title>XML.com</title>
+ <url>http://xml.com/universal/images/xml_tiny.gif</url>
+</image>
+<items rdf:parseType="Collection">
+ <item rdf:about="http://www.xml.com/pub/a/2005/01/05/restful.html">
+ <title>The Restful Web: Amazon's Simple Queue Service</title>
+ <link>http://www.xml.com/pub/a/2005/01/05/restful.html</link>
+ <description>
+ In Joe Gregorio's latest Restful Web column, he explains that
+ Amazon's Simple Queue Service, a web service offering a queue
+ for reliable storage of transient messages, isn't as RESTful
+ as it claims.
+ </description>
+ </item>
+ <item rdf:about="http://www.xml.com/pub/a/2005/01/05/tr-xml.html">
+ <title>Transforming XML: Extending XSLT with EXSLT</title>
+ <link>http://www.xml.com/pub/a/2005/01/05/tr-xml.html</link>
+ <description>
+ In this month's Transforming XML column, Bob DuCharme reports
+ happily that the promise of XSLT extensibility via EXSLT has
+ become a reality.
+ </description>
+ </item>
+</items>
+</Channel>