<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: RDFa in Ruby, a First Stab</title>
	<atom:link href="http://badpopcorn.com/blog/2007/03/13/rdfa-in-ruby-a-first-stab/feed/" rel="self" type="application/rss+xml" />
	<link>http://badpopcorn.com/blog/2007/03/13/rdfa-in-ruby-a-first-stab/</link>
	<description>Solutions for anything... except popcorn.</description>
	<lastBuildDate>Mon, 22 Feb 2010 05:19:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ben</title>
		<link>http://badpopcorn.com/blog/2007/03/13/rdfa-in-ruby-a-first-stab/comment-page-1/#comment-6141</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Wed, 14 Mar 2007 22:46:57 +0000</pubDate>
		<guid isPermaLink="false">http://badpopcorn.com/2007/03/13/rdfa-in-ruby-a-first-stab/#comment-6141</guid>
		<description>Hi Mark,

I&#039;ve only started creating some test feeds to flesh out how RDFa in Atom looks. I think there are a few general ways that a developer will use RDF in Entry Resources. Pardon some missing namespaces, the following examples are illustrative.

1. To make the Atom Entry info available as RDF. For example:
&lt;entry about=&quot;http://example.com/myentry/id&quot;&gt;
  &lt;author&gt;
    &lt;name property=&quot;dc:author&quot;&gt;John Smith&lt;/name&gt;
  &lt;/author&gt;
&lt;/entry&gt;

2. For other metadata. That is, I have an Entry document that represents some abstract Blog Post. I want to add a geolocation to it.
&lt;entry about=&quot;http://example.com/myentry/id&quot;
  xmlns:geo=&quot;geonamespace&quot;&gt;
  &lt;author&gt;
    &lt;name property=&quot;dc:author&quot;&gt;John Smith&lt;/name&gt;
  &lt;/author&gt;
  &lt;meta property=&#039;geo:lat&#039;&gt;51.47026&lt;/meta&gt;
  &lt;meta property=&#039;geo:long&#039;&gt;-2.59466&lt;/meta&gt;
&lt;/entry&gt;

3. Represent the actual resource. For example, an entry that represents some resource with the listed attributes-- in this case a wooden plank.
&lt;entry about=&quot;http://example.com/myentry/id&quot;
  xmlns:myns=&quot;http://example.com/myns#&quot;&gt;
  &lt;content type=&quot;xhtml&quot;&gt;
    &lt;div&gt;
      &lt;span property=&quot;myns:length&quot;&gt;10feet&lt;/span&gt;
      &lt;span property=&quot;myns:width&quot;&gt;12feet&lt;/span&gt;
      &lt;span property=&quot;myns:height&quot;&gt;1inch&lt;/span&gt;
      &lt;span property=&quot;myns:material&quot;&gt;wood&lt;/span&gt;
    &lt;/div&gt;
  &lt;/content&gt;
&lt;/entry&gt;

As for #2, I still am thinking about the pros/cons/differences of RDFa and Atom Extensions. For example:

&lt;entry about=&quot;http://example.com/myentry/id&quot;
  xmlns:geo=&quot;geonamespace&quot;&gt;
  &lt;meta property=&#039;geo:lat&#039;&gt;51.47026&lt;/meta&gt;
  &lt;meta property=&#039;geo:long&#039;&gt;-2.59466&lt;/meta&gt;
&lt;/entry&gt;

vs

&lt;entry about=&quot;http://example.com/myentry/id&quot;
  xmlns:geo=&quot;geonamespace&quot;&gt;
  &lt;geo :lat&gt;51.47026&lt;/geo&gt;
  &lt;geo :long&gt;-2.59466&lt;/geo&gt;
&lt;/entry&gt;


And thanks for the heads up, I shall look at the new draft.</description>
		<content:encoded><![CDATA[<p>Hi Mark,</p>
<p>I&#8217;ve only started creating some test feeds to flesh out how RDFa in Atom looks. I think there are a few general ways that a developer will use RDF in Entry Resources. Pardon some missing namespaces, the following examples are illustrative.</p>
<p>1. To make the Atom Entry info available as RDF. For example:<br />
&lt;entry about=&#8221;http://example.com/myentry/id&#8221;&gt;<br />
  &lt;author&gt;<br />
    &lt;name property=&#8221;dc:author&#8221;&gt;John Smith&lt;/name&gt;<br />
  &lt;/author&gt;<br />
&lt;/entry&gt;</p>
<p>2. For other metadata. That is, I have an Entry document that represents some abstract Blog Post. I want to add a geolocation to it.<br />
&lt;entry about=&#8221;http://example.com/myentry/id&#8221;<br />
  xmlns:geo=&#8221;geonamespace&#8221;&gt;<br />
  &lt;author&gt;<br />
    &lt;name property=&#8221;dc:author&#8221;&gt;John Smith&lt;/name&gt;<br />
  &lt;/author&gt;<br />
  &lt;meta property=&#8217;geo:lat&#8217;&gt;51.47026&lt;/meta&gt;<br />
  &lt;meta property=&#8217;geo:long&#8217;&gt;-2.59466&lt;/meta&gt;<br />
&lt;/entry&gt;</p>
<p>3. Represent the actual resource. For example, an entry that represents some resource with the listed attributes&#8211; in this case a wooden plank.<br />
&lt;entry about=&#8221;http://example.com/myentry/id&#8221;<br />
  xmlns:myns=&#8221;http://example.com/myns#&#8221;&gt;<br />
  &lt;content type=&#8221;xhtml&#8221;&gt;<br />
    &lt;div&gt;<br />
      &lt;span property=&#8221;myns:length&#8221;&gt;10feet&lt;/span&gt;<br />
      &lt;span property=&#8221;myns:width&#8221;&gt;12feet&lt;/span&gt;<br />
      &lt;span property=&#8221;myns:height&#8221;&gt;1inch&lt;/span&gt;<br />
      &lt;span property=&#8221;myns:material&#8221;&gt;wood&lt;/span&gt;<br />
    &lt;/div&gt;<br />
  &lt;/content&gt;<br />
&lt;/entry&gt;</p>
<p>As for #2, I still am thinking about the pros/cons/differences of RDFa and Atom Extensions. For example:</p>
<p>&lt;entry about=&#8221;http://example.com/myentry/id&#8221;<br />
  xmlns:geo=&#8221;geonamespace&#8221;&gt;<br />
  &lt;meta property=&#8217;geo:lat&#8217;&gt;51.47026&lt;/meta&gt;<br />
  &lt;meta property=&#8217;geo:long&#8217;&gt;-2.59466&lt;/meta&gt;<br />
&lt;/entry&gt;</p>
<p>vs</p>
<p>&lt;entry about=&#8221;http://example.com/myentry/id&#8221;<br />
  xmlns:geo=&#8221;geonamespace&#8221;&gt;<br />
  &lt;geo :lat&gt;51.47026&lt;/geo&gt;<br />
  &lt;geo :long&gt;-2.59466&lt;/geo&gt;<br />
&lt;/entry&gt;</p>
<p>And thanks for the heads up, I shall look at the new draft.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Birbeck</title>
		<link>http://badpopcorn.com/blog/2007/03/13/rdfa-in-ruby-a-first-stab/comment-page-1/#comment-6131</link>
		<dc:creator>Mark Birbeck</dc:creator>
		<pubDate>Wed, 14 Mar 2007 03:02:39 +0000</pubDate>
		<guid isPermaLink="false">http://badpopcorn.com/2007/03/13/rdfa-in-ruby-a-first-stab/#comment-6131</guid>
		<description>Nice work! Although a new draft of the primer came out just yesterday. :)

So just to understand what you&#039;re doing...are you saying that when delivering content by an Atom feed, the content has metadata in it? What sort of content is it? Is it any place that others can consume it at the moment?

All the best,

Mark</description>
		<content:encoded><![CDATA[<p>Nice work! Although a new draft of the primer came out just yesterday. <img src='http://badpopcorn.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So just to understand what you&#8217;re doing&#8230;are you saying that when delivering content by an Atom feed, the content has metadata in it? What sort of content is it? Is it any place that others can consume it at the moment?</p>
<p>All the best,</p>
<p>Mark</p>
]]></content:encoded>
	</item>
</channel>
</rss>
