<?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 duckranger.com</title>
	<atom:link href="http://duckranger.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://duckranger.com</link>
	<description>JUST DOING IT</description>
	<lastBuildDate>Fri, 27 Jan 2012 15:22:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>Comment on Facelets: Setter not found for property class by Medovarszki</title>
		<link>http://duckranger.com/2010/05/facelets-setter-not-found-for-property-class/comment-page-1/#comment-2353</link>
		<dc:creator>Medovarszki</dc:creator>
		<pubDate>Fri, 27 Jan 2012 15:22:45 +0000</pubDate>
		<guid isPermaLink="false">http://duckranger.com/?p=259#comment-2353</guid>
		<description>This post saved my hair from falling out but yeah, I beat my head against the wall now too :)</description>
		<content:encoded><![CDATA[<p>This post saved my hair from falling out but yeah, I beat my head against the wall now too <img src='http://duckranger.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spring MVC 3.0 with STS Tutorial &#8211; Part I by Shehryar</title>
		<link>http://duckranger.com/2011/07/spring-mvc-3-0-with-sts-tutorial-part-i/comment-page-1/#comment-2352</link>
		<dc:creator>Shehryar</dc:creator>
		<pubDate>Wed, 25 Jan 2012 16:55:04 +0000</pubDate>
		<guid isPermaLink="false">http://duckranger.com/?p=741#comment-2352</guid>
		<description>Probably the ebst spring web mvc tutorial I have read, explain everything in great detail. i loved it, this is like the 15th spring tutorial I have read, and it is by far the best one.</description>
		<content:encoded><![CDATA[<p>Probably the ebst spring web mvc tutorial I have read, explain everything in great detail. i loved it, this is like the 15th spring tutorial I have read, and it is by far the best one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Resize images on the fly with CakePHP by armand</title>
		<link>http://duckranger.com/2010/06/resize-images-on-the-fly-with-cakephp/comment-page-1/#comment-2351</link>
		<dc:creator>armand</dc:creator>
		<pubDate>Mon, 23 Jan 2012 10:31:04 +0000</pubDate>
		<guid isPermaLink="false">http://duckranger.com/?p=294#comment-2351</guid>
		<description>You do not resize the image. You just display it smaller using html tag attributes. It would be nice to resize it ad display the resized image. As your display is now you still have to load  the big file with the client browser.</description>
		<content:encoded><![CDATA[<p>You do not resize the image. You just display it smaller using html tag attributes. It would be nice to resize it ad display the resized image. As your display is now you still have to load  the big file with the client browser.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CakePHP: Keeping login information on error pages by Duck Ranger</title>
		<link>http://duckranger.com/2011/05/cakephp-keeping-login-information-on-error-pages/comment-page-1/#comment-2343</link>
		<dc:creator>Duck Ranger</dc:creator>
		<pubDate>Wed, 04 Jan 2012 19:35:47 +0000</pubDate>
		<guid isPermaLink="false">http://duckranger.com/?p=609#comment-2343</guid>
		<description>@COTP - great, thanks! I edited to mention this is old Cake :)</description>
		<content:encoded><![CDATA[<p>@COTP &#8211; great, thanks! I edited to mention this is old Cake <img src='http://duckranger.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CakePHP: Keeping login information on error pages by COTP</title>
		<link>http://duckranger.com/2011/05/cakephp-keeping-login-information-on-error-pages/comment-page-1/#comment-2342</link>
		<dc:creator>COTP</dc:creator>
		<pubDate>Wed, 04 Jan 2012 17:25:17 +0000</pubDate>
		<guid isPermaLink="false">http://duckranger.com/?p=609#comment-2342</guid>
		<description>** Just to clarify, in CakeErrorController.php (the copy in app/Controller/)
&lt;code&gt;
public function beforeRender() {
	parent::beforeRender();
	$this-&gt;set(&#039;user_id&#039;, $this-&gt;Auth-&gt;user(&#039;id&#039;));
	foreach ($this-&gt;viewVars as $key =&gt; $value) {
		if (!is_object($value)){
			$this-&gt;viewVars[$key] = h($value);
		}
	}
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>** Just to clarify, in CakeErrorController.php (the copy in app/Controller/)</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">public function beforeRender() {<br />
&nbsp; &nbsp; parent::beforeRender();<br />
&nbsp; &nbsp; $this-&gt;set('user_id', $this-&gt;Auth-&gt;user('id'));<br />
&nbsp; &nbsp; foreach ($this-&gt;viewVars as $key =&gt; $value) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (!is_object($value)){<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $this-&gt;viewVars[$key] = h($value);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; }<br />
}</div></div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CakePHP: Keeping login information on error pages by COTP</title>
		<link>http://duckranger.com/2011/05/cakephp-keeping-login-information-on-error-pages/comment-page-1/#comment-2341</link>
		<dc:creator>COTP</dc:creator>
		<pubDate>Wed, 04 Jan 2012 17:20:11 +0000</pubDate>
		<guid isPermaLink="false">http://duckranger.com/?p=609#comment-2341</guid>
		<description>For CakePHP 2.0+, you can copy lib/Cake/Controller/CakeErrorController.php to app/Controller/CakeErrorController.php and use the usual $this-&gt;set() function. 

Great post! Very informative :-)</description>
		<content:encoded><![CDATA[<p>For CakePHP 2.0+, you can copy lib/Cake/Controller/CakeErrorController.php to app/Controller/CakeErrorController.php and use the usual $this-&gt;set() function. </p>
<p>Great post! Very informative <img src='http://duckranger.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facelets: Setter not found for property class by Marcio K</title>
		<link>http://duckranger.com/2010/05/facelets-setter-not-found-for-property-class/comment-page-1/#comment-2339</link>
		<dc:creator>Marcio K</dc:creator>
		<pubDate>Tue, 20 Dec 2011 13:54:25 +0000</pubDate>
		<guid isPermaLink="false">http://duckranger.com/?p=259#comment-2339</guid>
		<description>Nailed it, saved me a lot of time. Thanks. :)</description>
		<content:encoded><![CDATA[<p>Nailed it, saved me a lot of time. Thanks. <img src='http://duckranger.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spring MVC 3.0 with STS Tutorial &#8211; Part I by dk</title>
		<link>http://duckranger.com/2011/07/spring-mvc-3-0-with-sts-tutorial-part-i/comment-page-1/#comment-2337</link>
		<dc:creator>dk</dc:creator>
		<pubDate>Sat, 17 Dec 2011 07:06:27 +0000</pubDate>
		<guid isPermaLink="false">http://duckranger.com/?p=741#comment-2337</guid>
		<description>its simple and clear explanation....great job for beginners.:)</description>
		<content:encoded><![CDATA[<p>its simple and clear explanation&#8230;.great job for beginners.:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google appengine and maps tutorial with Java &#8211; Part II by Finger Mouse &#124; sensitiveskinconditions.com</title>
		<link>http://duckranger.com/2011/06/google-appengine-and-maps-tutorial-with-java-part-ii/comment-page-1/#comment-2336</link>
		<dc:creator>Finger Mouse &#124; sensitiveskinconditions.com</dc:creator>
		<pubDate>Sun, 11 Dec 2011 10:31:26 +0000</pubDate>
		<guid isPermaLink="false">http://duckranger.com/?p=668#comment-2336</guid>
		<description>[...] Clip-On Reading Book Light for Apple iPad 2 WIFI / Amazon Kindle FireDr Bob&#039;s Tech Art Blog.Google appengine and maps tutorial with Java &#8211; Part II .recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}  [...]</description>
		<content:encoded><![CDATA[<p>[...] Clip-On Reading Book Light for Apple iPad 2 WIFI / Amazon Kindle FireDr Bob&#039;s Tech Art Blog.Google appengine and maps tutorial with Java &#8211; Part II .recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Android login with actionGo by Dave Sims</title>
		<link>http://duckranger.com/2011/06/android-login-with-actiongo/comment-page-1/#comment-2335</link>
		<dc:creator>Dave Sims</dc:creator>
		<pubDate>Fri, 09 Dec 2011 19:50:53 +0000</pubDate>
		<guid isPermaLink="false">http://duckranger.com/?p=643#comment-2335</guid>
		<description>Thanks for the article, er...Duck? One thing you left out was filtering for only ACTION_DOWN events, otherwise the login will get called twice. The handler should look something like:

[cc lang=&quot;java&quot;]
public boolean onKey(View view, int keyCode, KeyEvent event) {
   if (event != null &amp;&amp; event.getAction() == KeyEvent.ACTION_DOWN &amp;&amp; keyCode == KeyEvent.KEYCODE_ENTER) {
      onClick(view);
      return true;
   } else {
      return false;
   }
}
[/cc]</description>
		<content:encoded><![CDATA[<p>Thanks for the article, er&#8230;Duck? One thing you left out was filtering for only ACTION_DOWN events, otherwise the login will get called twice. The handler should look something like:</p>
<div class="codecolorer-container java mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="java codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">boolean</span> onKey<span style="color: #009900;">&#40;</span><span style="color: #003399;">View</span> view, <span style="color: #000066; font-weight: bold;">int</span> keyCode, <span style="color: #003399;">KeyEvent</span> event<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>event <span style="color: #339933;">!=</span> <span style="color: #000066; font-weight: bold;">null</span> <span style="color: #339933;">&amp;&amp;</span> event.<span style="color: #006633;">getAction</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #003399;">KeyEvent</span>.<span style="color: #006633;">ACTION_DOWN</span> <span style="color: #339933;">&amp;&amp;</span> keyCode <span style="color: #339933;">==</span> <span style="color: #003399;">KeyEvent</span>.<span style="color: #006633;">KEYCODE_ENTER</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; onClick<span style="color: #009900;">&#40;</span>view<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">return</span> <span style="color: #000066; font-weight: bold;">true</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp;<span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">return</span> <span style="color: #000066; font-weight: bold;">false</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp;<span style="color: #009900;">&#125;</span><br />
<span style="color: #009900;">&#125;</span></div></div>
]]></content:encoded>
	</item>
</channel>
</rss>

