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/dojox/rpc/tests/resources/test.smd | |
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/dojox/rpc/tests/resources/test.smd')
-rw-r--r-- | includes/js/dojox/rpc/tests/resources/test.smd | 189 |
1 files changed, 0 insertions, 189 deletions
diff --git a/includes/js/dojox/rpc/tests/resources/test.smd b/includes/js/dojox/rpc/tests/resources/test.smd deleted file mode 100644 index 6ad56be..0000000 --- a/includes/js/dojox/rpc/tests/resources/test.smd +++ /dev/null @@ -1,189 +0,0 @@ -{ - transport: "POST", - envelope: "URL", - strictParameters: false, - parameters: { - appId: {}, - outputType: { - default: "json" - }, - - ignoreErrors: { - optional: true - } - }, - - services: { - postEcho: { - target: "echo.php", - parameters: [ - {name: "message", type: "string", optional: true} - ] - }, - - getEcho: { - transport: "GET", - target: "echo.php", - - parameters: [ - {name: "message", type: "string", optional: true} - ] - }, - getEchoJson: { - transport: "GET", - target: "echoJson.php", - contentType:"application/json", - parameters: [ - {name: "message", type: "string", optional: true} - ] - }, - getPathEcho: { - transport: "GET", - envelope: "PATH", - target: "echo.php?message=", - - parameters: [ - {name: "message", type: "string", optional: true} - ] - }, - restStore: { - transport: "REST", - contentType:"text/plain", - target: "fakestore.php", - parameters: [ - {name: "location", type: "string", optional: true} - ] - }, - jsonRestStore: { - transport: "REST", - target: "fakestore.php", - contentType:"application/json", - parameters: [ - {name: "location", type: "string", optional: true} - ] - }, - - - - postJsonEcho: { - transport: "POST", - envelope: "JSON", - target: "rawEcho.php", - - parameters: [ - {name: "message", type: "string", optional: true} - ] - }, - - jsonpEcho: { - transport: "JSONP", - target: "jsonpEcho.php", - callbackParamName: "testCallbackParam", - - parameters: [ - {name: "message", type: "string", optional: true} - ] - }, - - postJsonRpc10Echo: { - transport: "POST", - envelope: "JSON-RPC-1.0", - target: "jsonRpc10.php", - - parameters: [ - {type: "string", optional: true} - ] - }, - - postJsonRpc10EchoNamed: { - transport: "POST", - envelope: "JSON-RPC-1.0", - target: "jsonRpc10.php", - - parameters: [ - {type: "string", optional: true} - ] - }, - - jsonpJsonRpc12Echo: { - transport: "JSONP", - envelope: "JSON-RPC-2.0", - target: "jsonpJsonRpcEcho.php", - - parameters: [ - {type: "string", optional: true} - ] - }, - - jsonpJsonRpc12EchoNamed: { - transport: "JSONP", - envelope: "JSON-RPC-2.0", - target: "jsonpJsonRpcEcho.php", - - parameters: [ - {name: "message", type: "string", optional: true} - ] - }, - - postJsonRpc10ForcedError: { - envelope: "JSON-RPC-1.0", - transport: "POST", - target: "jsonRpc10.php", - - parameters: [ - {type: "string", optional: true} - ] - }, - - postJsonRpc12Echo: { - transport: "POST", - envelope: "JSON-RPC-2.0", - target: "jsonRpc12.php", - - parameters: [ - {name: "message", type: "string", optional: true} - ] - }, - - getJsonRpc12Echo: { - transport: "GET", - envelope: "JSON-RPC-2.0", - target: "jsonRpcPostGetEcho.php", - - parameters: [ - {type: "string", optional: true} - ] - }, - - postJsonRpc12EchoNamed: { - transport: "POST", - envelope: "JSON-RPC-2.0", - target: "jsonRpcPostGetEcho.php", - - parameters: [ - {type: "string", optional: true} - ] - }, - - getJsonRpc12EchoNamed: { - transport: "GET", - envelope: "JSON-RPC-2.0", - target: "jsonRpcPostGetEcho.php", - - parameters: [ - {type: "string", optional: true} - ] - }, - - - postJsonRpc12ForcedError: { - envelope: "JSON-RPC-2.0", - transport: "POST", - target: "jsonRpc12.php", - - parameters: [ - {type: "string", optional: true} - ] - } - } -} |