|
Home >> FAQs/Tutorials >> RSS Tutorials >> Index
RSS FAQs - Introduction to RSS (Really Simple Syndication) Basics
By: FYIcenter.com
Part:
1
2
(Continued from previous part...)
What RSS 2.0 Files Look Like?
A RSS 2.0 file looks like the sample RSS 2.0 document below:
<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>Developer FAQs, Tips and Tutorials</title>
<link>http://dev.fyicenter.com/faq/</link>
<description>Massive collection of frequently asked
questions by developers with clear answers and
tutorials tips.
</description>
<language>en-us</language>
<pubDate>Sat, 1 Jul 2006 04:00:00 GMT</pubDate>
<webMaster>noreply@fyicenter.com</webMaster>
<item>
<title>RSS FAQs and Tutorial Tips</title>
<link>http://dev.fyicenter.com/faq/rss/</link>
<description>A collection of FAQs on RSS and Atom
introduction and generation of feed files.</description>
<pubDate>Sat, 1 Jul 2006 04:00:00 GMT</pubDate>
<guid>http://dev.fyicenter.com/faq/rss/</guid>
</item>
</channel>
</rss>
What Atom 1.0 Files Look Like?
An Atom 1.0 file looks like the sample Atom 1.0 document below:
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Atom FAQs, Tips and Tutorials</title>
<subtitle>The first Atom document example</subtitle>
<link href="http://dev.fyicenter.com/faq/rss/"/>
<updated>2006-07-13T18:30:02Z</updated>
<author>
<name>FYIcenter.com</name>
<email>noreply@fyicenter.com</email>
</author>
<id>urn:uuid:60a76c80-d399-11d9-b91C-0003939e0af6</id>
<entry>
<title>Introduction to Atom</title>
<link href="http://dev.fyicenter.com/faq/rss/index.html"/>
<id>urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a</id>
<updated>2006-07-13T18:30:02Z</updated>
<summary>A collection of 7 FAQs to introduce you the
basics of RSS and Atom for Website syndication.</summary>
</entry>
</feed>
Part:
1
2
|