- From: Ben Adida <ben@mit.edu>
- Date: Sun, 29 Jan 2006 17:23:55 -0500
- To: public-rdf-in-xhtml task force <public-rdf-in-xhtml-tf@w3.org>
Hi all, Here's my first pass at doing RSS (1.0) in RDF/A. I'm using RSS 1.0 because it's already RDF. Note how this brings up the issue of how we handle rdf:Seq and other RDF containers. ==================== <section id="newsfeed" about="#newsfeed"> <h2 property="rss:title">Shutr News Feed</h2> by <a rel="rss:link" href="http://shutr.net/">Shutr</a>. <p property="rss:description"> This news feed tells you everything about Shutr. </p> <img rel="rss:image" src="http://shutr.net/logo.png" /> <link rel="rss:items" href="#items" /> <ul id="#items" role="rdf:Seq"> <li rel="rdf:_1" href="#item_56">News Item 56</li> <li rel="rdf:_2" href="#item_57">News Item 57</li> <li rel="rdf:_3" href="#item_58">News Item 58</li> </ul> </section> <section id="item_56" about="#item_56" role="rss:item"> <link rel="rss:link" href="#item_56" /> <h3 property="rss:title">Shutr goes live!</h3> <p property="rss:description"> Shutr has gone live! </p> </section> .... ====================== -Ben
Received on Sunday, 29 January 2006 22:24:01 UTC