Where can I find the Dojo XMLNS DTD? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T09:05:34Z http://stackoverflow.com/feeds/question/302580 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/302580/where-can-i-find-the-dojo-xmlns-dtd 0 Where can I find the Dojo XMLNS DTD? James A. Rosen 2008-11-19T16:53:54Z 2009-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>&lt;input dojoType="ComboBox" type="text" dataUrl="/some_data.json" /&gt; </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>&lt;input class="dojo-ComboBox" type="text" dataUrl="/some_data.json" /&gt; </code></pre> <p>That solves part, but not all of the problem. The "correct" solution would look something like this:</p> <pre><code>&lt;input dojo:type="ComboBox" type="text" dojo:dataUrl="/some_data.json" /&gt; </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#303258 1 Answer by Ola Tuvesson for Where can I find the Dojo XMLNS DTD? Ola Tuvesson 2008-11-19T20:32:03Z 2008-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>