473,406 Members | 2,336 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

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 2015


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*******@airpost.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
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...
2
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
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...
15
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...
0
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...
1
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...
2
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...
7
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...
2
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...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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...
0
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.