summaryrefslogtreecommitdiff
path: root/lib/dojo/request.js.uncompressed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-18 10:26:24 +0400
committerAndrew Dolgov <[email protected]>2013-03-18 10:26:26 +0400
commitf0cfe83e3725f9a3928da97a6e3085e79cb25309 (patch)
tree4b0af188defaa807c7bc6ff3a101b41c9166c463 /lib/dojo/request.js.uncompressed.js
parent9a2885da170ffd64358b99194095851a2d09c1b6 (diff)
upgrade dojo to 1.8.3 (refs #570)
Diffstat (limited to 'lib/dojo/request.js.uncompressed.js')
-rw-r--r--lib/dojo/request.js.uncompressed.js81
1 files changed, 81 insertions, 0 deletions
diff --git a/lib/dojo/request.js.uncompressed.js b/lib/dojo/request.js.uncompressed.js
new file mode 100644
index 000000000..75e42bd6c
--- /dev/null
+++ b/lib/dojo/request.js.uncompressed.js
@@ -0,0 +1,81 @@
+define("dojo/request", [
+ './request/default!'/*=====,
+ './_base/declare',
+ './promise/Promise' =====*/
+], function(request/*=====, declare, Promise =====*/){
+ /*=====
+ request = function(url, options){
+ // summary:
+ // Send a request using the default transport for the current platform.
+ // url: String
+ // The URL to request.
+ // options: dojo/request.__Options?
+ // Options for the request.
+ // returns: dojo/request.__Promise
+ };
+ request.__Promise = declare(Promise, {
+ // response: dojo/promise/Promise
+ // A promise resolving to an object representing
+ // the response from the server.
+ });
+ request.__BaseOptions = declare(null, {
+ // query: String|Object?
+ // Query parameters to append to the URL.
+ // data: String|Object?
+ // Data to transfer. This is ignored for GET and DELETE
+ // requests.
+ // preventCache: Boolean?
+ // Whether to append a cache-busting parameter to the URL.
+ // timeout: Integer?
+ // Milliseconds to wait for the response. If this time
+ // passes, the then the promise is rejected.
+ // handleAs: String?
+ // How to handle the response from the server. Default is
+ // 'text'. Other values are 'json', 'javascript', and 'xml'.
+ });
+ request.__MethodOptions = declare(null, {
+ // method: String?
+ // The HTTP method to use to make the request. Must be
+ // uppercase.
+ });
+ request.__Options = declare([request.__BaseOptions, request.__MethodOptions]);
+
+ request.get = function(url, options){
+ // summary:
+ // Send an HTTP GET request using the default transport for the current platform.
+ // url: String
+ // URL to request
+ // options: dojo/request.__BaseOptions?
+ // Options for the request.
+ // returns: dojo/request.__Promise
+ };
+ request.post = function(url, options){
+ // summary:
+ // Send an HTTP POST request using the default transport for the current platform.
+ // url: String
+ // URL to request
+ // options: dojo/request.__BaseOptions?
+ // Options for the request.
+ // returns: dojo/request.__Promise
+ };
+ request.put = function(url, options){
+ // summary:
+ // Send an HTTP POST request using the default transport for the current platform.
+ // url: String
+ // URL to request
+ // options: dojo/request.__BaseOptions?
+ // Options for the request.
+ // returns: dojo/request.__Promise
+ };
+ request.del = function(url, options){
+ // summary:
+ // Send an HTTP DELETE request using the default transport for the current platform.
+ // url: String
+ // URL to request
+ // options: dojo/request.__BaseOptions?
+ // Options for the request.
+ // returns: dojo/request.__Promise
+ };
+ =====*/
+ return request;
+});