<?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"
	>
<channel>
	<title>Comments on: Review: hReview WordPress Plugin</title>
	<atom:link href="http://garyjones.co.uk/blog/hreview-wordpress-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://garyjones.co.uk/blog/hreview-wordpress-plugin/</link>
	<description>Close your eyes, look at the world</description>
	<pubDate>Wed, 23 Jul 2008 18:31:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Gazza</title>
		<link>http://garyjones.co.uk/blog/hreview-wordpress-plugin/#comment-25</link>
		<dc:creator>Gazza</dc:creator>
		<pubDate>Sat, 19 Jan 2008 04:56:45 +0000</pubDate>
		<guid isPermaLink="false">http://garyjones.co.uk/blog/hreview-wordpress-plugin/#comment-25</guid>
		<description>Hi Andrew,

I believe your hReview Plugin does have a small bug. In all the examples I can find (see below), the fn of the reviewed item should be inside the item level (a bit like fn should be inside a vcard, not at the same level):

So:
&lt;code&gt;
&#60;p class="item"span class="fn"&gt;Something&#60;/span&gt;&#60;/p&gt;
&lt;/code&gt;
is fine, whereas:
&lt;code&gt;
&#60;p class="item fn"&gt;Something&#60;/p&gt;
&lt;/code&gt; is not. Combining this with the url data is most useful, giving:
&lt;code&gt;
&#60;p class="item"&gt;&#60;a class="fn url" href="http://www.aes.id.au/?page_id=28" rel="nofollow"&gt;hReview WordPress Plugin&#60;/a&gt;&#60;/p&gt;
&lt;/code&gt;
Without this tweak, the Operator plugin does not successfully detect the plugin (except in debug mode).

The examples where fn is inside item:

http://microformats.org/wiki/hreview#Restaurant_reviews
http://www.golfdigest.com/courses/places/2483
http://www.novedge.com/review/1978/

Actually, the &lt;a href="http://microformats.org/wiki/hreview-profile" rel="nofollow"&gt;http://microformats.org/wiki/hreview-profile&lt;/a&gt; sums it up nicely. &lt;code&gt;fn&lt;/code&gt; &lt;strong&gt;is&lt;/strong&gt; a sub-property of &lt;code&gt;item&lt;/code&gt;.</description>
		<content:encoded><![CDATA[<p>Hi Andrew,</p>
<p>I believe your hReview Plugin does have a small bug. In all the examples I can find (see below), the fn of the reviewed item should be inside the item level (a bit like fn should be inside a vcard, not at the same level):</p>
<p>So:<br />
<code><br />
&lt;p class="item"span class="fn">Something&lt;/span>&lt;/p><br />
</code><br />
is fine, whereas:<br />
<code><br />
&lt;p class="item fn">Something&lt;/p><br />
</code> is not. Combining this with the url data is most useful, giving:<br />
<code><br />
&lt;p class="item">&lt;a class="fn url" href="http://www.aes.id.au/?page_id=28" rel="nofollow">hReview WordPress Plugin&lt;/a>&lt;/p><br />
</code><br />
Without this tweak, the Operator plugin does not successfully detect the plugin (except in debug mode).</p>
<p>The examples where fn is inside item:</p>
<p><a href="http://microformats.org/wiki/hreview#Restaurant_reviews" rel="nofollow">http://microformats.org/wiki/hreview#Restaurant_reviews</a><br />
<a href="http://www.golfdigest.com/courses/places/2483" rel="nofollow">http://www.golfdigest.com/courses/places/2483</a><br />
<a href="http://www.novedge.com/review/1978/" rel="nofollow">http://www.novedge.com/review/1978/</a></p>
<p>Actually, the <a href="http://microformats.org/wiki/hreview-profile" rel="nofollow">http://microformats.org/wiki/hreview-profile</a> sums it up nicely. <code>fn</code> <strong>is</strong> a sub-property of <code>item</code>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Scott</title>
		<link>http://garyjones.co.uk/blog/hreview-wordpress-plugin/#comment-22</link>
		<dc:creator>Andrew Scott</dc:creator>
		<pubDate>Sat, 19 Jan 2008 04:24:29 +0000</pubDate>
		<guid isPermaLink="false">http://garyjones.co.uk/blog/hreview-wordpress-plugin/#comment-22</guid>
		<description>Thanks Gary for the detailed review. It's clear you have a very good understanding of microformats.

I did ponder what to do about the review type field. Personally, I find it a bit annoying, and I've considered removing it from the plugin. However, I think I followed the approach used by the hReview Creator page (http://microformats.org/code/hreview/creator) which used the style attribute to prevent it displaying. However, since it's invisible, I could position it before the summary so that people like yourself could change the CSS and have it display as they wish.

The other optional things I generally left out to keep the user interface and code simpler. For example, on my own site, I have an hCard on every page anyway, and so I didn't need to add support for another hCard within each review. I suspect most blogs will also take this approach, unless they have multiple authors contributing to the blog.

FYI, the Tails Export plugin for Firefox (https://addons.mozilla.org/en-US/firefox/addon/2240) supports hReview.</description>
		<content:encoded><![CDATA[<p>Thanks Gary for the detailed review. It&#8217;s clear you have a very good understanding of microformats.</p>
<p>I did ponder what to do about the review type field. Personally, I find it a bit annoying, and I&#8217;ve considered removing it from the plugin. However, I think I followed the approach used by the hReview Creator page (http://microformats.org/code/hreview/creator) which used the style attribute to prevent it displaying. However, since it&#8217;s invisible, I could position it before the summary so that people like yourself could change the CSS and have it display as they wish.</p>
<p>The other optional things I generally left out to keep the user interface and code simpler. For example, on my own site, I have an hCard on every page anyway, and so I didn&#8217;t need to add support for another hCard within each review. I suspect most blogs will also take this approach, unless they have multiple authors contributing to the blog.</p>
<p>FYI, the Tails Export plugin for Firefox (https://addons.mozilla.org/en-US/firefox/addon/2240) supports hReview.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fixing the blog, Part 2 by Gary Jones</title>
		<link>http://garyjones.co.uk/blog/hreview-wordpress-plugin/#comment-20</link>
		<dc:creator>Fixing the blog, Part 2 by Gary Jones</dc:creator>
		<pubDate>Sat, 19 Jan 2008 03:45:10 +0000</pubDate>
		<guid isPermaLink="false">http://garyjones.co.uk/blog/hreview-wordpress-plugin/#comment-20</guid>
		<description>[...] an hResume plugin and a hReview plugin (plugin removed, as it wasn&#8217;t working well) (see my review of this plugin) to really offer some good data to the world. Following on from my previous problems, I still [...]</description>
		<content:encoded><![CDATA[<p>[...] an hResume plugin and a hReview plugin (plugin removed, as it wasn&#8217;t working well) (see my review of this plugin) to really offer some good data to the world. Following on from my previous problems, I still [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
