Show
Ignore:
Timestamp:
03/20/07 17:10:07 (22 months ago)
Author:
alex
Message:

bring the expository text up to date with the base API outlines at the bottom of the document

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/api-spec/alex/refactor.txt

    r7701 r7720  
    206206                xip_server.html 
    207207 
    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. 
    211210 
    212211        While io.js may indeed continue in the tradition of __package__.js and 
     
    270269    dojo.io.bind() --> 
    271270 
    272         // dojo/io.js 
    273         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() 
    276275 
    277276        // dojo/io/iframe.js 
     
    321320    dojo.io.encodeForm --> 
    322321 
    323         dojo.io.formToQuery() 
     322        dojo.formToQuery() 
    324323 
    325324    dojo.io.argsFromMap() --> 
    326325 
    327         dojo.io.mapToQuery() 
     326        dojo.mapToQuery() 
    328327 
    329328    dojo.io.FormBind --> 
    330329 
    331         dojo.io.wrapForm(formNode) 
     330        dojo.wrapForm(formNode) 
    332331 
    333332        wrapForm will need to be moved into its own file. 
     
    335334    dojo.io.cookie.* -->  
    336335     
    337         dojo.cookie.* 
     336        dojo.cookie() 
    338337 
    339338        the getCookie() and setCookie() methods will be removed. A one and two 
     
    351350 
    352351    // 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) 
    356355 
    357356