<?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 Coders Army</title>
	<atom:link href="http://www.codersarmy.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codersarmy.com</link>
	<description>You&#039;re in the army now</description>
	<lastBuildDate>Mon, 12 Jul 2010 06:12:12 +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 To Gwibber or not to Gwibber by Matt Cockayne</title>
		<link>http://www.codersarmy.com/to-gwibber-or-not-to-gwibber/comment-page-1#comment-106</link>
		<dc:creator>Matt Cockayne</dc:creator>
		<pubDate>Mon, 12 Jul 2010 06:12:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.codersarmy.com/?p=187#comment-106</guid>
		<description>that makes me much happier than messing around in couch.. thanks for the info... Gwibber is now definitely my favourite client as soon as the facebook account bug is fixed</description>
		<content:encoded><![CDATA[<p>that makes me much happier than messing around in couch.. thanks for the info&#8230; Gwibber is now definitely my favourite client as soon as the facebook account bug is fixed</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on To Gwibber or not to Gwibber by Ryan Paul</title>
		<link>http://www.codersarmy.com/to-gwibber-or-not-to-gwibber/comment-page-1#comment-105</link>
		<dc:creator>Ryan Paul</dc:creator>
		<pubDate>Mon, 12 Jul 2010 01:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.codersarmy.com/?p=187#comment-105</guid>
		<description>When you click an item in the sidebar, you can close it by selecting &quot;Close Stream&quot; from the Gwibber menu. You can also close a stream by clicking the red &quot;X&quot; next to it in the expanded sidebar. To get the expanded sidebar, just drag the splitter to the right of the sidebar.</description>
		<content:encoded><![CDATA[<p>When you click an item in the sidebar, you can close it by selecting &#8220;Close Stream&#8221; from the Gwibber menu. You can also close a stream by clicking the red &#8220;X&#8221; next to it in the expanded sidebar. To get the expanded sidebar, just drag the splitter to the right of the sidebar.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend In- Doctrine -ation by matt.cockayne</title>
		<link>http://www.codersarmy.com/zend-in-doctrine-ation/comment-page-1#comment-90</link>
		<dc:creator>matt.cockayne</dc:creator>
		<pubDate>Thu, 17 Dec 2009 06:42:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.codersarmy.com/?p=136#comment-90</guid>
		<description>Hi Jeremy. 

Yes I had to create my 0own task to allow table generation. The reason for this was that the default task did not take into account these settings from my ini file
&lt;code&gt;
resources.doctrine.generate_models_options.generateTableClasses = true
resources.doctrine.generate_models_options.generateBaseClasses = true
resources.doctrine.generate_models_options.classPrefix = &quot;Model_&quot;
resources.doctrine.generate_models_options.baseClassPrefix = &quot;Base_&quot;
&lt;/code&gt;

because of this it was failing to identify the models correctly and build them accordingly. 

I tend to do a lot of  my building in separate stages and rarely use the build all taks. In order for the build All to work you would need to create your own version where it calls the newly built task/s instead of the default task.
&lt;code&gt;
public function __construct($dispatcher = null)
    {
        parent::__construct($dispatcher);
       
        $this-&gt;models = new Doctrine_Task_GenerateModelsYaml($this-&gt;dispatcher);
        $this-&gt;createDb = new Doctrine_Task_CreateDb($this-&gt;dispatcher);
        $this-&gt;tables = new Doctrine_Task_ZucchiCreateTables($this-&gt;dispatcher);
       
        $this-&gt;requiredArguments = array_merge($this-&gt;requiredArguments, $this-&gt;models-&gt;requiredArguments, $this-&gt;createDb-&gt;requiredArguments, $this-&gt;tables-&gt;requiredArguments);
        $this-&gt;optionalArguments = array_merge($this-&gt;optionalArguments, $this-&gt;models-&gt;optionalArguments, $this-&gt;createDb-&gt;optionalArguments, $this-&gt;tables-&gt;optionalArguments);
    }
&lt;/code&gt;


I noticed that they fixed the issue with sfYaml. Its not a perfect solution but it does make it more workable.</description>
		<content:encoded><![CDATA[<p>Hi Jeremy. </p>
<p>Yes I had to create my 0own task to allow table generation. The reason for this was that the default task did not take into account these settings from my ini file</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">resources.doctrine.generate_models_options.generateTableClasses = true<br />
resources.doctrine.generate_models_options.generateBaseClasses = true<br />
resources.doctrine.generate_models_options.classPrefix = &quot;Model_&quot;<br />
resources.doctrine.generate_models_options.baseClassPrefix = &quot;Base_&quot;</div></td></tr></tbody></table></div>
<p>because of this it was failing to identify the models correctly and build them accordingly. </p>
<p>I tend to do a lot of  my building in separate stages and rarely use the build all taks. In order for the build All to work you would need to create your own version where it calls the newly built task/s instead of the default task.</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">public function __construct($dispatcher = null)<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; parent::__construct($dispatcher);<br />
&nbsp; &nbsp; &nbsp; &nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; $this-&amp;gt;models = new Doctrine_Task_GenerateModelsYaml($this-&amp;gt;dispatcher);<br />
&nbsp; &nbsp; &nbsp; &nbsp; $this-&amp;gt;createDb = new Doctrine_Task_CreateDb($this-&amp;gt;dispatcher);<br />
&nbsp; &nbsp; &nbsp; &nbsp; $this-&amp;gt;tables = new Doctrine_Task_ZucchiCreateTables($this-&amp;gt;dispatcher);<br />
&nbsp; &nbsp; &nbsp; &nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; $this-&amp;gt;requiredArguments = array_merge($this-&amp;gt;requiredArguments, $this-&amp;gt;models-&amp;gt;requiredArguments, $this-&amp;gt;createDb-&amp;gt;requiredArguments, $this-&amp;gt;tables-&amp;gt;requiredArguments);<br />
&nbsp; &nbsp; &nbsp; &nbsp; $this-&amp;gt;optionalArguments = array_merge($this-&amp;gt;optionalArguments, $this-&amp;gt;models-&amp;gt;optionalArguments, $this-&amp;gt;createDb-&amp;gt;optionalArguments, $this-&amp;gt;tables-&amp;gt;optionalArguments);<br />
&nbsp; &nbsp; }</div></td></tr></tbody></table></div>
<p>I noticed that they fixed the issue with sfYaml. Its not a perfect solution but it does make it more workable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend In- Doctrine -ation by Jeremy Hicks</title>
		<link>http://www.codersarmy.com/zend-in-doctrine-ation/comment-page-1#comment-89</link>
		<dc:creator>Jeremy Hicks</dc:creator>
		<pubDate>Wed, 16 Dec 2009 23:22:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.codersarmy.com/?p=136#comment-89</guid>
		<description>I failed to mention that the latest 1.2 download of Doctrine includes a vendor folder with sfYaml in it. No more need to manually copy the files over.</description>
		<content:encoded><![CDATA[<p>I failed to mention that the latest 1.2 download of Doctrine includes a vendor folder with sfYaml in it. No more need to manually copy the files over.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend In- Doctrine -ation by Jeremy Hicks</title>
		<link>http://www.codersarmy.com/zend-in-doctrine-ation/comment-page-1#comment-88</link>
		<dc:creator>Jeremy Hicks</dc:creator>
		<pubDate>Wed, 16 Dec 2009 23:17:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.codersarmy.com/?p=136#comment-88</guid>
		<description>Great post! I&#039;ve been reading all the same articles that it looks like you&#039;ve already been through. Same result of not a single one having everything right and in one place.

I took a look at the bug that you filed (http://www.doctrine-project.org/jira/browse/DC-288)

Looks like the best solution for now is to register a namespace and add the sfYaml stuff to the autoloader:

$loader = Zend_Loader_Autoloader::getInstance();
$loader-&gt;pushAutoloader(array(&#039;Doctrine&#039;, &#039;autoload&#039;),   &#039;Doctrine&#039;);
$loader-&gt;registerNamespace(&#039;sfYaml&#039;)
    -&gt;pushAutoloader(array(&#039;Doctrine&#039;, &#039;autoload&#039;), &#039;sfYaml&#039;);

This makes my cli task of generate-models-yaml work fine. However, build-all-reload (which is supposed to create the models from the yaml and created the database tables) says that it is creating the database tables, but they don&#039;t actually get created. The DB itself does get dropped and re-created. But after that the tables don&#039;t get created. The models are getting created as expected.

Any ideas as to why the database tables wouldn&#039;t get created? I don&#039;t see any errors that indicate anything is wrong.

Looks like you just created your own task to create the database tables. I was surprised to not see a task already available called &quot;generate-db-yaml&quot;.</description>
		<content:encoded><![CDATA[<p>Great post! I&#8217;ve been reading all the same articles that it looks like you&#8217;ve already been through. Same result of not a single one having everything right and in one place.</p>
<p>I took a look at the bug that you filed (<a href="http://www.doctrine-project.org/jira/browse/DC-288" rel="nofollow">http://www.doctrine-project.org/jira/browse/DC-288</a>)</p>
<p>Looks like the best solution for now is to register a namespace and add the sfYaml stuff to the autoloader:</p>
<p>$loader = Zend_Loader_Autoloader::getInstance();<br />
$loader-&gt;pushAutoloader(array(&#8216;Doctrine&#8217;, &#8216;autoload&#8217;),   &#8216;Doctrine&#8217;);<br />
$loader-&gt;registerNamespace(&#8216;sfYaml&#8217;)<br />
    -&gt;pushAutoloader(array(&#8216;Doctrine&#8217;, &#8216;autoload&#8217;), &#8216;sfYaml&#8217;);</p>
<p>This makes my cli task of generate-models-yaml work fine. However, build-all-reload (which is supposed to create the models from the yaml and created the database tables) says that it is creating the database tables, but they don&#8217;t actually get created. The DB itself does get dropped and re-created. But after that the tables don&#8217;t get created. The models are getting created as expected.</p>
<p>Any ideas as to why the database tables wouldn&#8217;t get created? I don&#8217;t see any errors that indicate anything is wrong.</p>
<p>Looks like you just created your own task to create the database tables. I was surprised to not see a task already available called &#8220;generate-db-yaml&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend + TinyMCE by krishna</title>
		<link>http://www.codersarmy.com/zend-tinymce/comment-page-1#comment-85</link>
		<dc:creator>krishna</dc:creator>
		<pubDate>Fri, 11 Dec 2009 12:51:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.codersarmy.com/?p=103#comment-85</guid>
		<description>I am just new to zend framework ,I want to know what are file to be created and where it is to be stored</description>
		<content:encoded><![CDATA[<p>I am just new to zend framework ,I want to know what are file to be created and where it is to be stored</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend + TinyMCE by krishna</title>
		<link>http://www.codersarmy.com/zend-tinymce/comment-page-1#comment-84</link>
		<dc:creator>krishna</dc:creator>
		<pubDate>Fri, 11 Dec 2009 12:37:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.codersarmy.com/?p=103#comment-84</guid>
		<description>what should be the file name and getter and setter method and folder structure</description>
		<content:encoded><![CDATA[<p>what should be the file name and getter and setter method and folder structure</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting squeakly clean with Zend_Soap by matt.cockayne</title>
		<link>http://www.codersarmy.com/getting-squeakly-clean-with-zend_soap/comment-page-1#comment-83</link>
		<dc:creator>matt.cockayne</dc:creator>
		<pubDate>Tue, 17 Nov 2009 14:52:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.codersarmy.com/?p=129#comment-83</guid>
		<description>Not quite... my problems were occuring because a .NET client was trying to consume a service created with the Zend_Soap_Server in conjunction with autodiscover.

I have used the Zend_Soap_Client to consume a number of .NET based services since I wrote this post without the need to change the soap version

I think that the version of soap used by .NET is dependent upon the version of .NET used and the libraries used to generate the service.

Good tip to know for future reference though, thanks.</description>
		<content:encoded><![CDATA[<p>Not quite&#8230; my problems were occuring because a .NET client was trying to consume a service created with the Zend_Soap_Server in conjunction with autodiscover.</p>
<p>I have used the Zend_Soap_Client to consume a number of .NET based services since I wrote this post without the need to change the soap version</p>
<p>I think that the version of soap used by .NET is dependent upon the version of .NET used and the libraries used to generate the service.</p>
<p>Good tip to know for future reference though, thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting squeakly clean with Zend_Soap by Sam</title>
		<link>http://www.codersarmy.com/getting-squeakly-clean-with-zend_soap/comment-page-1#comment-82</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Tue, 17 Nov 2009 12:48:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.codersarmy.com/?p=129#comment-82</guid>
		<description>I may be wrong here, but when using Zend_Soap_Client to consume a .NET web-service, I had to set the soap_version option to the SOAP_1_1 constant.

Is it possible .NET services (in specific versions?) use SOAP 1.1 by default (Zend_Soap_Client uses 1.2 by default)?

I&#039;m not a SOAP expert, but this may be the cause of your incompatibilities too?</description>
		<content:encoded><![CDATA[<p>I may be wrong here, but when using Zend_Soap_Client to consume a .NET web-service, I had to set the soap_version option to the SOAP_1_1 constant.</p>
<p>Is it possible .NET services (in specific versions?) use SOAP 1.1 by default (Zend_Soap_Client uses 1.2 by default)?</p>
<p>I&#8217;m not a SOAP expert, but this may be the cause of your incompatibilities too?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basic Training by matt.cockayne</title>
		<link>http://www.codersarmy.com/basic-training/comment-page-1#comment-80</link>
		<dc:creator>matt.cockayne</dc:creator>
		<pubDate>Tue, 15 Sep 2009 08:38:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.codersarmy.com/?p=4#comment-80</guid>
		<description>Hi Hari

Glad you like the site.. I need to start posting again as its been a while since my last one

The email subscription should be working again now

The submit button should be just below the comments textarea.. its black so all you should see is the text &quot;Leave Commenr&quot;

Matt</description>
		<content:encoded><![CDATA[<p>Hi Hari</p>
<p>Glad you like the site.. I need to start posting again as its been a while since my last one</p>
<p>The email subscription should be working again now</p>
<p>The submit button should be just below the comments textarea.. its black so all you should see is the text &#8220;Leave Commenr&#8221;</p>
<p>Matt</p>
]]></content:encoded>
	</item>
</channel>
</rss>
