Where can I find the Dojo XMLNS DTD? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T09:05:34Zhttp://stackoverflow.com/feeds/question/302580http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/302580/where-can-i-find-the-dojo-xmlns-dtd0Where can I find the Dojo XMLNS DTD?James A. Rosen2008-11-19T16:53:54Z2009-07-16T13:00:01Z
<p>I want to add some Dojo widgets to my XHTML pages, but Dojo uses some attributes that aren't part of the XHTML spec. For example:</p>
<pre><code><input dojoType="ComboBox" type="text" dataUrl="/some_data.json" />
</code></pre>
<p>The <code>dojoType</code> and <code>dataUrl</code> attributes cause validation problems. I believe Dojo lets me move <code>dojoType</code> into the <code>class</code> attribute:</p>
<pre><code><input class="dojo-ComboBox" type="text" dataUrl="/some_data.json" />
</code></pre>
<p>That solves part, but not all of the problem. The "correct" solution would look something like this:</p>
<pre><code><input dojo:type="ComboBox" type="text" dojo:dataUrl="/some_data.json" />
</code></pre>
<p>But that requires a Dojo XMLNS declaration at the top of my HTML file, which means I need to find a copy of the Dojo XMLNS DTD. I suspect I'll need to copy it to my server and host it there because I've extended the Dojo toolkit. Will Dojo even pick up on the scoped version?</p>
http://stackoverflow.com/questions/302580/where-can-i-find-the-dojo-xmlns-dtd/303258#3032581Answer by Ola Tuvesson for Where can I find the Dojo XMLNS DTD?Ola Tuvesson2008-11-19T20:32:03Z2008-11-19T20:32:03Z<p>I don't believe substituting a custom DTD will make your pages validate. Whatever the DTD they are still not valid XHTML. If validation is really important you could try using the Dojo JavaScript library to write out all your widgets instead: <a href="http://www.dojoforum.com/node/1182" rel="nofollow">http://www.dojoforum.com/node/1182</a> HTH</p>