Changeset 7720 for branches/api-spec/alex/refactor.txt
- Timestamp:
- 03/20/07 17:10:07 (22 months ago)
- Files:
-
- 1 modified
-
branches/api-spec/alex/refactor.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/api-spec/alex/refactor.txt
r7701 r7720 206 206 xip_server.html 207 207 208 And users will include common-case functionality with: 209 210 dojo.require("dojo.io"); 208 And users will receive common-case functionality in the base Dojo 209 package. 211 210 212 211 While io.js may indeed continue in the tradition of __package__.js and … … 270 269 dojo.io.bind() --> 271 270 272 // dojo/io.js273 dojo. io.get() // xhrGet ?274 dojo. io.post() // xhrPost ?275 dojo. io.rawPost() // xhrRawPost ?271 // _base/io.js 272 dojo.xhrGet() 273 dojo.xhrPost() 274 dojo.xhrRwPost() 276 275 277 276 // dojo/io/iframe.js … … 321 320 dojo.io.encodeForm --> 322 321 323 dojo. io.formToQuery()322 dojo.formToQuery() 324 323 325 324 dojo.io.argsFromMap() --> 326 325 327 dojo. io.mapToQuery()326 dojo.mapToQuery() 328 327 329 328 dojo.io.FormBind --> 330 329 331 dojo. io.wrapForm(formNode)330 dojo.wrapForm(formNode) 332 331 333 332 wrapForm will need to be moved into its own file. … … 335 334 dojo.io.cookie.* --> 336 335 337 dojo.cookie .*336 dojo.cookie() 338 337 339 338 the getCookie() and setCookie() methods will be removed. A one and two … … 351 350 352 351 // new I/O functions: 353 dojo. io.formToObject(formNode)354 dojo. io.formToJson(formNode)355 dojo. io.queryToObject(str)352 dojo.formToObject(formNode) 353 dojo.formToJson(formNode) 354 dojo.queryToObject(str) 356 355 357 356