dojo.date.strftime is now dojox.date.posix.strftime
dojo.lang.has is now cosmo.util.lang.has
dojo.declare has replaced "initializer" with "constructor", don't pass a constructor in method signature(!!)
dojo.date.fromIso8601 is now dojo.date.stamp.fromISOString
er, more complicated than that...to be continued
dojo.date.dateParts is gone. Now they use raw strings.
my solution was to create cosmo.datetime.util.dateParts
if there's anyplace in the code where we were passing raw ints as the arguments instead of making a reference to the constant we are in trouble - look out for that.
can't pass an integer representing utc time to dojo.date.add - gotta be an actual date object
no more "dojo.dom" some of the methods are still around, but not the X platform xml parser (createDocumentFromText()), which we were using in a test. In this case, I just stuck that code in the test file, but AFAIK we are not using it anywhere else.
DOH
doh.Deferred is not dojo.Deferred, wrap dojo.Deferred with cosmotest.testutils.defcon() before returning from async test