RSS is an acronym for either "RDF Site Summary" (whereas RDF means "Rich Data Format"), or "Really Simple Syndication".
The RSS 1.0 Specification [1] says:
RDF Site Summary (RSS) is a lightweight multipurpose extensible metadata description and syndication format. RSS is an XML application, conforms to the W3C's RDF specification and is extensible via XML-namespace and/or RDF based modularization.
RSS is a format consisting of several concurring versions and dialects. Most common are the version 0.91, 1.0 and 2.0. You can look up the history of RSS [2] to see how that came about. A new format called Atom is considered to take on the job of advancing the technology in the future.
However the basic principle of each syndication format is the same: It's there to make your valuable data (your articles) independent from your homepage. To share your articles for other aggregators or web pages. And most of all, to make your articles easily readable by special RSS readers.
Those utilities can read many feeds at once and make it easy for the reader to be notified on updates to your site.
s9y supports all known and documented RSS versions, Atom [3] 0.3 and 1.0, and OPML [4] 1.0.
If you enable the Syndication Sidebar plugin you can select which versions you want to make public to your audience. The link to those RDF/XML files can be interpreted by most RSS readers and contain additional information to your entries: Number of Comments, Link to Comments, a small logo for your feed, mail contact adresses and even License information.
The RSS feature of PHP also supports Conditional Get for RSS Feeds [5].
The file rss.php is responsible for creating your feed items. It can take versions HTTP GET variables:
You can combine each of the parameters with each other to construct your individual URLs:
http://yourblog/serendipity/rss.php?version=1.0&category=2 -- Display a RSS 1.0 feed of your category #2 http://yourblog/serendipity/rss.php?version=1.0&category=2;4;6 -- Display a RSS 1.0 feed of your category #2, 4 & 6 http://yourblog/serendipity/rss.php?version=2.0&type=comments -- Display a RSS 2.0 feed of all your comments http://yourblog/serendipity/rss.php?version=1.0&category=3&type=comments -- Display a RSS 1.0 feed of all comments in your category #3
As most blog applications syndicate their data with the RSS format, this is ideal for importing and exporting data. If you switched from Moveable Type to Serendipity and want to import your entries, you can easily switch to your Administration Suite and click on Import Export. There you can enter the URL to your RSS-feed of your Moveable Type installation and click in Import.
You can also migrate your s9y data to a different blog to specify the URL to your RSS-feed.
Note that the RSS standard usually allows for 15 entries, so you would not be able to Import your entire blog database. Serendipity supports exporting all items using the "all" parameter, so it is possible that other advanced weblogs can do the same. If you are handy with SQL, it is a relatively painless process to write a insert into ... select statement to handle your import, if the underlying importing database is compatible to the simple serendipity database layout.
URL of this document:
http://www.s9y.org/49.html
Links:
[1] http://www.purl.org/rss/1.0/
[2] http://goatee.net/2003/rss-history.html
[3] http://www.atomenabled.org/
[4] http://www.opml.org/
[5] http://www.s9y.org/42.html