Where is dojo.charting libary on AOL site? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T06:55:20Zhttp://stackoverflow.com/feeds/question/684087http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/684087/where-is-dojo-charting-libary-on-aol-site0Where is dojo.charting libary on AOL site?David.Chu.ca2009-03-26T00:40:17Z2009-03-27T05:50:47Z
<p>I am testing dojo charting library. I prefer to use the library from AOL web page instead of installing dojo into my computer. I have the following codes:</p>
<pre><code><script
type="text/javascript"
src="http://o.aolcdn.com/dojo/1.2/dojo/dojo.xd.js">
</script>
<script type="text/javascript">
dojo.require("dojox.gfx");
dojo.require("dojox.gfx.move");
dojo.require("dojo.charting.*");
...
</code></pre>
<p>I got an error saying "uncaught exception: Could not load cross-domain resources: dojo.charting.<em>". I guess that my url to dojo library may not have dojo.charting.</em>. Does any one know what is the correct URL? Is there any way to browse AOL site to find out what libraries available? </p>
http://stackoverflow.com/questions/684087/where-is-dojo-charting-libary-on-aol-site/684099#6840991Answer by Jarret Hardie for Where is dojo.charting libary on AOL site?Jarret Hardie2009-03-26T00:47:30Z2009-03-26T01:05:55Z<p>have you tried using <code>dojox.charting</code>? Instead of <code>dojo.charting</code> - notice the lack of x in 'dojo'? </p>
<p>EDIT: AOL's release notes on dojo do not include mention of charting... I suspect you may be on your own here. This link mentions that AOL's 1.2.x release is the same as their 0.4.2 release, where they list their <a href="http://dev.aol.com/dojo" rel="nofollow">http://dev.aol.com/dojo</a> API inclusions (charting not included). Host charting elsewhere if you need it, by adding a subsequent <code><script></code> tag, with a different URL for the charting components you need. Or... perhaps AOL is not the appropriate CDN host for you: move your cloud elsewhere :-)</p>
http://stackoverflow.com/questions/684087/where-is-dojo-charting-libary-on-aol-site/684675#6846751Answer by Eugene Lazutkin for Where is dojo.charting libary on AOL site?Eugene Lazutkin2009-03-26T06:04:03Z2009-03-27T05:50:47Z<p>First of all like Jarret said: dojox.charting.</p>
<p>Second of all: the "wildcard loading" is obsolete since Dojo 0.4. You cannot use dojo.require("some.package.*") anymore. You have to be explicit about what you need.</p>
<p>The best you can do is to hit <a href="http://docs.dojocampus.org/dojox/charting" rel="nofollow">the charting docs</a> and <a href="http://archive.dojotoolkit.org/nightly/dojotoolkit/dojox/charting/tests/" rel="nofollow">tests</a> to see how to do it right for your particular needs — you didn't give out any hints of what you are actually trying to do.</p>