<?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 for Danny Hawkins</title>
	<atom:link href="http://www.danhawkins.me.uk/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.danhawkins.me.uk</link>
	<description>Code &#039;n&#039; that</description>
	<lastBuildDate>Fri, 14 Oct 2011 13:16:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Generate I18n locale files from Rails views and models by Leszek</title>
		<link>http://www.danhawkins.me.uk/2011/08/generate-i18n-locale-files-from-rails-views-and-models/comment-page-1/#comment-139</link>
		<dc:creator>Leszek</dc:creator>
		<pubDate>Fri, 14 Oct 2011 13:16:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.danhawkins.me.uk/?p=174#comment-139</guid>
		<description>Remove &#039;each&#039; from this lines

Find.find(Rails.root.join(&#039;app/models&#039;)).each do &#124;model_file&#124;
and
Find.find(Rails.configuration.view_path).each do &#124;view&#124;</description>
		<content:encoded><![CDATA[<p>Remove &#8216;each&#8217; from this lines</p>
<p>Find.find(Rails.root.join(&#8216;app/models&#8217;)).each do |model_file|<br />
and<br />
Find.find(Rails.configuration.view_path).each do |view|</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Generate I18n locale files from Rails views and models by Leandro</title>
		<link>http://www.danhawkins.me.uk/2011/08/generate-i18n-locale-files-from-rails-views-and-models/comment-page-1/#comment-138</link>
		<dc:creator>Leandro</dc:creator>
		<pubDate>Wed, 21 Sep 2011 09:55:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.danhawkins.me.uk/?p=174#comment-138</guid>
		<description>I try to run the rake task:
     $ rake translations:from_models
but I have the next error:
    rake aborted!
    no block given
    
    Tasks: TOP =&gt; translations:from_models
I use ruby 1.8.7, rubygems 1.7.2, rails 3.0.10, rake 0.9.2</description>
		<content:encoded><![CDATA[<p>I try to run the rake task:<br />
     $ rake translations:from_models<br />
but I have the next error:<br />
    rake aborted!<br />
    no block given</p>
<p>    Tasks: TOP =&gt; translations:from_models<br />
I use ruby 1.8.7, rubygems 1.7.2, rails 3.0.10, rake 0.9.2</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google chrome select and CSS by Bram van der Sanden</title>
		<link>http://www.danhawkins.me.uk/2010/02/google-chrome-select-and-css/comment-page-1/#comment-136</link>
		<dc:creator>Bram van der Sanden</dc:creator>
		<pubDate>Tue, 13 Sep 2011 08:41:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.danhawkins.me.uk/?p=64#comment-136</guid>
		<description>Hey Danny,

Thanks for this, it really helped me to fix the layout of my employers site.

I have just a little question, since this only afffects the  tag, do you have something similar for the  tag?</description>
		<content:encoded><![CDATA[<p>Hey Danny,</p>
<p>Thanks for this, it really helped me to fix the layout of my employers site.</p>
<p>I have just a little question, since this only afffects the  tag, do you have something similar for the  tag?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google chrome select and CSS by Hafeez Ansari</title>
		<link>http://www.danhawkins.me.uk/2010/02/google-chrome-select-and-css/comment-page-1/#comment-130</link>
		<dc:creator>Hafeez Ansari</dc:creator>
		<pubDate>Sat, 27 Aug 2011 08:43:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.danhawkins.me.uk/?p=64#comment-130</guid>
		<description>Thank you very much. This works for me. :)</description>
		<content:encoded><![CDATA[<p>Thank you very much. This works for me. <img src='http://www.danhawkins.me.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running PHPUnit tests in a webpage by Johnny</title>
		<link>http://www.danhawkins.me.uk/2011/03/running-phpunit-tests-in-a-webpage/comment-page-1/#comment-101</link>
		<dc:creator>Johnny</dc:creator>
		<pubDate>Mon, 25 Apr 2011 17:36:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.danhawkins.me.uk/?p=145#comment-101</guid>
		<description>Thank you so much for your example! This helps me a lot to understand how XML works in PHPUnit.
I am using PHPUnit 3.5.13 and tried to follow your example.
By running my script with command line using --log-xml, I can generate the XML string from the output. However, when I included it in my script like your example, it returns no output except my debug statements. I tried to switch to JSON in the script and it works.
For PHPUnit_Util_Log_JUnit class, do I need to include any other paths in my scripts or configuration setup for XML?</description>
		<content:encoded><![CDATA[<p>Thank you so much for your example! This helps me a lot to understand how XML works in PHPUnit.<br />
I am using PHPUnit 3.5.13 and tried to follow your example.<br />
By running my script with command line using &#8211;log-xml, I can generate the XML string from the output. However, when I included it in my script like your example, it returns no output except my debug statements. I tried to switch to JSON in the script and it works.<br />
For PHPUnit_Util_Log_JUnit class, do I need to include any other paths in my scripts or configuration setup for XML?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google chrome select and CSS by Sergiu</title>
		<link>http://www.danhawkins.me.uk/2010/02/google-chrome-select-and-css/comment-page-1/#comment-92</link>
		<dc:creator>Sergiu</dc:creator>
		<pubDate>Thu, 10 Feb 2011 16:05:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.danhawkins.me.uk/?p=64#comment-92</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails javascript specific layout by Eric Krause</title>
		<link>http://www.danhawkins.me.uk/2010/08/rails-javascript-specific-layout/comment-page-1/#comment-91</link>
		<dc:creator>Eric Krause</dc:creator>
		<pubDate>Tue, 01 Feb 2011 16:30:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.danhawkins.me.uk/?p=118#comment-91</guid>
		<description>Thanks for posting this little tidbit.  I was just wondering how to render flash messages when doing ajax posts.  
Thank you again,
Eric</description>
		<content:encoded><![CDATA[<p>Thanks for posting this little tidbit.  I was just wondering how to render flash messages when doing ajax posts.<br />
Thank you again,<br />
Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google chrome select and CSS by Sercan</title>
		<link>http://www.danhawkins.me.uk/2010/02/google-chrome-select-and-css/comment-page-1/#comment-76</link>
		<dc:creator>Sercan</dc:creator>
		<pubDate>Tue, 30 Nov 2010 10:52:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.danhawkins.me.uk/?p=64#comment-76</guid>
		<description>I wanted this! thanks a lot</description>
		<content:encoded><![CDATA[<p>I wanted this! thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google chrome select and CSS by Venezuelan Web Developer</title>
		<link>http://www.danhawkins.me.uk/2010/02/google-chrome-select-and-css/comment-page-1/#comment-71</link>
		<dc:creator>Venezuelan Web Developer</dc:creator>
		<pubDate>Fri, 29 Oct 2010 15:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.danhawkins.me.uk/?p=64#comment-71</guid>
		<description>Thanks! it is really helpful</description>
		<content:encoded><![CDATA[<p>Thanks! it is really helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google chrome select and CSS by Danny</title>
		<link>http://www.danhawkins.me.uk/2010/02/google-chrome-select-and-css/comment-page-1/#comment-46</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Sat, 19 Jun 2010 14:17:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.danhawkins.me.uk/?p=64#comment-46</guid>
		<description>Yeah that was the downside of it, but at least it&#039;s an option.</description>
		<content:encoded><![CDATA[<p>Yeah that was the downside of it, but at least it&#8217;s an option.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

