Academic Tutorials



English | French | Portugese | German | Italian
Google

Home Testimonials Advertise Contact Us About Us Link to Us
Source Codes E-Books Downloads Jobs Web Hosting Chats

RSS Tutorial
RSS Introduction
RSS History
RSS Syntax
RSS Channal
RSS Item
RSS Publish Your Feed
RSS Readers

HTML Tutorials
HTML Tutorial
XHTML Tutorial
CSS Tutorial
TCP/IP Tutorial
CSS 1.0
CSS 2.0
XML Tutorials
XML Tutorial
XSL Tutorial
XSLT Tutorial
DTD Tutorial
Schema Tutorial
XForms Tutorial
XSL-FO Tutorial
XML DOM Tutorial
XLink Tutorial
XQuery Tutorial
XPath Tutorial
XPointer Tutorial
RDF Tutorial
SOAP Tutorial
WSDL Tutorial
RSS Tutorial
WAP Tutorial
Web Services Tutorial
Browser Scripting
JavaScript Tutorial
VBScript Tutorial
DHTML Tutorial
HTML DOM Tutorial
WMLScript Tutorial
E4X Tutorial
Server Scripting
ASP Tutorial
PERL Tutorial
SQL Tutorial
ADO Tutorial
CVS
Python
Apple Script
PL/SQL Tutorial
SQL Server
.NET (dotnet)
Microsoft.Net
ASP.Net
.Net Mobile
C# : C Sharp
ADO.NET
VB.NET
VC++
Multimedia
SVG Tutorial
Flash Tutorial
Media Tutorial
SMIL Tutorial
Photoshop Tutorial
Gimp Tutorial
Matlab
Gnuplot Programming
GIF Animation Tutorial
Scientific Visualization Tutorial
Graphics
Web Building
Web Browsers
Web Hosting
W3C Tutorial
Web Building
Web Quality
Web Semantic
Web Careers
Weblogic Tutorial
SEO
Web Site Hosting
Domain Name
Java Tutorials
Java Tutorial
JSP Tutorial
Servlets Tutorial
Struts Tutorial
EJB Tutorial
JMS Tutorial
JMX Tutorial
Eclipse
J2ME
JBOSS
Programming Langauges
C Tutorial
C++ Tutorial
Visual Basic Tutorial
Data Structures Using C
Cobol
Assembly Language
Mainframe
Forth Programming
Lisp Programming
Pascal
Delphi
Fortran
Oops
Data Ware Housing
CGI Programming
Emacs Tutorial
Gnome
ILU
Soft Skills
Communication Skills
Time Management
Project Management
Team Work
Leadership Skills
Corporate Communication
Negotiation Skills
Database Tutorials
Oracle
MySQL
Operating System
BSD
Symbian
Unix
Internet
IP-Masquerading
IPC
MIDI
Software Testing
Testing
Firewalls
SAP Module
ERP
ABAP
Business Warehousing
SAP Basis
Material Management
Sales & Distribution
Human Resource
Netweaver
Customer Relationship Management
Production and Planning
Networking Programming
Corba Tutorial
Networking Tutorial
Microsoft Office
Microsoft Word
Microsoft Outlook
Microsoft PowerPoint
Microsoft Publisher
Microsoft Excel
Microsoft FrontPage
Microsoft InfoPath
Microsoft Access
Accounting
Financial Accounting
Managerial Accounting
Computer Basics
Basics of Computer


RSS Channel

Previoushome Next



The RSS element describes the RSS feed.RSS is written in XML, and how XML works we can take a look at what an actual RSS feed looks like:



<channel>
Channel information
Items
</channel>


The channel information and items also comprise of XML elements.

The <channel> Element:

The RSS <channel> element is where items are displayed. It is like an RSS headline. Channel elements normally do not change very often.

There are three required elements inside the <channel> element: <title>, <link>, and <description>.


The <title> element should contain a short description of your site and your RSS feed:

<title>Academic Tutorial RSS</title>


The <link> element should define the link to your site's main page:

<link>http://www.academictutorials.com </link>


The final required element is <description>. This element should describe your RSS feed.

<description>Acedemic Tutorials Site</description>




Optional Elements in <channel>:

Element Description
<category> Defines one or more categories the channel belongs to
<cloud> Allows notification of updates.
<copyright> Notifies about copyrighted material
<docs> An URL to documentation on the RSS version the channel is using
<generator> If the channel is created using an automatic generator, this is defined here
<image> Inserts a picture to the channel.
<language> Describes what language the channel uses. By using this tag it is possible for RSS aggregators to group sites based on language.
<lastBuildDate> Defines the last date the channel was modified
<managingEditor> Defines an e-mail address for the editor of the site
<pubDate> Defines the last publication date for the channel
<rating> Parental control rating of the page
<skipDays> Defines days where it is unnecessary for RSS aggregators to update the feed
<skipHours> Defines hours where it is unnecessary for RSS aggregators to update the feed
<textInput> Creates a text input for the channel
<ttl> (ttl = time to live) Defines how many minutes the channel can stay cached before refreshing
<webMaster> Defines an e-mail address for the webmaster of the site



The <item> element

The <item> element is where you link to and describe the update on your site.

The RSS <item> is where updates are show. It is kind of like a headline for an article. <item> elements are created every time there is an update on your site that you would like displayed in your RSS feed.

There are many optional <item> elements, but either the <title> or the <description> are required.

A RSS should include the <title>, <link> and <description> elements.

The first element is your news item's title.This give short description of your site and also your RSS feed.


<title>Vyom's New Tutorial</title>


The next element is the link to the part of your site the item is referring to:

<link>http://www.academictutorials.com/rss </link>


The next line is the RSS feed description. This should describe your RSS feed item.

<description>BizLiner RSS Tutorial</description>




Optional Elements in <item>

Element Description
<author> Defines the author of the item.
<category> Places the item in one or more of the channel categories.
<comments> An URL to a comment's page for the item.
<enclosure> Describes a media object related to the item
<guid> GUID = Globally Unique Identifier. Defines a unique identifier to the item.
<pubDate> The publication date for the item.
<source> Is used to define a third party source.



The <channel> element usually contains one and more than one <item> elements. Each <item> element defines an article or "story" in the RSS feed.

Furthermore, there are several optional child elements of <channel>. We will explain the most important ones below.




The <category> Element:

The <category>child element is used to specify a category for your feed.

The <category> element makes it possible for RSS aggregators to group sites based on category.

The category for the RSS document above could be:


<category>Tutorial </category>




The <copyright> Element:

The <copyright>child element notifies about copyrighted material.

The copyright for the RSS document above could be:


<copyright>2006 Refsnes Data as. All rights reserved.</copyright>




The <image> Element:

The <image> child element allows an image to be displayed when aggregators present a feed.

The <image> element has three required child elements:

<url> - Defines the URL to the image

<title> - Defines the text to display if the image could not be shown

<link> - Defines the hyperlink to the website that offers the channel

The image for the RSS document above could be:


<image>

<url>http://www.academictutorial.com/images/rss.gif </url>
<title>academictutorial.com </title>
<link>http://www.academictutorial.com </link>

</image>


 Related RSS Tutorial Books
Unleash the marketing power of RSS
Marketing success RSS
Syndicating Web Sites with RSS Feeds For Dummies ®
RSS for Educators: Blogs, Newsfeeds, Podcasts, and Wikis in the Classroom
More Link » »
 
 RSS Tutorial FAQs
What is RSS?
Why syndicate your headlines with RSS?
How can I create an RSS file?
How can I promote my RSS file?
What does RSS stand for?
More Link » »
 
 RSS Tutorial Interview Questions
State some disadvantages of XML?
State and explain about XML encoding errors?
What is RSS?
What is headline syndication?
Why syndicate your headlines with RSS?
More Link » »
 
 RSS Tutorial Articles
Introduction to RSS
Benefits to RSS
Why Create RSS?
How to use RSS?
The dark side of RSS
More Link » »
 
 RSS Tutorial News
All The News You Choose -- On One Page
How to access RSS?
Medical RSS/XML News Feeds
RSS
RSS Incompatibilities
More Link » »


Share And Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
  • blinkbits
  • BlinkList
  • blogmarks
  • co.mments
  • connotea
  • del.icio.us
  • De.lirio.us
  • digg
  • Fark
  • feedmelinks
  • Furl
  • LinkaGoGo
  • Ma.gnolia
  • NewsVine
  • Netvouz
  • RawSugar
  • Reddit
  • scuttle
  • Shadows
  • Simpy
  • Smarking
  • Spurl
  • TailRank
  • Wists
  • YahooMyWeb

Previoushome Next

Keywords:RSS Channel


HTML Quizes
HTML Quiz
XHTML Quiz
CSS Quiz
TCP/IP Quiz
CSS 1.0 Quiz
CSS 2.0 Quiz
XML Quizes
XML Quiz
XSL Quiz
XSLT Quiz
DTD Quiz
Schema Quiz
XForms Quiz
XSL-FO Quiz
XML DOM Quiz
XLink Quiz
XQuery Quiz
XPath Quiz
XPointer Quiz
RDF Quiz
SOAP Quiz
WSDL Quiz
RSS Quiz
WAP Quiz
Web Services Quiz
Browser Scripting Quizes
JavaScript Quiz
VBScript Quiz
DHTML Quiz
HTML DOM Quiz
WMLScript Quiz
E4X Quiz
Server Scripting Quizes
ASP Quiz
PERL Quiz
SQL Quiz
ADO Quiz
CVS Quiz
Python Quiz
Apple Script Quiz
PL/SQL Quiz
SQL Server Quiz
.NET (dotnet) Quizes
Microsoft.Net Quiz
ASP.Net Quiz
.Net Mobile Quiz
C# : C Sharp Quiz
ADO.NET Quiz
VB.NET Quiz
VC++ Quiz
Multimedia Quizes
SVG Quiz
Flash Quiz
Media Quiz
SMIL Quiz
Photoshop Quiz
Gimp Quiz
Matlab Quiz
Gnuplot Programming Quiz
GIF Animation Quiz
Scientific Visualization Quiz
Graphics Quiz
Web Building  Quizes
Web Browsers Quiz
Web Hosting Quiz
W3C Quiz
Web Building Quiz
Web Quality Quiz
Web Semantic Quiz
Web Careers Quiz
Weblogic Quiz
SEO Quiz
Web Site Hosting Quiz
Domain Name Quiz
Java Quizes
Java Quiz
JSP Quiz
Servlets Quiz
Struts Quiz
EJB Quiz
JMS Quiz
JMX Quiz
Eclipse Quiz
J2ME Quiz
JBOSS Quiz
Programming Langauges Quizes
C Quiz
C++ Quiz
Visual Basic Quiz
Data Structures Using C Quiz
Cobol Quiz
Assembly Language Quiz
Mainframe Quiz
Forth Programming Quiz
Lisp Programming Quiz
Pascal Quiz
Delphi Quiz
Fortran Quiz
Oops Quiz
Data Ware Housing Quiz
CGI Programming Quiz
Emacs Quiz
Gnome Quiz
ILU Quiz
Soft Skills Quizes
Communication Skills Quiz
Time Management Quiz
Project Management Quiz
Team Work Quiz
Leadership Skills Quiz
Corporate Communication Quiz
Negotiation Skills Quiz
Database Quizes
Oracle Quiz
MySQL Quiz
Operating System Quizes
BSD Quiz
Symbian Quiz
Unix Quiz
Internet Quiz
IP-Masquerading Quiz
IPC Quiz
MIDI Quiz
Software Testing Quizes
Testing Quiz
Firewalls Quiz
SAP Module Quizes
ERP Quiz
ABAP Quiz
Business Warehousing Quiz
SAP Basis Quiz
Material Management Quiz
Sales & Distribution Quiz
Human Resource Quiz
Netweaver Quiz
Customer Relationship Management Quiz
Production and Planning Quiz
Networking Programming Quizes
Corba Quiz
Networking Quiz
Microsoft Office Quizes
Microsoft Word Quiz
Microsoft Outlook Quiz
Microsoft PowerPoint Quiz
Microsoft Publisher Quiz
Microsoft Excel Quiz
Microsoft FrontPage Quiz
Microsoft InfoPath Quiz
Microsoft Access Quiz
Accounting Quizes
Financial Accounting Quiz
Managerial Accounting Quiz
Computer Basics Quizes
Basics of Computer Quiz
Copyright © 2008. Academic Tutorials.com. All rights reserved Privacy Policies | About Us
Our Portals : Academic Tutorials | Best eBooksworld | Beyond Stats | City Details | Interview Questions | Discussions World | Excellent Mobiles | Free Bangalore | Give Me The Code | Gog Logo | Indian Free Ads | Jobs Assist | New Interview Questions | One Stop FAQs | One Stop GATE | One Stop GRE | One Stop IAS | One Stop MBA | One Stop SAP | One Stop Testing | Quick2Host | Quick2Host Mirror | Quick Site Kit | Sirf Dosti | Source Codes World | Tasty Food | Tech Archive | Testing Interview Questions | Tests World | The Galz | Top Masala | Vyom | Vyom eBooks | Vyom International | Vyom Links | Vyoms | Vyom World
Copyright © 2003-2008 Vyom Technosoft Pvt. Ltd., All Rights Reserved.