From 0181c0110985cfd2659e81c8cc1ef5a2f73bc697 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 14 Aug 2012 19:04:32 +0400 Subject: dojo: remove uncompressed files --- lib/dojo/data/api/Request.js.uncompressed.js | 36 ---------------------------- 1 file changed, 36 deletions(-) delete mode 100644 lib/dojo/data/api/Request.js.uncompressed.js (limited to 'lib/dojo/data/api/Request.js.uncompressed.js') diff --git a/lib/dojo/data/api/Request.js.uncompressed.js b/lib/dojo/data/api/Request.js.uncompressed.js deleted file mode 100644 index 7ee5123bc..000000000 --- a/lib/dojo/data/api/Request.js.uncompressed.js +++ /dev/null @@ -1,36 +0,0 @@ -define("dojo/data/api/Request", ["../.."], function(dojo) { - // module: - // dojo/data/api/Request - // summary: - // TODOC - - -dojo.declare("dojo.data.api.Request", null, { - // summary: - // This class defines out the semantics of what a 'Request' object looks like - // when returned from a fetch() method. In general, a request object is - // nothing more than the original keywordArgs from fetch with an abort function - // attached to it to allow users to abort a particular request if they so choose. - // No other functions are required on a general Request object return. That does not - // inhibit other store implementations from adding extentions to it, of course. - // - // This is an abstract API that data provider implementations conform to. - // This file defines methods signatures and intentionally leaves all the - // methods unimplemented. - // - // For more details on fetch, see dojo.data.api.Read.fetch(). - - abort: function(){ - // summary: - // This function is a hook point for stores to provide as a way for - // a fetch to be halted mid-processing. - // description: - // This function is a hook point for stores to provide as a way for - // a fetch to be halted mid-processing. For more details on the fetch() api, - // please see dojo.data.api.Read.fetch(). - throw new Error('Unimplemented API: dojo.data.api.Request.abort'); - } -}); - -return dojo.data.api.Request; -}); -- cgit v1.2.3