RSS 1.0 Modules: RSS091

Authors

Gabe Beged-Dov, JFinity Systems LLC
Dan Brickley, ILRT
Rael Dornfest, O'Reilly & Associates
Ian Davis, Calaba, Ltd.
Leigh Dodds, xmlhack
Jonathan Eisenzopf, Whirlwind Interactive
David Galbraith, Moreover.com
R.V. Guha, guha.com
Eric Miller, Online Computer Library Center, Inc.
Eric van der Vlist, Dyomedea

Version

DRAFT 1.1 2000-08-16

Status

Proposed

Rights

Copyright © 2000 by the Authors.

Permission to use, copy, modify and distribute the RSS 1.0 Specification Proposal and its accompanying documentation for any purpose and without fee is hereby granted in perpetuity, provided that the above copyright notice and this paragraph appear in all copies. The copyright holders make no representation about the suitability of the specification for any purpose. It is provided "as is" without expressed or implied warranty.

This copyright applies to the RSS 1.0 Specification Proposal and accompanying documentation and does not extend to the RSS format itself.

Description

The RSS091 provides sideways compatibility with RSS 0.91 by providing a modularized version of the elements added to 0.91. Note that RSS 1.0 does indeed provide an item-level description element, borrowed from RSS 0.91 owing to the ubiquity of this one particular element; you'll note that the RSS091 module does, however, still contain its own compartmentalized copy of an item-level description element.

For more specifics on RSS 0.91, please refer to the RSS specifications in the Resources section of the RSS 1.0 Specification Proposal.

Namespace Declarations

Model

<channel> Elements:

<image> Elements:

<item> Elements:

Example

<?xml version="1.0"?> 

<rdf:RDF 
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
  xmlns:rss091="http://purl.org/rss/1.0/modules/rss091/"
  xmlns="http://purl.org/rss/1.0/"
> 

  <channel 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>
    <rss091:language>en-us</rss091:language>
    <rss091:rating>(PICS-1.1 "http://www.rsac.org/ratingsv01.html"
     l gen true comment "RSACi North America Server" 
     for "http://www.rsac.org" on "1996.04.16T08:15-0500" 
     r (n 0 s 0 v 0 l 0))</rss091:rating>
    <rss091:managingEditor>Edd Dumbill</rss091:managingEditor>
    <rss091:webmaster>(mailto:webmaster@xml.com)</rss091:webmaster>
    <rss091:pubDate>Sat, 01 Jan 2000 12:00:00 GMT</rss091:pubDate>
    <rss091:lastBuildDate>Sat, 01 Jan 2000 12:00:00 GMT</rss091:lastBuildDate>
    <rss091:skipHours rdf:parseType="Literal">
      <rss091:hour>12</rss091:hour>
    </rss091:skipHours>
    <rss091:skipDays rdf:parseType="Literal">
      <rss091:day>Thursday</rss091:day>
    </rss091:skipDays>
  </channel>

  <image rdf:about="http://xml.com/universal/images/xml_tiny.gif">
    <inchannel rdf:resource="http://www.xml.com/xml/news.rss" />
    <title>XML.com</title>
    <link>http://www.xml.com</link>
    <url>http://xml.com/universal/images/xml_tiny.gif</url>
    <rss091:width>88</rss091:width>
    <rss091:height>31</rss091:height>
    <rss091:description>XML.com...</rss091:description>
  </image>

  <item rdf:about="http://xml.com/pub/2000/08/09/xslt/xslt.html" position="1">
    <inchannel rdf:resource="http://www.xml.com/xml/news.rss"/>
    <title>Processing Inclusions with XSLT</title>
    <link>http://xml.com/pub/2000/08/09/xslt/xslt.html</link>
    <rss091:description>
     Processing document inclusions with general XML tools can be 
     problematic. This article proposes a way of preserving inclusion 
     information through SAX-based processing.
    </rss091:description>
  </item>
  
  <item rdf:about="http://xml.com/pub/2000/08/09/rdfdb/index.html" position="2">
    <inchannel rdf:resource="http://www.xml.com/xml/news.rss"/>
    <title>Putting RDF to Work</title>
    <link>http://xml.com/pub/2000/08/09/rdfdb/index.html</link>
    <rss091:description>
     Tool and API support for the Resource Description Framework 
     is slowly coming of age. Edd Dumbill takes a look at RDFDB, 
     one of the most exciting new RDF toolkits.
    </rss091:description>
  </item>

  <textinput rdf:about="http://search.xml.com">
    <inchannel rdf:resource="http://meerkat.oreillynet.com/?_fl=rss1.0" />
    <title>Search XML.com</title>
    <description>Search XML.com's XML collection</description>
    <name>s</name>
    <link>http://search.xml.com</link>
  </textinput>

</rdf:RDF>