Wie das RSS Element beschreibt das RSS feed.RSS wird geschrieben in XML und wie XML Arbeiten wir einen Blick an, einer welcher tats�chlichen RSS Zufuhr nehmen k�nnen aussieht:
<channel>
Channel information
Items
</channel>
Die F�hrung Informationen und die Einzelteile enthalten auch von den XML Elementen.
Das <channel> Element:
Das RSS <channel> Element ist, wo Einzelteile angezeigt werden. Es ist wie eine RSS Schlagzeile. F�hrung Elemente normalerweise �ndern nicht sehr h�ufig.
Es gibt drei erforderliche Elemente innerhalb des <channel> Elements: <title>, <link> und <description>.
Das <title> Element sollte eine kurze Beschreibung deines Aufstellungsortes und deiner RSS Zufuhr enthalten:
<title>Academic Tutorial RSS</title>
Das <link> Element sollte die Verbindung zur Hauptseite deines Aufstellungsortes definieren:
<link>http://www.academictutorials.com </link>
Das abschlie�ende erforderliche Element ist <description>. Dieses Element sollte deine RSS Zufuhr beschreiben.
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:
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.
Das <channel> Element enth�lt normalerweise die eins und mehr als ein <item> Elemente. Jedes <item> Element definiert einen Artikel oder �eine Geschichte� in der RSS Zufuhr.
Ausserdem gibt es einige wahlweise freigestellte Kindelemente von <channel>. Wir erkl�ren wichtigsten unten.
Das <category> Element:
Das <category>child Element wird benutzt, um eine Kategorie f�r deine Zufuhr zu spezifizieren.
Das <category> Element macht es m�glich, damit RSS aggregators die Aufstellungsorte gruppieren, die auf Kategorie basieren.
Die Kategorie f�r das RSS Dokument oben konnte sein:
<category>Tutorial </category>
Das <copyright> Element:
Das <copyright>child Element teilt �ber Urheberrecht gesichertes Material mit.
Das copyright f�r das RSS Dokument oben konnte sein:
<copyright>2006 Refsnes Data as. All rights reserved.</copyright>
Das <image> Element:
Das <image> Kindelement erlaubt, da� ein Bild angezeigt wird, wenn aggregators eine Zufuhr darstellen.
Das <image> Element hat drei erforderliche Kindelemente:
<url> - definiert das URL zum Bild
<title> - definiert den Text, um anzuzeigen, wenn das Bild nicht gezeigt werden k�nnte
<link> - definiert den Hypertext-Link zur Web site, die die F�hrung anbietet