- From: Karl Dubost <karl+w3c@la-grange.net>
- Date: Tue, 9 Dec 2008 11:30:52 -0500
- To: public-rdfa@w3.org
Hi, I have a list of events and locations which is very *simple*. <ul> <li class="perso">2008-11-28 - Déménagement vers Montréal, Canada</li> <li class="perso">2008-10-26:2008-11-03 - France</li> <li class="w3c">2008-10-15:2008-10-25 - W3C Technical Plenary, Cannes Mandelieu, France</li> … </ul> I was trying to describe it and see if I could make it richer to extract the data later on. In the previous list there are two types of events * one time (2008-11-28) * duration (2008-10-15:2008-10-25) There is also a mix of location and sometimes description. Before going further, I wanted to check if this following markup would make sense. <ul> <li typeof="event:Vevent" class="perso"> <span property="event:dtstart" content="2008-11-28">28 novembre 2008</span> - <span property="event:description">Déménagement</span> vers <span property="event:location">Montréal, Canada</span> </li> <li typeof="event:Vevent" class="perso"> <span property="event:dtstart" content="2008-11-26">26 octobre 2008</span> au <span property="event:dtend" content="2008-11-03">3 novembre 2008</span> - <span property="event:location">France</span> </li> <li typeof="event:Vevent" class="w3c"> <span property="event:dtstart" content="2008-10-15">15 octobre 2008</span> au <span property="event:dtend" content="2008-10-25">25 octobre 2008</span> - <span property="event:description">W3C Technical Plenary</span>, <span property="event:location">Cannes, Mandelieu, France</span> </li> … </ul> -- Karl Dubost Montréal, QC, Canada
Received on Tuesday, 9 December 2008 18:31:23 UTC