<?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 Views From The Hill</title>
	<atom:link href="http://dustint.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://dustint.com</link>
	<description>Tales Of A (Former) SFU Computing Scientist</description>
	<lastBuildDate>Sat, 06 Feb 2010 20:08:20 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Greasemonkey And Dojo Integration by Rob</title>
		<link>http://dustint.com/archives/4/comment-page-1#comment-226</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sat, 06 Feb 2010 20:08:20 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=4#comment-226</guid>
		<description>Broken here, &quot;dialog is undefined&quot;, bummer.</description>
		<content:encoded><![CDATA[<p>Broken here, &#8220;dialog is undefined&#8221;, bummer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Greasemonkey And Dojo Integration by cn1h</title>
		<link>http://dustint.com/archives/4/comment-page-1#comment-210</link>
		<dc:creator>cn1h</dc:creator>
		<pubDate>Sun, 10 Jan 2010 22:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=4#comment-210</guid>
		<description>thanks! that&#039;s just what I want.
By the way, why does @require in Userscript not work?</description>
		<content:encoded><![CDATA[<p>thanks! that&#8217;s just what I want.<br />
By the way, why does @require in Userscript not work?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hobbies &amp; Interests by Chris</title>
		<link>http://dustint.com/about/hobbies-interests/comment-page-1#comment-209</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Tue, 05 Jan 2010 04:51:05 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?page_id=81#comment-209</guid>
		<description>Hey dude, love that shot of you biking in Costa Rica!</description>
		<content:encoded><![CDATA[<p>Hey dude, love that shot of you biking in Costa Rica!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Per Module Zend_Layout by DA</title>
		<link>http://dustint.com/archives/28/comment-page-1#comment-179</link>
		<dc:creator>DA</dc:creator>
		<pubDate>Mon, 19 Oct 2009 09:20:41 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=28#comment-179</guid>
		<description>I did the following:

created a LayoutPlugin.php in the modules folder.
included that into the public/index.php
/setup the layout
Zend_Layout::startMvc(array(
‘layoutPath’ =&gt; APPLICATION_PATH . ‘modules/default/layouts/scripts’,
‘layout’ =&gt; ‘layout’
));

$layoutModulePlugin = new Module_LayoutPlugin();
$layoutModulePlugin-&gt;registerModuleLayout(’admin’,’../application/admin/layouts’);

$controller-&gt;registerPlugin($layoutModulePlugin);

and it keeps giving me an error

Fatal error: Class &#039;Zend_Controller_Front&#039; not found in C:\wamp\www\project\public\index.php on line 20</description>
		<content:encoded><![CDATA[<p>I did the following:</p>
<p>created a LayoutPlugin.php in the modules folder.<br />
included that into the public/index.php<br />
/setup the layout<br />
Zend_Layout::startMvc(array(<br />
‘layoutPath’ =&gt; APPLICATION_PATH . ‘modules/default/layouts/scripts’,<br />
‘layout’ =&gt; ‘layout’<br />
));</p>
<p>$layoutModulePlugin = new Module_LayoutPlugin();<br />
$layoutModulePlugin-&gt;registerModuleLayout(’admin’,’../application/admin/layouts’);</p>
<p>$controller-&gt;registerPlugin($layoutModulePlugin);</p>
<p>and it keeps giving me an error</p>
<p>Fatal error: Class &#8216;Zend_Controller_Front&#8217; not found in C:\wamp\www\project\public\index.php on line 20</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Per Module Zend_Layout by EM</title>
		<link>http://dustint.com/archives/28/comment-page-1#comment-174</link>
		<dc:creator>EM</dc:creator>
		<pubDate>Mon, 05 Oct 2009 21:07:09 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=28#comment-174</guid>
		<description>Thanks - it was easy to follow.</description>
		<content:encoded><![CDATA[<p>Thanks &#8211; it was easy to follow.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Per Module Zend_Layout by Deitrich Zook</title>
		<link>http://dustint.com/archives/28/comment-page-1#comment-110</link>
		<dc:creator>Deitrich Zook</dc:creator>
		<pubDate>Wed, 16 Sep 2009 04:08:45 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=28#comment-110</guid>
		<description>Thanks for showing the short simple way and the more extensive way using individual layouts for various modules.   I am going to use the simple way for the time being as I only have one controller in the new module that needs a custom layout.  

For anyone wanting an example based on this one, there is an example here:
http://www.zfforums.com/zend-framework-components-13/model-view-controller-mvc-21/disable-layout-entire-module-1723.html</description>
		<content:encoded><![CDATA[<p>Thanks for showing the short simple way and the more extensive way using individual layouts for various modules.   I am going to use the simple way for the time being as I only have one controller in the new module that needs a custom layout.  </p>
<p>For anyone wanting an example based on this one, there is an example here:<br />
<a href="http://www.zfforums.com/zend-framework-components-13/model-view-controller-mvc-21/disable-layout-entire-module-1723.html" rel="nofollow">http://www.zfforums.com/zend-framework-components-13/model-view-controller-mvc-21/disable-layout-entire-module-1723.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dojo: Meet Google Book Search by Dustin</title>
		<link>http://dustint.com/archives/11/comment-page-1#comment-80</link>
		<dc:creator>Dustin</dc:creator>
		<pubDate>Wed, 12 Aug 2009 17:09:42 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=11#comment-80</guid>
		<description>Yes, I would say that you would risk being banned. However, I&#039;m unsure how closely google keeps track of their logs. Because we are doing all the searching from the client (through javascript), and likewise, the client is the one pulling down the images, the the logs are going to show different IP&#039;s (one for each client). The only common thread to link it back to your site will be the referrer. 

Furthermore, now that the google book search is a published API (and available via dojo) I can&#039;t see google having any problem with it. It would likely only be bothered by effectively co-locating the images of the books for your site.</description>
		<content:encoded><![CDATA[<p>Yes, I would say that you would risk being banned. However, I&#8217;m unsure how closely google keeps track of their logs. Because we are doing all the searching from the client (through javascript), and likewise, the client is the one pulling down the images, the the logs are going to show different IP&#8217;s (one for each client). The only common thread to link it back to your site will be the referrer. </p>
<p>Furthermore, now that the google book search is a published API (and available via dojo) I can&#8217;t see google having any problem with it. It would likely only be bothered by effectively co-locating the images of the books for your site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dojo: Meet Google Book Search by Edward</title>
		<link>http://dustint.com/archives/11/comment-page-1#comment-79</link>
		<dc:creator>Edward</dc:creator>
		<pubDate>Wed, 12 Aug 2009 12:34:34 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=11#comment-79</guid>
		<description>Hi, I was wondering if you have a Google book search implemented on a popular web site, won&#039;t you risk being banned from Google, for too many query request? Is there a way to avoid it?</description>
		<content:encoded><![CDATA[<p>Hi, I was wondering if you have a Google book search implemented on a popular web site, won&#8217;t you risk being banned from Google, for too many query request? Is there a way to avoid it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Per Module Zend_Layout by Gites France</title>
		<link>http://dustint.com/archives/28/comment-page-1#comment-77</link>
		<dc:creator>Gites France</dc:creator>
		<pubDate>Fri, 07 Aug 2009 10:31:48 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=28#comment-77</guid>
		<description>Thanks - it was easy to follow.</description>
		<content:encoded><![CDATA[<p>Thanks &#8211; it was easy to follow.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dojo: Meet Google Book Search by TriemiProomia</title>
		<link>http://dustint.com/archives/11/comment-page-1#comment-76</link>
		<dc:creator>TriemiProomia</dc:creator>
		<pubDate>Fri, 07 Aug 2009 05:16:06 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=11#comment-76</guid>
		<description>stignetty
&lt;a href=&quot;http://avsjeiskxsk.com&quot; rel=&quot;nofollow&quot;&gt;Bfgd&lt;/a&gt;
Omilsindumn
&lt;a href=&quot;http://avsrkeiskxsk.com&quot; rel=&quot;nofollow&quot;&gt;Bdeg&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>stignetty<br />
<a href="http://avsjeiskxsk.com" rel="nofollow">Bfgd</a><br />
Omilsindumn<br />
<a href="http://avsrkeiskxsk.com" rel="nofollow">Bdeg</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
