WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You

WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

1RSS feed Empty RSS feed Wed Jun 15, 2011 3:45 am

Unknown Data

Unknown Data
Registered Member
Registered Member
RSS feed
Make your own RSS feed


RSS is an abbrevation of "Rich Site Summary", "RDF Site Summary" or "Really Simple Syndication" (the last one is mostly used). All the different names have an insight to coding, like the different versions of RSS (0.90, 1.0, 2.0 etc) have one.
The filename on a newsfeed will always have the extension ".rdf", ".xml" or ".rss".

Let's take a look at a normal RSS document. Though you should know, that RSS is a XML document, and because of that, will all RSS documents start with a XML declaration.
Code:
<?xml version="1.0" ?>
Actually is a RSS document buils like a HTML document, just with som other tags. That's how easy it is.
Code:
<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="2.0">
   <channel>
   <item>
      <title></title>
      <link></link>
      <description></description>
   </item>
   </channel>
</rss>
^That's how a RSS document could look like. Now let's take a look at it.

The first line indicates that we use XML version 1.0. The encoding/charset is indicated to iso-8859-1, which I from europe normally uses.
The next line indicates the version of the RSS which is 2.0.
<channel> is (as it stands) indicating the the channel - the source of the news.
<item> is the point that tell us "here do we start the news".
<title> is the title of the news.
<link> is the link to the news itself.
<description> is a short description of the news.

We can also insert an image, which could be placed after the above example.
Code:
<image>
   <title>A news from us!</title>
   <url>http://www.mydomain.com/myimage.png</url>
   <link>http://www.mydomain.com</link>
</image>

<image> indicates we uses an image.
<title> sets the title for the image.
<url> should be equal the url of the image.
<link> will be were the image should be leading us.

That was actually it. But remember! You also need to make a "News Aggregator" or "RSS-Client" to read and recieve your newsfeeds. But I think the most hosts already have one, so just contact them, if you have any doubt or etc.

Notice : This tutorial is copyrighted by WebArtz Forum. You may not publish it on anywhere without written permission from the administrators.



Last edited by Unknown Data on Wed Jun 20, 2012 7:02 pm; edited 1 time in total

http://woops.dk

2RSS feed Empty Re: RSS feed Wed Jun 15, 2011 7:50 pm

RockerMan

RockerMan
Technician
Technician
Great job UD

Tutorial Accepted

http://www.graphics-post.com/

3RSS feed Empty Re: RSS feed Thu Jul 14, 2011 9:36 pm

Unknown Data

Unknown Data
Registered Member
Registered Member
Thank you! Very Happy

http://woops.dk

4RSS feed Empty Re: RSS feed Fri Jul 15, 2011 9:17 am

YanOri

YanOri
Registered Member
Registered Member
You are great as always UD, thanks for the tut Smile

5RSS feed Empty Re: RSS feed Fri Jul 15, 2011 6:24 pm

Unknown Data

Unknown Data
Registered Member
Registered Member
No problem and thank you Very Happy

http://woops.dk

6RSS feed Empty Re: RSS feed Tue Jul 26, 2011 2:16 pm

palmgeo


Registered Member
Registered Member
Thank you so much for the tutorial.

http://www.palmgeo.com

Sponsored content


View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum