473,783 Members | 2,577 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Confused about RSS 0.9x/1.0/2.0 or Atom

Hello,
I have a website with image galleries and users can post comments for
the pictures. I want to make the comments available over an RSS-type
feed so that I can check what comments have been posted.
I would like to include a thumbnail of the picture being commented in
the feed data. What feed type should I choose ? RSS 0.9x, 1.0, 2.0 or Atom ?

thanks.

--
luc wastiaux
Jul 20 '05 #1
3 2035


luc wastiaux wrote:

I have a website with image galleries and users can post comments for
the pictures. I want to make the comments available over an RSS-type
feed so that I can check what comments have been posted.
I would like to include a thumbnail of the picture being commented in
the feed data. What feed type should I choose ? RSS 0.9x, 1.0, 2.0 or
Atom ?


I am not familiar enough with the different RSS versions to give advice
but at
http://msdn.microsoft.com/msdnmag/is...4/04/XMLFiles/
there is an article outlining some of the differences and pointing to
further resources defining the different versions so maybe it can help
you as a starting point.

--

Martin Honnen
http://JavaScript.FAQTs.com/

Jul 20 '05 #2
Martin Honnen wrote:


luc wastiaux wrote:

I have a website with image galleries and users can post comments for
the pictures. I want to make the comments available over an RSS-type
feed so that I can check what comments have been posted.
I would like to include a thumbnail of the picture being commented in
the feed data. What feed type should I choose ? RSS 0.9x, 1.0, 2.0 or
Atom ?

I am not familiar enough with the different RSS versions to give advice
but at
http://msdn.microsoft.com/msdnmag/is...4/04/XMLFiles/
there is an article outlining some of the differences and pointing to
further resources defining the different versions so maybe it can help
you as a starting point.


Thanks, that's the best article I have read on the issue so far.
--
luc wastiaux
Jul 20 '05 #3
On Sat, 01 May 2004 11:42:42 +0200, luc wastiaux
<du*******@airp ost.net> wrote:
What feed type should I choose ? RSS 0.9x, 1.0, 2.0 or Atom ?


RSS 1.0 - definitely.

The Aaron Skonnard MSDN article is OK as far as it goes, but it's too
brief to really explain the benefits.

RSS 1.0 is the superior protocol in all ways. It has two main
advantages, the use of RDF, and the fact that Userland still can't
write a decent spec. The RSS 0.92 was infamously inconsistent on
issues such as content encoding, and these grey areas still haven't
been solved in 2.0. In practice this leads to a mess of tag soup (or
more strictly entity soup) and all sorts of problems when you first
encounter an accented character or a Euro symbol in a feed. In the
absence of a clear spec, it's hard to resolve such problems.

RSS 1.0's only disadvantage over the "simple" XML feeds is one extra
level of indirection from the list of items to the items themselves.
In almost all cases, this is a simple lookup within the feed document
itself - something that's trivial with even the simplest of XSLT. So
don't be _afraid_ of RDF. Although RDF can be used in a complex
manner, the way it's used in a simple RSS feed is no problem at all.

For a simple "newsfeed", then 0.92 does everything you need. However
we often want more than this, and that's where RDF shows its worth.
With 1.0 then it's easy to add extra modules. For your image gallery
application, Dublin Core is ideal and will do almost all you might
require. Using RDF as the underlying framework for RSS 1.0 makes
little difference unless you want it to, but it does open up a
processing model for extensible sets of properties that's just not
possible with XML alone.

RDF also has excellent documentation at the W3C site - at least since
February 2004. If you were put off in the past by the frightening
docs in '99, then take another look.

The reason why 1.0 is so much better is because of this modularity.
1.0 is smaller than the others, yet more capable. 2.0 has now
collected some of 1.0's metadata features, but only by adding them to
the core element set, in a manner that's RSS specific. With 0.92,
0.93, 0.94... this was getting ridiculous, as every new version added
another element from DC, generating a new RSS version that still
wasn't as capable as 1.0

Metadata is a communication problem, not a publishing problem. There's
no point in putting the stuff out unless the destination can read and
understand it. It's crucial to use popular open standards like DC for
this - it makes your feeds readable, and it makes them easily
transcodable into other non-RSS roles, such as integrating with an
image library.

One caveat with RSS 1.0 is to be careful with use of the content
module. Although it works and is useful, many RSS readers are still
based on 0.9* code with extensions for new properties. They may fail
to understand content encoded through the content module (try reading
the two versions of the Belle de Jour weblog, syndicated onto
LiveJournal)

Echo (aka Atom) is the idea that the solution to too many personal
pissing contests is to start yet another one.
--
Smert' spamionam
Jul 20 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1523
by: Andy Dingley | last post by:
I'm just building my first Atom feeds (at http://gamesradar.com/rss/ps2/ should you care ) One of the requirements here is to include lots of rich media (screenshots) with each entry. There could be a dozen in each, and there may be a thumbnail/full-size pair too. Maybe even video clips. Size is _not_ an issue here, as the feed is intended for transferring content to partners who really do want it all, not just casual readers looking...
2
2655
by: Just close your eyes and see | last post by:
Hello All can any one help me where is the windows atom table and how to navigate it, and how to add and delete values from it thx
0
1374
by: banjolibrarian | last post by:
I have been setting up RSS and Atom feeds for our library's podcasts. The RSS feed works fine, but when I subscribe to the Atom feed (via Bloglines), the link to the file itself defaults to blogspot.com. Any help would be appreciated. The full contents of southlakelibrary.atom are listed below: <atom:feed xmlns:atom="http://www.w3.org/2005/Atom"> <atom:id>http://www.cityofsouthlake.com/library/podcasts.asp</atom:id>
15
2343
by: Brady Love | last post by:
I am currently working an an app that will post and edit blogs on blogger. Right now I have it so I can recive a list of the blogs and the content of those blogs using Atomizer. This is my first program where I am accessing data over the net.When I go to retrieve the list of blogs my program acts like it is locked up/frozen for a few seconds and then when it is done it goes back to normal. Does anyone know how I would get rid of the...
0
1691
by: S.T | last post by:
Hi! I've spend this weekend trying and coding a php-based atom- and rss-feed writer. I don't know if this is the right place for my questions. However, since both feeds are based on xml, maybe someone can help. I understand that I have to replace all unknown entities, such as "&auml;". I wonder what's the common way to do so. For XML-Documents, I'd prefer to make use of an external DTD, say, referring to
1
1530
by: yawnmoth | last post by:
I recently saw a phpBB modification that presented feeds in RSS 0.91, RSS 1.0, RS 2.0, and Atom 1.0. In contrast, sites like wikipedia (when viewing article history) only seem to offer one version of RSS and one version of Atom. Digg only offers one version of RSS (2.0). My question is... just how many versions of RSS / Atom should one try to support? Is this phpBB modification overkill? Is Digg not providing enough options?
2
2218
by: Hakuin | last post by:
Hello! I have to fetch and syndicate some data from a atom feed (blogger's) in asp.net 2.0; I read I need a xml schema to work on the xml as a datagrid, but I can't find on the internet a atom schema. Where can I get it? thanks
7
4578
by: js | last post by:
Hi, I'm looking for RSS/ATOM generator I can use in Python. I searched on pypi and the other places but I couldn't find any options on this. (I found many parsers, though) Is there any de-fact standard RSS/ATOM generator? (especially, I'd like to create Atom's) Do I have to do it myself from scratch? Thanks in advance.
2
1805
by: Brent | last post by:
I'm new to XML namespaces, and I seem to be missing something obvious in this code snippet, which is trying to retrieve the feed/entry nodes from an XPathNavigator document: XmlNamespaceManager mgr = new XmlNamespaceManager(xpNav.NameTable); mgr.AddNamespace("atom", "http://www.w3.org/2005/Atom"); XPathExpression itemsExpr = xpNav.Compile("/atom:feed/ atom:entry/");
0
9643
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10315
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10147
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10083
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9946
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4044
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3645
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2877
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.