I've been working to apply the hCalendar microformat to the events displayed on my web site. However, from my research, I get the impression that microformats are not recommended (or at least looked down upon by some). Instead, RDF seems to be the preferred way for representing semantic-rich information.

However, I'm confounded by RDF. I don't even know where to start. Microformats provide an easy to understand guide for using the hCalendar format. RDF, on the other hand, is written using moon people language.

Is there an RDF alternative to hCalendar? Is there some resource that describes how to implement it? Should I just continue with hCalendar since it's easy to implement?

link|improve this question

35% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Simple google search brought up a spec written in that moonlanguage, which includes a draft XSL from hCalendar to RDF calendar. The moonlanguage therein seems actually pretty reasonable for that moonlanguage, so I suggest that you become fluent in it.

The major problem that most people have, is that RDF is just so damn weird. So, here's a three rule primer.

  1. RDF documents describe a graph, which describe stuff.
  2. All the arrows/nodes are described in terms of "triples", which are "subject, predicate, object", (e.g. "Ball" "HasColor" "Red")
  3. Everything is described in terms of URIs. (e.g. <http://d8uv.org/about/id> <http://xmlns.com/foaf/spec/mbox> <mailto:d8uv@d8uv.org>

With that in your arsenal, then it should be much easier to pull sense from the moonlanguage. Note that I'm not saying "easy", because, again, RDF is damn weird.

My personal advise is to just forget the whole notion, and stick with microformats. They're semantic enough, and won't drive you to insanity. (The type of insanity that leads people to make things like RDF/XML)

link|improve this answer
Thanks so much for the reply. As an aside, another question led me to this - youtube.com/watch?v=ldl0m-5zLz4 - which is a gentle introduction to RDFa. – Gabe Feb 19 '10 at 23:43
Another useful link - SchemaWeb - schemaweb.info - lists some of the most popular RDF vocabularies. – Gabe Feb 19 '10 at 23:48
I cannot find any big adopters of RDF Calendar, although there are several notable adopters of hCalendar (Yahoo!, Wikipedia, Google). One other note, accessibility concerns have been raised about hCalendar's frequent use of <abbr>. sitepoint.com/blogs/2008/06/25/… – Gabe Feb 20 '10 at 0:06
With all the microformats, the abbr-title idiom has been deprecated for the Value Class Pattern. So, use that. hCalendar is being used, is perfectly semantic, and is on-the-whole less nuts than the SemWeb stuff. – d8uv Feb 20 '10 at 1:34
+1 just for the jibe at RDF/XML - everyone should be sensible and just use Turtle – RobV Feb 22 '10 at 10:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.