<?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 Calculating Infinity</title>
	<atom:link href="http://calculating-infinity.de/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://calculating-infinity.de</link>
	<description></description>
	<lastBuildDate>Tue, 01 Jun 2010 18:43:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Using a different Zend_Layout for each module by Jan Gorman</title>
		<link>http://calculating-infinity.de/2009/03/20/using-a-different-zend_layout-for-each-module/comment-page-1/#comment-24</link>
		<dc:creator>Jan Gorman</dc:creator>
		<pubDate>Tue, 01 Jun 2010 18:43:08 +0000</pubDate>
		<guid isPermaLink="false">http://calculating-infinity.de/?p=91#comment-24</guid>
		<description>Hi there,

I can only guess but it looks like you&#039;re Module path isn&#039;t part of the Autoloading Path for Zend Framework. Best thing to do is to add a
&lt;pre lang=&quot;php&quot;&gt;
protected function _initAutoload()
&lt;/pre&gt;
to your Bootstrap class. Since the addition of Zend_Application it&#039;s probably best to change the original code I posted a bit and namespace the plugin, ie. rename it to something like MyProjectName_Layout_Plugin (in a file like this library/MyProjectName/Layout/Plugin.php). What that allows you to do, is to do cool stuff like this:
&lt;pre lang=&quot;php&quot;&gt;
$autoloader = Zend_Loader_Autoloader::getInstance();
$autoloader-&gt;registerNamespace(array(&#039;MyProjectName_&#039;));
&lt;/pre&gt;
and all should be well. In the index.php inside the public folder you need to add &quot;library&quot; to the PHP include_path
&lt;pre lang=&quot;php&quot;&gt;
defined( &#039;APPLICATION_PATH&#039; ) &#124;&#124; define( &#039;APPLICATION_PATH&#039;, realpath(
dirname( __FILE__ ) . &#039;/../application&#039; ) );

set_include_path(
   implode(PATH_SEPARATOR, array(
       get_include_path(),
       realpath(APPLICATION_PATH.&#039;/../library&#039;),
       )
   )
);
&lt;/pre&gt;
Hope that helps you get the idea. I recommend you read a bit about autoloading in Zend Framework to help you along.</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>I can only guess but it looks like you&#8217;re Module path isn&#8217;t part of the Autoloading Path for Zend Framework. Best thing to do is to add a</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">protected <span style="color: #000000; font-weight: bold;">function</span> _initAutoload<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span></pre></div></div>

<p>to your Bootstrap class. Since the addition of Zend_Application it&#8217;s probably best to change the original code I posted a bit and namespace the plugin, ie. rename it to something like MyProjectName_Layout_Plugin (in a file like this library/MyProjectName/Layout/Plugin.php). What that allows you to do, is to do cool stuff like this:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$autoloader</span> <span style="color: #339933;">=</span> Zend_Loader_Autoloader<span style="color: #339933;">::</span><span style="color: #004000;">getInstance</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$autoloader</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">registerNamespace</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'MyProjectName_'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>and all should be well. In the index.php inside the public folder you need to add &#8220;library&#8221; to the PHP include_path</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">defined</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'APPLICATION_PATH'</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> <span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'APPLICATION_PATH'</span><span style="color: #339933;">,</span> <span style="color: #990000;">realpath</span><span style="color: #009900;">&#40;</span>
<span style="color: #990000;">dirname</span><span style="color: #009900;">&#40;</span> <span style="color: #009900; font-weight: bold;">__FILE__</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'/../application'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #990000;">set_include_path</span><span style="color: #009900;">&#40;</span>
   <span style="color: #990000;">implode</span><span style="color: #009900;">&#40;</span>PATH_SEPARATOR<span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
       <span style="color: #990000;">get_include_path</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
       <span style="color: #990000;">realpath</span><span style="color: #009900;">&#40;</span>APPLICATION_PATH<span style="color: #339933;">.</span><span style="color: #0000ff;">'/../library'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
       <span style="color: #009900;">&#41;</span>
   <span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Hope that helps you get the idea. I recommend you read a bit about autoloading in Zend Framework to help you along.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using a different Zend_Layout for each module by luanpt</title>
		<link>http://calculating-infinity.de/2009/03/20/using-a-different-zend_layout-for-each-module/comment-page-1/#comment-23</link>
		<dc:creator>luanpt</dc:creator>
		<pubDate>Tue, 01 Jun 2010 07:20:54 +0000</pubDate>
		<guid isPermaLink="false">http://calculating-infinity.de/?p=91#comment-23</guid>
		<description>i create folder Module and add file LayoutPlugin.php, then copy your soure in that file,  but i get this message :
Class &#039;Module_LayoutPlugin&#039; not found in D:\AppServ\www\2010\application\modules\backend\Bootstrap.php  on line 21

please help me,</description>
		<content:encoded><![CDATA[<p>i create folder Module and add file LayoutPlugin.php, then copy your soure in that file,  but i get this message :<br />
Class &#8216;Module_LayoutPlugin&#8217; not found in D:\AppServ\www\2010\application\modules\backend\Bootstrap.php  on line 21</p>
<p>please help me,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wp_Registry by WP_Registry &#124; Nickel GbR - Blog</title>
		<link>http://calculating-infinity.de/wp-registry/comment-page-1/#comment-9</link>
		<dc:creator>WP_Registry &#124; Nickel GbR - Blog</dc:creator>
		<pubDate>Sun, 06 Dec 2009 22:14:29 +0000</pubDate>
		<guid isPermaLink="false">http://calculating-infinity.de/?page_id=193#comment-9</guid>
		<description>[...] etwas nerdigeren Themen etwas Gehör zu verschaffen wollte ich mal auf mein erstes öffentliches Wordpress Plugin aufmerksam machen. Der Zweck und Anwendungsbeispiele findet sich auf der Seite. Es sind noch ein [...]</description>
		<content:encoded><![CDATA[<p>[...] etwas nerdigeren Themen etwas Gehör zu verschaffen wollte ich mal auf mein erstes öffentliches WordPress Plugin aufmerksam machen. Der Zweck und Anwendungsbeispiele findet sich auf der Seite. Es sind noch ein [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend_Form_Element_Exception by Stefan</title>
		<link>http://calculating-infinity.de/2009/05/28/zend_form_element_exception/comment-page-1/#comment-8</link>
		<dc:creator>Stefan</dc:creator>
		<pubDate>Tue, 01 Dec 2009 20:55:05 +0000</pubDate>
		<guid isPermaLink="false">http://calculating-infinity.de/?p=158#comment-8</guid>
		<description>Hi,

I have the same problem as you. But even if I add

$element-&gt;clearDecorators();
$element-&gt;setDecorators(array( 
					array(&#039;ViewScript&#039;),
				    array(&#039;File&#039;), 
				    array(&#039;Errors&#039;) 
				));
to my file element, i get the &quot;no file decorator found&quot; error... can you send me your solution? I also have my own decorator for my forms. Do I have to create my own Decorator for the file element? I thought he uses de default one, if I write it in that way... maybe you can help me :-)</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have the same problem as you. But even if I add</p>
<p>$element-&gt;clearDecorators();<br />
$element-&gt;setDecorators(array(<br />
					array(&#8216;ViewScript&#8217;),<br />
				    array(&#8216;File&#8217;),<br />
				    array(&#8216;Errors&#8217;)<br />
				));<br />
to my file element, i get the &#8220;no file decorator found&#8221; error&#8230; can you send me your solution? I also have my own decorator for my forms. Do I have to create my own Decorator for the file element? I thought he uses de default one, if I write it in that way&#8230; maybe you can help me :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dropular by Amit</title>
		<link>http://calculating-infinity.de/2009/03/12/dropular/comment-page-1/#comment-5</link>
		<dc:creator>Amit</dc:creator>
		<pubDate>Sun, 27 Sep 2009 23:24:38 +0000</pubDate>
		<guid isPermaLink="false">http://calculating-infinity.de/?p=69#comment-5</guid>
		<description>Yo!

Any chance of an invite?</description>
		<content:encoded><![CDATA[<p>Yo!</p>
<p>Any chance of an invite?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dropular by nilson</title>
		<link>http://calculating-infinity.de/2009/03/12/dropular/comment-page-1/#comment-4</link>
		<dc:creator>nilson</dc:creator>
		<pubDate>Fri, 04 Sep 2009 16:16:04 +0000</pubDate>
		<guid isPermaLink="false">http://calculating-infinity.de/?p=69#comment-4</guid>
		<description>einen tag,

wuerde mich riesig ueber eine einladung zu dropular freuen ...

gruesse aus bonn

nilson</description>
		<content:encoded><![CDATA[<p>einen tag,</p>
<p>wuerde mich riesig ueber eine einladung zu dropular freuen &#8230;</p>
<p>gruesse aus bonn</p>
<p>nilson</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dropular by Evelyn</title>
		<link>http://calculating-infinity.de/2009/03/12/dropular/comment-page-1/#comment-3</link>
		<dc:creator>Evelyn</dc:creator>
		<pubDate>Wed, 05 Aug 2009 17:23:26 +0000</pubDate>
		<guid isPermaLink="false">http://calculating-infinity.de/?p=69#comment-3</guid>
		<description>Hi! :D
I´d love a dropular invite! Am I late? :&#124;</description>
		<content:encoded><![CDATA[<p>Hi! :D<br />
I´d love a dropular invite! Am I late? :|</p>
]]></content:encoded>
	</item>
</channel>
</rss>
