<?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 on: Module Manager Update, now on Google Code!</title>
	<atom:link href="http://colin.mollenhour.com/2010/01/31/module-manager-update/feed/" rel="self" type="application/rss+xml" />
	<link>http://colin.mollenhour.com/2010/01/31/module-manager-update/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 30 Dec 2011 22:08:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jason Williams</title>
		<link>http://colin.mollenhour.com/2010/01/31/module-manager-update/comment-page-1/#comment-83</link>
		<dc:creator>Jason Williams</dc:creator>
		<pubDate>Sat, 05 Mar 2011 12:57:22 +0000</pubDate>
		<guid isPermaLink="false">http://colin.mollenhour.com/?p=109#comment-83</guid>
		<description>Colin,&lt;br&gt;Thanks for the quick response. I now have it working with modman managing the symlink to my version Template.php which fixes the problem with Magento and sym links. Sweetly ironic. J</description>
		<content:encoded><![CDATA[<p>Colin,<br />Thanks for the quick response. I now have it working with modman managing the symlink to my version Template.php which fixes the problem with Magento and sym links. Sweetly ironic. J</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Colin Mollenhour</title>
		<link>http://colin.mollenhour.com/2010/01/31/module-manager-update/comment-page-1/#comment-82</link>
		<dc:creator>Colin Mollenhour</dc:creator>
		<pubDate>Thu, 03 Mar 2011 01:40:42 +0000</pubDate>
		<guid isPermaLink="false">http://colin.mollenhour.com/?p=109#comment-82</guid>
		<description>Excellent! I was just looking at implementing bash completion for modman 
&lt;br&gt;a couple days ago but did not have any time to spare for it. Thanks for 
&lt;br&gt;sharing!</description>
		<content:encoded><![CDATA[<p>Excellent! I was just looking at implementing bash completion for modman<br />
<br />a couple days ago but did not have any time to spare for it. Thanks for<br />
<br />sharing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Franklin Strube</title>
		<link>http://colin.mollenhour.com/2010/01/31/module-manager-update/comment-page-1/#comment-81</link>
		<dc:creator>Franklin Strube</dc:creator>
		<pubDate>Wed, 02 Mar 2011 13:37:29 +0000</pubDate>
		<guid isPermaLink="false">http://colin.mollenhour.com/?p=109#comment-81</guid>
		<description>Colin,&lt;br&gt;&lt;br&gt;I&#039;ve been using modman for a month or so now, and it has made my Magento workspace much cleaner. However, one thing that got me down was not having my Linux terminal auto-complete my modman commands.&lt;br&gt;&lt;br&gt;The following bash_completion script will provide auto-completion functionality for modman. Just throw it in /etc/bash_completion.d/modman or append it to ~/.bash_completion and you are good to go.&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.franklinstrube.com/blog/magento-module-manager-bash-completion&quot; rel=&quot;nofollow&quot;&gt;http://www.franklinstrube.com/...&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Colin,</p>
<p>I&#39;ve been using modman for a month or so now, and it has made my Magento workspace much cleaner. However, one thing that got me down was not having my Linux terminal auto-complete my modman commands.</p>
<p>The following bash_completion script will provide auto-completion functionality for modman. Just throw it in /etc/bash_completion.d/modman or append it to ~/.bash_completion and you are good to go.</p>
<p><a href="http://www.franklinstrube.com/blog/magento-module-manager-bash-completion" rel="nofollow">http://www.franklinstrube.com/&#8230;</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Colin Mollenhour</title>
		<link>http://colin.mollenhour.com/2010/01/31/module-manager-update/comment-page-1/#comment-80</link>
		<dc:creator>Colin Mollenhour</dc:creator>
		<pubDate>Wed, 02 Mar 2011 01:40:01 +0000</pubDate>
		<guid isPermaLink="false">http://colin.mollenhour.com/?p=109#comment-80</guid>
		<description>Jason, Magento uses PHP&#039;s include path when loading class files. The 
&lt;br&gt;app/code/local and app/code/community both come before app/core/core in 
&lt;br&gt;the include path so you can symlink an edited Template.php to 
&lt;br&gt;app/code/local/Mage/Core/Block/Template.php and Magento will load your 
&lt;br&gt;copy instead of the original copy.</description>
		<content:encoded><![CDATA[<p>Jason, Magento uses PHP&#39;s include path when loading class files. The<br />
<br />app/code/local and app/code/community both come before app/core/core in<br />
<br />the include path so you can symlink an edited Template.php to<br />
<br />app/code/local/Mage/Core/Block/Template.php and Magento will load your<br />
<br />copy instead of the original copy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Williams</title>
		<link>http://colin.mollenhour.com/2010/01/31/module-manager-update/comment-page-1/#comment-79</link>
		<dc:creator>Jason Williams</dc:creator>
		<pubDate>Tue, 01 Mar 2011 22:33:21 +0000</pubDate>
		<guid isPermaLink="false">http://colin.mollenhour.com/?p=109#comment-79</guid>
		<description>Hi Colin,&lt;br&gt;&lt;br&gt;I could be being daft here (strong possibility as am sleep deprived by having very young baby at home) but how did you implement your override of Mage_Core_Block_Template class? In most cases this class is extended by other classes and as far as I can see Magento doesn&#039;t perform any overridden when a class is itself extended. I think I&#039;m missing something simple here - any pointers would be much appreciated. Thanks.</description>
		<content:encoded><![CDATA[<p>Hi Colin,</p>
<p>I could be being daft here (strong possibility as am sleep deprived by having very young baby at home) but how did you implement your override of Mage_Core_Block_Template class? In most cases this class is extended by other classes and as far as I can see Magento doesn&#39;t perform any overridden when a class is itself extended. I think I&#39;m missing something simple here &#8211; any pointers would be much appreciated. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Williams</title>
		<link>http://colin.mollenhour.com/2010/01/31/module-manager-update/comment-page-1/#comment-78</link>
		<dc:creator>Jason Williams</dc:creator>
		<pubDate>Wed, 19 Jan 2011 16:03:46 +0000</pubDate>
		<guid isPermaLink="false">http://colin.mollenhour.com/?p=109#comment-78</guid>
		<description>Yes, I had read the support issue but you&#039;ve reminded me to add a comment to support a better fix that this silly developer mode approach Varien are planning to take.&lt;br&gt;&lt;br&gt;I have just hit that point where I need to add a simple override Module to fix the Template class as am just working with a new project which is the first (of many) that I plan to use modman.</description>
		<content:encoded><![CDATA[<p>Yes, I had read the support issue but you&#39;ve reminded me to add a comment to support a better fix that this silly developer mode approach Varien are planning to take.</p>
<p>I have just hit that point where I need to add a simple override Module to fix the Template class as am just working with a new project which is the first (of many) that I plan to use modman.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Colin Mollenhour</title>
		<link>http://colin.mollenhour.com/2010/01/31/module-manager-update/comment-page-1/#comment-76</link>
		<dc:creator>Colin Mollenhour</dc:creator>
		<pubDate>Mon, 17 Jan 2011 20:41:32 +0000</pubDate>
		<guid isPermaLink="false">http://colin.mollenhour.com/?p=109#comment-76</guid>
		<description>Jason, there is an issue reported to hopefully get this fixed in a 
&lt;br&gt;future release.
&lt;br&gt;&lt;a href=&quot;http://www.magentocommerce.com/bug-tracking/issue/?issue=10487&quot; rel=&quot;nofollow&quot;&gt;http://www.magentocommerce.com...&lt;/a&gt;
&lt;br&gt; From what I can tell so far the &quot;fix&quot; requires developer mode which is 
&lt;br&gt;no fix at all. Please show your support for a better fix in the comments 
&lt;br&gt;on that issue.
&lt;br&gt;
&lt;br&gt;Fortunately, overriding the Mage_Core_Block_Template class to remove the 
&lt;br&gt;rather lame security enhancement is quite easy.</description>
		<content:encoded><![CDATA[<p>Jason, there is an issue reported to hopefully get this fixed in a<br />
<br />future release.<br />
<br /><a href="http://www.magentocommerce.com/bug-tracking/issue/?issue=10487" rel="nofollow">http://www.magentocommerce.com&#8230;</a><br />
<br /> From what I can tell so far the &#8220;fix&#8221; requires developer mode which is<br />
<br />no fix at all. Please show your support for a better fix in the comments<br />
<br />on that issue.</p>
<p>Fortunately, overriding the Mage_Core_Block_Template class to remove the<br />
<br />rather lame security enhancement is quite easy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Williams</title>
		<link>http://colin.mollenhour.com/2010/01/31/module-manager-update/comment-page-1/#comment-75</link>
		<dc:creator>Jason Williams</dc:creator>
		<pubDate>Mon, 17 Jan 2011 15:09:35 +0000</pubDate>
		<guid isPermaLink="false">http://colin.mollenhour.com/?p=109#comment-75</guid>
		<description>Thanks Colin. I stumbled across the repair option a little while after I&#039;d posted my comment. The only issue I see now is Magento&#039;s darn 1.4.2.0 security &#039;fix&#039; update, which I&#039;ve just discovered. Joy.</description>
		<content:encoded><![CDATA[<p>Thanks Colin. I stumbled across the repair option a little while after I&#39;d posted my comment. The only issue I see now is Magento&#39;s darn 1.4.2.0 security &#39;fix&#39; update, which I&#39;ve just discovered. Joy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Colin Mollenhour</title>
		<link>http://colin.mollenhour.com/2010/01/31/module-manager-update/comment-page-1/#comment-73</link>
		<dc:creator>Colin Mollenhour</dc:creator>
		<pubDate>Tue, 04 Jan 2011 21:01:15 +0000</pubDate>
		<guid isPermaLink="false">http://colin.mollenhour.com/?p=109#comment-73</guid>
		<description>Yes, that is correct, 1.4.2 requires a modification be made for modman 
&lt;br&gt;to work due to the new template &quot;security&quot;.. See more info here: 
&lt;br&gt;&lt;a href=&quot;http://www.magentocommerce.com/bug-tracking/issue?issue=10487&quot; rel=&quot;nofollow&quot;&gt;http://www.magentocommerce.com...&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Yes, that is correct, 1.4.2 requires a modification be made for modman<br />
<br />to work due to the new template &#8220;security&#8221;.. See more info here:<br />
<br /><a href="http://www.magentocommerce.com/bug-tracking/issue?issue=10487" rel="nofollow">http://www.magentocommerce.com&#8230;</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: john k</title>
		<link>http://colin.mollenhour.com/2010/01/31/module-manager-update/comment-page-1/#comment-72</link>
		<dc:creator>john k</dc:creator>
		<pubDate>Tue, 04 Jan 2011 04:11:01 +0000</pubDate>
		<guid isPermaLink="false">http://colin.mollenhour.com/?p=109#comment-72</guid>
		<description>Have you tried this in Magento 1.4.2 (or in my case EE 1.9.1.1)?  &lt;br&gt;&lt;br&gt;I found I had to hack the core &quot;template.php&quot; file because it was no longer allowing template files to be included if it was in symlink outside of the actual &quot;design&quot; directory.</description>
		<content:encoded><![CDATA[<p>Have you tried this in Magento 1.4.2 (or in my case EE 1.9.1.1)?  </p>
<p>I found I had to hack the core &#8220;template.php&#8221; file because it was no longer allowing template files to be included if it was in symlink outside of the actual &#8220;design&#8221; directory.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

