Jump to content

Really Simple Syndication: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
m Stub-sorting. You can help!. (compu-lang-stub)
Line 69: Line 69:
*[http://my.netscape.com/publish/formats/rss-spec-0.91.html RSS 0.91 Spec, revision 3]
*[http://my.netscape.com/publish/formats/rss-spec-0.91.html RSS 0.91 Spec, revision 3]
*[http://www-106.ibm.com/developerworks/xml/library/x-rss20/ Content feeds with RSS 2.0] - A good IBM Developerworks article on RSS 2.0.
*[http://www-106.ibm.com/developerworks/xml/library/x-rss20/ Content feeds with RSS 2.0] - A good IBM Developerworks article on RSS 2.0.
*[http://news.bbc.co.uk/1/hi/help/3223484.stm What is RSS?] - some infos from [[BBC]] online


{{compu-lang-stub}}
{{compu-lang-stub}}

Revision as of 11:26, 30 July 2005

Really Simple Syndication is a member group of the RSS family for web syndication.. The specification was adapted from Dave Winer's Scripting News and Netscape's RSS 0.91 and is maintained by an advisory board at the Berkman Center for Internet & Society at Harvard Law School. The commonly found versions of Really Simple Syndication are 0.9x and 2.0.x. The specification states that any RSS 0.9x is a valid RSS 2.x document, but not vice versa. Note that RSS 1.0 is an incompatible standard based on the W3C's Resource Description Framework.

The status of Really Simple Syndication as of April 2004 is version 2.0.1.

RSS 2.0 also has an extension to allow "enclosures".

Example

<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>Birthday Bash Interviews</title>
    <link>http://kccnfm100.com/</link>
    <description>Natural Vibrations.</description>
    <language>en-us</language>
    <pubDate>Tue, 10 Jun 2003 04:00:00 GMT</pubDate>

    <lastBuildDate>Tue, 10 Jun 2003 09:41:01 GMT</lastBuildDate>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <generator>Weblog Editor 2.0</generator>
    <managingEditor>editor@example.com</managingEditor>
    <webMaster>webmaster@example.com</webMaster>
    
    <item>
      <title>Star City</title>
      <link>http://liftoff.msfc.nasa.gov/news/2003/news-starcity.asp</link>
      <description>How do Americans get ready to work with Russians aboard the
        International Space Station? They take a crash course in culture, language
        and protocol at Russia's Star City.</description>
      <pubDate>Tue, 03 Jun 2003 09:39:21 GMT</pubDate>
      <guid>http://liftoff.msfc.nasa.gov/2003/06/03.html#item573</guid>
    </item>
    
    <item>
      <description>Sky watchers in Europe, Asia, and parts of Alaska and Canada
        will experience a partial eclipse of the Sun on Saturday, May 31st.</description>
      <pubDate>Fri, 30 May 2003 11:06:42 GMT</pubDate>
      <guid>http://liftoff.msfc.nasa.gov/2003/05/30.html#item572</guid>
    </item>
    
    <item>
      <title>The Engine That Does More</title>
      <link>http://liftoff.msfc.nasa.gov/news/2003/news-VASIMR.asp</link>
      <description>Before man travels to Mars, NASA hopes to design new engines
        that will let us fly through the Solar System more quickly.  The proposed
        VASIMR engine would do that.</description>
      <pubDate>Tue, 27 May 2003 08:37:32 GMT</pubDate>
      <guid>http://liftoff.msfc.nasa.gov/2003/05/27.html#item571</guid>
    </item>
    
    <item>
      <title>Astronauts' Dirty Laundry</title>
      <link>http://liftoff.msfc.nasa.gov/news/2003/news-laundry.asp</link>
      <description>Compared to earlier spacecraft, the International Space
        Station has many luxuries, but laundry facilities are not one of them.
        Instead, astronauts have other options.</description>
      <pubDate>Tue, 20 May 2003 08:56:02 GMT</pubDate>
      <guid>http://liftoff.msfc.nasa.gov/2003/05/20.html#item570</guid>
    </item>
  </channel>
</rss>

See also