Changeset 477
- Timestamp:
- 12/18/05 08:51:53 (3 years ago)
- Files:
-
- mochikit/trunk/MochiKit/DOM.js (modified) (1 diff)
- mochikit/trunk/doc/html/MochiKit/VersionHistory.html (modified) (2 diffs)
- mochikit/trunk/doc/html/MochiKit/index.html (modified) (5 diffs)
- mochikit/trunk/doc/rst/MochiKit/VersionHistory.rst (modified) (1 diff)
- mochikit/trunk/packed/MochiKit/MochiKit.js (modified) (1 diff)
- mochikit/trunk/scripts/make_docs.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
mochikit/trunk/MochiKit/DOM.js
r472 r477 913 913 var __tmpElement = this._document.createElement("span"); 914 914 var attributeArray; 915 if (__tmpElement.attributes.length > 0) { 915 if (__tmpElement && __tmpElement.attributes && 916 __tmpElement.attributes.length > 0) { 916 917 // for braindead browsers (IE) that insert extra junk 917 918 var filter = m.filter; mochikit/trunk/doc/html/MochiKit/VersionHistory.html
r475 r477 12 12 <p>XXXX-XX-XX v1.2 "the ocho"</p> 13 13 <ul class="simple"> 14 <li>MochiKit.DOM's initialization is now compatible with 15 HTMLUnit + JWebUnit + Rhino</li> 14 16 <li>MochiKit.LoggingPane will now re-use a <tt class="docutils literal"><span class="pre">_MochiKit_LoggingPane</span></tt> DIV element 15 17 currently in the document instead of always creating one.</li> … … 40 42 <li>Added iterator factory adapter for objects that implement iterateNext()</li> 41 43 <li>Fixed isoTimestamp to handle timestamps with time zone correctly</li> 42 <li>Added new MochiKit.DOM createDOMFunc aliases: SELECT, OPTION, OPTGROUP, 44 <li>Added new MochiKit.DOM createDOMFunc aliases: SELECT, OPTION, OPTGROUP, 43 45 LEGEND, FIELDSET</li> 44 46 <li>New MochiKit.DOM formContents and enhancement to queryString to support it</li> mochikit/trunk/doc/html/MochiKit/index.html
r475 r477 10 10 <body> 11 11 <div class="document"> 12 <div class="section" id="distribution">13 <h1><a name="distribution">Distribution</a></h1>12 <div class="section"> 13 <h1><a id="distribution" name="distribution">Distribution</a></h1> 14 14 <p>MochiKit - makes JavaScript suck a bit less</p> 15 15 <ul class="simple"> … … 28 28 </ul> 29 29 </div> 30 <div class="section" id="screencasts">31 <h1><a name="screencasts">Screencasts</a></h1>30 <div class="section"> 31 <h1><a id="screencasts" name="screencasts">Screencasts</a></h1> 32 32 <ul class="simple"> 33 33 <li><a class="reference" href="http://mochikit.com/screencasts/MochiKit_Intro-1">MochiKit 1.1 Intro</a></li> 34 34 </ul> 35 35 </div> 36 <div class="section" id="see-also">37 <h1><a name="see-also">See Also</a></h1>36 <div class="section"> 37 <h1><a id="see-also" name="see-also">See Also</a></h1> 38 38 <ul class="simple"> 39 39 <li><a class="reference" href="http://groups.google.com/group/mochikit">Google Groups: MochiKit</a>: The official mailing list for discussions … … 46 46 </ul> 47 47 </div> 48 <div class="section" id="version-history">49 <h1><a name="version-history">Version History</a></h1>48 <div class="section"> 49 <h1><a id="version-history" name="version-history">Version History</a></h1> 50 50 <p>XXXX-XX-XX v1.2 "the ocho"</p> 51 51 <ul class="simple"> 52 <li>MochiKit.DOM's initialization is now compatible with 53 HTMLUnit + JWebUnit + Rhino</li> 52 54 <li>MochiKit.LoggingPane will now re-use a <tt class="docutils literal"><span class="pre">_MochiKit_LoggingPane</span></tt> DIV element 53 55 currently in the document instead of always creating one.</li> … … 78 80 <li>Added iterator factory adapter for objects that implement iterateNext()</li> 79 81 <li>Fixed isoTimestamp to handle timestamps with time zone correctly</li> 80 <li>Added new MochiKit.DOM createDOMFunc aliases: SELECT, OPTION, OPTGROUP, 82 <li>Added new MochiKit.DOM createDOMFunc aliases: SELECT, OPTION, OPTGROUP, 81 83 LEGEND, FIELDSET</li> 82 84 <li>New MochiKit.DOM formContents and enhancement to queryString to support it</li> … … 233 235 </ul> 234 236 </div> 235 <div class="section" id="copyright">236 <h1><a name="copyright">Copyright</a></h1>237 <div class="section"> 238 <h1><a id="copyright" name="copyright">Copyright</a></h1> 237 239 <p>Copyright 2005 Bob Ippolito <<a class="reference" href="mailto:bob@redivi.com">bob@redivi.com</a>>. This program is dual-licensed 238 240 free software; you can redistribute it and/or modify it under the terms of the mochikit/trunk/doc/rst/MochiKit/VersionHistory.rst
r475 r477 1 1 XXXX-XX-XX v1.2 "the ocho" 2 2 3 - MochiKit.DOM's initialization is now compatible with 4 HTMLUnit + JWebUnit + Rhino 3 5 - MochiKit.LoggingPane will now re-use a ``_MochiKit_LoggingPane`` DIV element 4 6 currently in the document instead of always creating one. mochikit/trunk/packed/MochiKit/MochiKit.js
r475 r477 2906 2906 var _385=this._document.createElement("span"); 2907 2907 var _386; 2908 if(_385 .attributes.length>0){2908 if(_385&&_385.attributes&&_385.attributes.length>0){ 2909 2909 var _387=m.filter; 2910 2910 _386=function(node){ mochikit/trunk/scripts/make_docs.py
r433 r477 2 2 import os 3 3 import sys 4 from pkg_resources import require 5 require("docutils>0.3.9") 4 6 from docutils import nodes, utils 5 7 from docutils.core import publish_file
