<?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 Burningice</title>
	<atom:link href="http://blog.burningice.pl/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.burningice.pl</link>
	<description>bury me in smoke</description>
	<lastBuildDate>Thu, 20 Oct 2011 21:30:05 +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 AndEngine in action by admin</title>
		<link>http://blog.burningice.pl/2011/01/03/andengine-in-action/#comment-221</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 20 Oct 2011 21:30:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.burningice.pl/?p=487#comment-221</guid>
		<description>Right now I am working on game with usage of AndEngine. When I will finish it, I will publish sources.</description>
		<content:encoded><![CDATA[<p>Right now I am working on game with usage of AndEngine. When I will finish it, I will publish sources.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AndEngine in action by Andrea</title>
		<link>http://blog.burningice.pl/2011/01/03/andengine-in-action/#comment-135</link>
		<dc:creator>Andrea</dc:creator>
		<pubDate>Sat, 06 Aug 2011 14:15:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.burningice.pl/?p=487#comment-135</guid>
		<description>Hi, I&#039;m newbe in AndEngine , I would be able to make something like you did in the video... could you please post the source code? I think it could be really useful for everyone... thanks a lot!</description>
		<content:encoded><![CDATA[<p>Hi, I&#8217;m newbe in AndEngine , I would be able to make something like you did in the video&#8230; could you please post the source code? I think it could be really useful for everyone&#8230; thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grails url mapping localization by Logo Design</title>
		<link>http://blog.burningice.pl/2010/01/15/grails-url-mapping-localization/#comment-133</link>
		<dc:creator>Logo Design</dc:creator>
		<pubDate>Wed, 13 Jul 2011 12:26:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.burningice.pl/?p=288#comment-133</guid>
		<description>Thank you very much for this article. it saved me lots of time.</description>
		<content:encoded><![CDATA[<p>Thank you very much for this article. it saved me lots of time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AndEngine in action by admin</title>
		<link>http://blog.burningice.pl/2011/01/03/andengine-in-action/#comment-132</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 27 Jun 2011 12:18:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.burningice.pl/?p=487#comment-132</guid>
		<description>Unfortunately I can&#039;t at this moment. I will opensource code of my game when I will finish it. Stay tuned.</description>
		<content:encoded><![CDATA[<p>Unfortunately I can&#8217;t at this moment. I will opensource code of my game when I will finish it. Stay tuned.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grails url mapping localization by Vladimir</title>
		<link>http://blog.burningice.pl/2010/01/15/grails-url-mapping-localization/#comment-131</link>
		<dc:creator>Vladimir</dc:creator>
		<pubDate>Sat, 25 Jun 2011 19:24:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.burningice.pl/?p=288#comment-131</guid>
		<description>Oh, sorry, I forgot one peace of code.

You have to add 
&lt;code&gt;def applicationTagLib = grailsApplication.mainContext.getBean(&#039;org.codehaus.groovy.grails.plugins.web.taglib.ApplicationTagLib&#039;)&lt;/code&gt;

before 
&lt;code&gt;applicationTagLib.link.call(attrs, body)&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Oh, sorry, I forgot one peace of code.</p>
<p>You have to add<br />
<code>def applicationTagLib = grailsApplication.mainContext.getBean('org.codehaus.groovy.grails.plugins.web.taglib.ApplicationTagLib')</code></p>
<p>before<br />
<code>applicationTagLib.link.call(attrs, body)</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grails url mapping localization by Vladimir</title>
		<link>http://blog.burningice.pl/2010/01/15/grails-url-mapping-localization/#comment-130</link>
		<dc:creator>Vladimir</dc:creator>
		<pubDate>Sat, 25 Jun 2011 19:21:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.burningice.pl/?p=288#comment-130</guid>
		<description>Unfortunately this code doesn&#039;t work in Grails 1.3.7: 
&lt;code&gt;out &lt;&lt; link(attrs, body)&lt;/code&gt;

But you can fix it, just change some parts.

1) import this:
&lt;code&gt;import org.codehaus.groovy.grails.plugins.web.taglib.*
class BaseTagLib {...&lt;/code&gt;

and &lt;code&gt;applicationTagLib.link.call(attrs, body)&lt;/code&gt; instead of &lt;code&gt;out &lt;&lt; link(attrs, body)&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Unfortunately this code doesn&#8217;t work in Grails 1.3.7:<br />
<code>out &lt;&lt; link(attrs, body)</code></p>
<p>But you can fix it, just change some parts.</p>
<p>1) import this:<br />
<code>import org.codehaus.groovy.grails.plugins.web.taglib.*<br />
class BaseTagLib {...</code></p>
<p>and <code>applicationTagLib.link.call(attrs, body)</code> instead of <code>out &lt;&lt; link(attrs, body)</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AndEngine in action by Eddy_hunt</title>
		<link>http://blog.burningice.pl/2011/01/03/andengine-in-action/#comment-129</link>
		<dc:creator>Eddy_hunt</dc:creator>
		<pubDate>Mon, 30 May 2011 14:19:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.burningice.pl/?p=487#comment-129</guid>
		<description>Hello Developer,

I try to do something like this with a tank but i failed. I don&#039;t know how to shoot, how to do a physical projectile what hit the enemy.  Could i ask you to post your code in AndEngine forum? It will help a lot of developers and future developers.

Thanks in advanced, Eddy</description>
		<content:encoded><![CDATA[<p>Hello Developer,</p>
<p>I try to do something like this with a tank but i failed. I don&#8217;t know how to shoot, how to do a physical projectile what hit the enemy.  Could i ask you to post your code in AndEngine forum? It will help a lot of developers and future developers.</p>
<p>Thanks in advanced, Eddy</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Burning Image 0.5 released by admin</title>
		<link>http://blog.burningice.pl/2010/07/15/burning-image-0-5-released/#comment-128</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 26 Apr 2011 20:36:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.burningice.pl/?p=397#comment-128</guid>
		<description>Yes. Check &lt;a href=&quot;http://code.google.com/p/burningimage/source/browse/trunk/test/unit/pl/burningice/plugins/image/BurningImageServiceJAITests.groovy#138&quot; rel=&quot;nofollow&quot;&gt;this&lt;/a&gt; unit test for details.</description>
		<content:encoded><![CDATA[<p>Yes. Check <a href="http://code.google.com/p/burningimage/source/browse/trunk/test/unit/pl/burningice/plugins/image/BurningImageServiceJAITests.groovy#138" rel="nofollow">this</a> unit test for details.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Burning Image 0.5 released by Brad Dillman</title>
		<link>http://blog.burningice.pl/2010/07/15/burning-image-0-5-released/#comment-127</link>
		<dc:creator>Brad Dillman</dc:creator>
		<pubDate>Sun, 24 Apr 2011 13:12:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.burningice.pl/?p=397#comment-127</guid>
		<description>Is there any way to upload files from BootStrap.groovy? I want to automatically set up a few images without having to manually upload them. I&#039;ve unsuccessfully tried some of the FileUploadUtils and test example.</description>
		<content:encoded><![CDATA[<p>Is there any way to upload files from BootStrap.groovy? I want to automatically set up a few images without having to manually upload them. I&#8217;ve unsuccessfully tried some of the FileUploadUtils and test example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8220;No completions available&#8221; in Eclipse 3.4 (PDT 2.0) by Giacomo Fonderico</title>
		<link>http://blog.burningice.pl/2009/06/25/no-completions-available-in-eclipse-3-4-pdt-2-0/#comment-126</link>
		<dc:creator>Giacomo Fonderico</dc:creator>
		<pubDate>Thu, 14 Apr 2011 08:38:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.burningice.pl/?p=155#comment-126</guid>
		<description>In my version build 20100617-1415 based onn eclipse 3.6(zenddebbugger all-in-one)
 - click right button on project folder
 - Configure -&gt; Add PhP Support</description>
		<content:encoded><![CDATA[<p>In my version build 20100617-1415 based onn eclipse 3.6(zenddebbugger all-in-one)<br />
 &#8211; click right button on project folder<br />
 &#8211; Configure -&gt; Add PhP Support</p>
]]></content:encoded>
	</item>
</channel>
</rss>

