diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
commit | 1c5685d68f1b73270fb814fe04cbb490eb90ba5f (patch) | |
tree | 3d3ada08a934b96fc31531f1327690d7edc6f766 /includes/js/dojo/data/api/Request.js | |
parent | 104d59099e048688c4dbac37d72137006e396558 (diff) | |
download | semanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.gz semanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.bz2 |
Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dojo/data/api/Request.js')
-rw-r--r-- | includes/js/dojo/data/api/Request.js | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/includes/js/dojo/data/api/Request.js b/includes/js/dojo/data/api/Request.js deleted file mode 100644 index 803bad8..0000000 --- a/includes/js/dojo/data/api/Request.js +++ /dev/null @@ -1,32 +0,0 @@ -if(!dojo._hasResource["dojo.data.api.Request"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojo.data.api.Request"] = true; -dojo.provide("dojo.data.api.Request"); - -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'); - } -}); - -} |