<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Zend Framework</title>
	<atom:link href="http://zendguru.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://zendguru.wordpress.com</link>
	<description></description>
	<lastBuildDate>Wed, 04 Nov 2009 16:54:09 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Zend Framework: building complete application using Zend_Session, Zend_Db and Zend_Auth by ravi</title>
		<link>http://zendguru.wordpress.com/2009/07/04/zend-framework-building-complete-application-using-zend_session-zend_db-and-zend_auth/#comment-832</link>
		<dc:creator>ravi</dc:creator>
		<pubDate>Wed, 04 Nov 2009 16:54:09 +0000</pubDate>
		<guid isPermaLink="false">http://zendguru.wordpress.com/?p=688#comment-832</guid>
		<description>nice tutorials..

www.sakshieducation.info

www.studentscorner.info</description>
		<content:encoded><![CDATA[<p>nice tutorials..</p>
<p><a href="http://www.sakshieducation.info" rel="nofollow">http://www.sakshieducation.info</a></p>
<p><a href="http://www.studentscorner.info" rel="nofollow">http://www.studentscorner.info</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend Framework Acl with example by phpzend</title>
		<link>http://zendguru.wordpress.com/2008/11/05/zend-framework-acl-with-example/#comment-831</link>
		<dc:creator>phpzend</dc:creator>
		<pubDate>Tue, 03 Nov 2009 07:49:57 +0000</pubDate>
		<guid isPermaLink="false">http://zendguru.wordpress.com/?p=141#comment-831</guid>
		<description>nice site!, instead of error page, I would go to the login page, for example:

if(!$acl-&gt;isAllowed($roleName,null,$privilageName)){
	$urlOptions = array(&#039;controller&#039; =&gt; &#039;error&#039;,
	                    &#039;action&#039; =&gt; &#039;login&#039;
	                    );
	$redirector = new Zend_Controller_Action_Helper_Redirector();
	$redirector-&gt;gotoRouteAndExit($urlOptions, null, true);
}</description>
		<content:encoded><![CDATA[<p>nice site!, instead of error page, I would go to the login page, for example:</p>
<p>if(!$acl-&gt;isAllowed($roleName,null,$privilageName)){<br />
	$urlOptions = array(&#8216;controller&#8217; =&gt; &#8216;error&#8217;,<br />
	                    &#8216;action&#8217; =&gt; &#8216;login&#8217;<br />
	                    );<br />
	$redirector = new Zend_Controller_Action_Helper_Redirector();<br />
	$redirector-&gt;gotoRouteAndExit($urlOptions, null, true);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend Framework Dojo Form decorators example and usage by Rahul Kate</title>
		<link>http://zendguru.wordpress.com/2009/02/10/zend-framework-dojo-form-decorators-example-and-usage/#comment-830</link>
		<dc:creator>Rahul Kate</dc:creator>
		<pubDate>Mon, 02 Nov 2009 18:08:02 +0000</pubDate>
		<guid isPermaLink="false">http://zendguru.wordpress.com/?p=428#comment-830</guid>
		<description>Really great article I appreciate your work. But there is a problem with it. This also applies to the SubmitButton element. How do you stop it from applying this to the submitbutton element. It looks really weird on that element.</description>
		<content:encoded><![CDATA[<p>Really great article I appreciate your work. But there is a problem with it. This also applies to the SubmitButton element. How do you stop it from applying this to the submitbutton element. It looks really weird on that element.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Romoving unnecessary dt and dd&#8217;s in Zend by heik</title>
		<link>http://zendguru.wordpress.com/2008/11/05/romoving-unnecessary-dt-and-dds-in-zend/#comment-827</link>
		<dc:creator>heik</dc:creator>
		<pubDate>Fri, 30 Oct 2009 15:54:03 +0000</pubDate>
		<guid isPermaLink="false">http://zendguru.wordpress.com/?p=136#comment-827</guid>
		<description>... oops .. got filtered out -&gt;  &quot;The Form wraps the missing dl tags around the Elements and the intend is gone&quot;</description>
		<content:encoded><![CDATA[<p>&#8230; oops .. got filtered out -&gt;  &#8220;The Form wraps the missing dl tags around the Elements and the intend is gone&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Romoving unnecessary dt and dd&#8217;s in Zend by heik</title>
		<link>http://zendguru.wordpress.com/2008/11/05/romoving-unnecessary-dt-and-dds-in-zend/#comment-826</link>
		<dc:creator>heik</dc:creator>
		<pubDate>Fri, 30 Oct 2009 15:51:32 +0000</pubDate>
		<guid isPermaLink="false">http://zendguru.wordpress.com/?p=136#comment-826</guid>
		<description>&quot;Zend by default wrap some form elements like display groups and form itself in dt and dd. this disturb the entire page layout.&quot;
--&gt; you mean this stupid &quot;intend-like&quot; movement of input fields!? I had the same problem and solved it as follows:

- created own decorator called My_Decorator_FormElements extends Zend_Form_Decorator_FormElements
- just added one method: public function render($content) { return &quot;&quot; . parent::render($content).&quot;&quot;; }
- in Form class:  $this-&gt;addPrefixPath(&#039;My_Decorator&#039;, &#039;My/decorator&#039;, &#039;decorator&#039;);

-&gt; Zend_Form now uses My Decorator for FormElements:

The Form wraps the missing &quot;&quot; around the Elements and the intend is gone :)

Cheers,
heik</description>
		<content:encoded><![CDATA[<p>&#8220;Zend by default wrap some form elements like display groups and form itself in dt and dd. this disturb the entire page layout.&#8221;<br />
&#8211;&gt; you mean this stupid &#8220;intend-like&#8221; movement of input fields!? I had the same problem and solved it as follows:</p>
<p>- created own decorator called My_Decorator_FormElements extends Zend_Form_Decorator_FormElements<br />
- just added one method: public function render($content) { return &#8220;&#8221; . parent::render($content).&#8221;"; }<br />
- in Form class:  $this-&gt;addPrefixPath(&#8216;My_Decorator&#8217;, &#8216;My/decorator&#8217;, &#8216;decorator&#8217;);</p>
<p>-&gt; Zend_Form now uses My Decorator for FormElements:</p>
<p>The Form wraps the missing &#8220;&#8221; around the Elements and the intend is gone <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Cheers,<br />
heik</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend Framework: working with layout and views (two step view) by Marco</title>
		<link>http://zendguru.wordpress.com/2009/03/19/zend-framework-working-with-layout-and-views-two-step-view/#comment-825</link>
		<dc:creator>Marco</dc:creator>
		<pubDate>Wed, 28 Oct 2009 22:22:07 +0000</pubDate>
		<guid isPermaLink="false">http://zendguru.wordpress.com/?p=514#comment-825</guid>
		<description>could explain this bit: layout()-&gt;content?&gt;
it gives the following error in php... &quot;Parse error: syntax error, unexpected &#039;&lt;&#039; in &quot;</description>
		<content:encoded><![CDATA[<p>could explain this bit: layout()-&gt;content?&gt;<br />
it gives the following error in php&#8230; &#8220;Parse error: syntax error, unexpected &#8216;&lt;&#039; in &quot;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend Framework Dojo Form decorators example and usage by Melvin OMM</title>
		<link>http://zendguru.wordpress.com/2009/02/10/zend-framework-dojo-form-decorators-example-and-usage/#comment-821</link>
		<dc:creator>Melvin OMM</dc:creator>
		<pubDate>Wed, 21 Oct 2009 18:09:20 +0000</pubDate>
		<guid isPermaLink="false">http://zendguru.wordpress.com/?p=428#comment-821</guid>
		<description>Yo! This article is very nice indeed. After reading the article this stuff is actually simple. The most relevant stuff i found on my journey understanding everything about Dojo integration in the Zend Framework.</description>
		<content:encoded><![CDATA[<p>Yo! This article is very nice indeed. After reading the article this stuff is actually simple. The most relevant stuff i found on my journey understanding everything about Dojo integration in the Zend Framework.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend Framework and Facebook: writing a simple facebook application in Zend Framework by Ben</title>
		<link>http://zendguru.wordpress.com/2009/05/31/zend-framework-and-facebook-writing-a-simple-facebook-application-in-zend-framework/#comment-818</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Fri, 16 Oct 2009 15:33:21 +0000</pubDate>
		<guid isPermaLink="false">http://zendguru.wordpress.com/?p=614#comment-818</guid>
		<description>Thank you for this tutorial, just made a Facebook Connect with your help! Thanks.</description>
		<content:encoded><![CDATA[<p>Thank you for this tutorial, just made a Facebook Connect with your help! Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend Framework Form: working with dropdown(select) list by mangesh</title>
		<link>http://zendguru.wordpress.com/2009/03/06/zend-framework-form-working-with-dropdownselect-list/#comment-817</link>
		<dc:creator>mangesh</dc:creator>
		<pubDate>Thu, 15 Oct 2009 09:36:43 +0000</pubDate>
		<guid isPermaLink="false">http://zendguru.wordpress.com/?p=484#comment-817</guid>
		<description>nice example</description>
		<content:encoded><![CDATA[<p>nice example</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend Framework: building complete application using Zend_Session, Zend_Db and Zend_Auth by Erick Martinez</title>
		<link>http://zendguru.wordpress.com/2009/07/04/zend-framework-building-complete-application-using-zend_session-zend_db-and-zend_auth/#comment-814</link>
		<dc:creator>Erick Martinez</dc:creator>
		<pubDate>Wed, 07 Oct 2009 23:39:09 +0000</pubDate>
		<guid isPermaLink="false">http://zendguru.wordpress.com/?p=688#comment-814</guid>
		<description>I think this is outdated, for ZF 1.9 you should take a look at http://framework.zend.com/manual/en/zend.application.quick-start.html</description>
		<content:encoded><![CDATA[<p>I think this is outdated, for ZF 1.9 you should take a look at <a href="http://framework.zend.com/manual/en/zend.application.quick-start.html" rel="nofollow">http://framework.zend.com/manual/en/zend.application.quick-start.html</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
