Vishal, You are very helpful man. Thanks for this posting. Ambrosio. Post Comments |
|
G'day to Everyone,
Thanks Ambrpsio! i wanna introduce to htis forum by RSS feed. Post Comments |
|
Vishal, In sort RSS is a family of web feed formats used to publish content, such as blogs, news feeds or podcasts. Post Comments |
|
RSS is used to share content between websites. You register your content with companies called aggregators. First, create an RSS document and save it with an .xml extension. Then, upload the file to your website. Next, register with an RSS aggregator. Each day the aggregator searches the registered websites for RSS documents, verifies the link, and displays information about the feed so clients can link to documents that interests them.
Post Comments |
|
I want to add something... RSS was first invented by Netscape, when they were trying to get into the portal business. They wanted an XML format (RSS .90) that would be easy for them to get news stories and information from other sites and have them automatically added to their site. They then came out with RSS .91 and dropped it when they decided to get out of the portal business.
UserLand Software picked up RSS .91 and continued to develop it, coming out with .92, .93, and .94. At the same time as UserLand, a non-commercial group picked up RSS and developed RSS 1.0 based on their interpretation of the original principles of RSS. They based RSS 1.0 on RDF and re-named it RDF Site Summary. UserLand was not happy with RSS 1.0, and continued development of their version of RSS (Really Simple Syndication), eventually releasing RSS 2.0. Which Version of RSS To Use and Does It Matter?
For the purposes of this article, no it doesn't. If you were going to build your own aggregator or a program to read RSS feeds, you would care, but that's not the point of this article.
Here are the basics of RSS (no matter what the version) (view sample RSS - right click or click and hold to open in a new window):
1. It is XML. This means it must be well-formed, include a prolog and DTD, and all elements must be closed. 2. The first element in the document is the <rss> element. This includes a mandatory version attribute. 3. The next element is the <channel> element. This is the main container for all RSS data. 4. The <title> element is the title, either of the entire site (if it's at the top) or of the current item (if it's within an <item>). 5. The <link> element indicates the URL of the Web page that corresponds to the RSS feed, or if it's within an <item>, the URL to that item. 6. The <description> element describes the RSS feed or the item. 7. The <item> element is the meat of the feed. These are all the headlines (<title>), URLs (<link>) and descriptions that will be in your feed.
Using th ose basic elements, you can create an RSS feed of your site. But it can get very tedious to cre ate that feed manually every time you update your site. The best way to create an RSS feed is t o use a tool, such as a Weblog, to create the headlines, links and descriptions for you automat ically. I've listed my favorite blogging programs - all of which will create RSS for you al ong with the HTML for the blog. Post Comments |
|