Loading Dojo Library from AOL and Widget Codes from Local? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T17:31:45Zhttp://stackoverflow.com/feeds/question/308036http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/308036/loading-dojo-library-from-aol-and-widget-codes-from-local1Loading Dojo Library from AOL and Widget Codes from Local?David.Chu.ca2008-11-21T06:21:20Z2008-12-27T13:14:44Z
<p>I just started to learn Dojo. I followed one site Widget example with some different ways to load Dojo libraries. I like to use AOL reference to load dojo.js like this:</p>
<pre><code><script type="text/javascript"
src="http://o.aolcdn.com/dojo/1.2.0/dojo/dojo.xd.js">
</script>
</code></pre>
<p>and saved my widget codes in local web server like this:</p>
<pre><code>scripts/
myWidget/
widgetExample.js
...
test.html
</code></pre>
<p>where <em>widgetExample.js</em> contains my widget class codes, and <em>test.html</em> is my testing page. The error message I got is: "uncaught exception: Could not load cross-domain resources: <em>myWidget.widgetExample</em> ...". I am not sure if I have to load dojo package locally? I really like to separate dojo library package as they are or loaded from AOL and only put my own codes in a local path. I tried to google about different domain loading, baseScriptUrl, and moduleMapping? Still not be able to figure out. Thanks for any detail instructions if any.</p>
http://stackoverflow.com/questions/308036/loading-dojo-library-from-aol-and-widget-codes-from-local/313472#3134720Answer by Eugene Lazutkin for Loading Dojo Library from AOL and Widget Codes from Local?Eugene Lazutkin2008-11-24T05:15:05Z2008-11-24T05:15:05Z<p>Your question is too obscured and specialized even for hard-core Dojo users. ;-) I suggest you to ask it where it belongs: in <a href="http://dojotoolkit.org/forum" rel="nofollow">the Dojo forum</a> — <a href="http://dojotoolkit.org/forums/forums/support/general-support" rel="nofollow">Dojo Core Support</a> looks like the right place.</p>
http://stackoverflow.com/questions/308036/loading-dojo-library-from-aol-and-widget-codes-from-local/394983#3949831Answer by phiggins for Loading Dojo Library from AOL and Widget Codes from Local?phiggins2008-12-27T13:14:44Z2008-12-27T13:14:44Z<p>This may help: <a href="http://dojotoolkit.org/forum/dojo-core-dojo-0-9/dojo-core-support/xdomain-usage-dojo-loading-not-detecting-local-modules" rel="nofollow">http://dojotoolkit.org/forum/dojo-core-dojo-0-9/dojo-core-support/xdomain-usage-dojo-loading-not-detecting-local-modules</a></p>
<p>The summary is: you need a djConfig item registering the modulePaths you want to be local, and specify a baseUrl to "trick" Dojo into thinking it knows where those paths are relative, across hosts. </p>
<p>djConfig = { modulePaths: { "mine":"/js/mine" };</p>
<p>then you can dojo.require("mine.Thing") from /js/mine/Thing.js</p>
<p>Regards,
Peter Higgins</p>