<?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: Greasemonkey And Dojo Integration</title>
	<atom:link href="http://dustint.com/archives/4/feed" rel="self" type="application/rss+xml" />
	<link>http://dustint.com/archives/4</link>
	<description>Tales Of A (Former) SFU Computing Scientist</description>
	<lastBuildDate>Sun, 05 Sep 2010 16:05:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Greasemonkey And Dojo Integration Redux &#124; Views From The Hill</title>
		<link>http://dustint.com/archives/4/comment-page-1#comment-258</link>
		<dc:creator>Greasemonkey And Dojo Integration Redux &#124; Views From The Hill</dc:creator>
		<pubDate>Sun, 02 May 2010 02:49:22 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=4#comment-258</guid>
		<description>[...] following can be used to overwrite the previous version of the user-script, restoring the broken functionality as well as making use of some of the newly introduced Dojo [...]</description>
		<content:encoded><![CDATA[<p>[...] following can be used to overwrite the previous version of the user-script, restoring the broken functionality as well as making use of some of the newly introduced Dojo [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>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>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>By: wei</title>
		<link>http://dustint.com/archives/4/comment-page-1#comment-60</link>
		<dc:creator>wei</dc:creator>
		<pubDate>Thu, 12 Feb 2009 07:10:01 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=4#comment-60</guid>
		<description>I got the same error. but I didn&#039;t use dijit.dialog, I use the dijit.layout.BorderContainer. But the error is the same, it didn&#039;t create a BorderContainer object, it creates a regular objects with only the properites I passed to the constructor.

how to fix it?</description>
		<content:encoded><![CDATA[<p>I got the same error. but I didn&#8217;t use dijit.dialog, I use the dijit.layout.BorderContainer. But the error is the same, it didn&#8217;t create a BorderContainer object, it creates a regular objects with only the properites I passed to the constructor.</p>
<p>how to fix it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcio Wesley Borges</title>
		<link>http://dustint.com/archives/4/comment-page-1#comment-51</link>
		<dc:creator>Marcio Wesley Borges</dc:creator>
		<pubDate>Tue, 18 Nov 2008 00:33:04 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=4#comment-51</guid>
		<description>Great article! 
It works for me.
Thanks!</description>
		<content:encoded><![CDATA[<p>Great article!<br />
It works for me.<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramon</title>
		<link>http://dustint.com/archives/4/comment-page-1#comment-44</link>
		<dc:creator>Ramon</dc:creator>
		<pubDate>Wed, 08 Oct 2008 23:22:36 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=4#comment-44</guid>
		<description>Any idea whether this is fundamentally a Dojo, GreaseMonkey or FF issue? Does this work with Dojo 1.2?</description>
		<content:encoded><![CDATA[<p>Any idea whether this is fundamentally a Dojo, GreaseMonkey or FF issue? Does this work with Dojo 1.2?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dustin</title>
		<link>http://dustint.com/archives/4/comment-page-1#comment-39</link>
		<dc:creator>Dustin</dc:creator>
		<pubDate>Tue, 19 Aug 2008 16:20:21 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=4#comment-39</guid>
		<description>Hi Luiz,
When I&#039;m doing testing now, I am getting the same error.
So it seems that my code is not compatible with Firefox 3 or a newer version of greasemonkey (Because that&#039;s all I can think of that has changed).

When the dialog is created
dialog = new dijit.Dialog({
title: &quot;Dojo Integration Test&quot;
},pane);

It appears that a Dialog object is not actually created, instead a {title: &quot;Dojo Integration Test&quot;} object is created (You can test this buy going unsafeWindow[&#039;console&#039;].debug(dialog);

If you figure out how to get around this please let me know!</description>
		<content:encoded><![CDATA[<p>Hi Luiz,<br />
When I&#8217;m doing testing now, I am getting the same error.<br />
So it seems that my code is not compatible with Firefox 3 or a newer version of greasemonkey (Because that&#8217;s all I can think of that has changed).</p>
<p>When the dialog is created<br />
dialog = new dijit.Dialog({<br />
title: &#8220;Dojo Integration Test&#8221;<br />
},pane);</p>
<p>It appears that a Dialog object is not actually created, instead a {title: &#8220;Dojo Integration Test&#8221;} object is created (You can test this buy going unsafeWindow['console'].debug(dialog);</p>
<p>If you figure out how to get around this please let me know!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luiz Marcelo Serique</title>
		<link>http://dustint.com/archives/4/comment-page-1#comment-38</link>
		<dc:creator>Luiz Marcelo Serique</dc:creator>
		<pubDate>Thu, 14 Aug 2008 19:50:56 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=4#comment-38</guid>
		<description>Hi,

i&#039;m testing your code, but firebug show me a error:

dialog.show is not a function

thanks.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>i&#8217;m testing your code, but firebug show me a error:</p>
<p>dialog.show is not a function</p>
<p>thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
