From c2d8ffd2069ac35beb0ecf0938f277bffeb0f193 Mon Sep 17 00:00:00 2001 From: Jason David Davies Date: Thu, 1 Oct 2009 10:56:15 +0000 Subject: Add support for COPY (copyDoc) to jquery.couch.js. git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@820603 13f79535-47bb-0310-9956-ffa450edef68 --- share/www/script/jquery.couch.js | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) (limited to 'share') diff --git a/share/www/script/jquery.couch.js b/share/www/script/jquery.couch.js index 8c5848bc..ab1a7a00 100644 --- a/share/www/script/jquery.couch.js +++ b/share/www/script/jquery.couch.js @@ -187,7 +187,7 @@ var uri = this.uri; } else { var method = "PUT"; - var uri = this.uri + encodeDocId(doc._id); + var uri = this.uri + encodeDocId(doc._id); } $.ajax({ type: method, url: uri + encodeOptions(options), @@ -228,6 +228,32 @@ "The document could not be deleted" ); }, + copyDoc: function(doc, options, ajaxOptions) { + ajaxOptions = $.extend(ajaxOptions, { + complete: function(req) { + var resp = $.httpData(req, "json"); + if (req.status == 201) { + doc._id = resp.id; + doc._rev = resp.rev; + if (options.success) options.success(resp); + } else if (options.error) { + options.error(req.status, resp.error, resp.reason); + } else { + alert("The document could not be copied: " + resp.reason); + } + } + }); + ajax({ + type: "COPY", + url: this.uri + + encodeDocId(doc._id) + + encodeOptions({rev: doc._rev}) + }, + options, + "The document could not be copied", + ajaxOptions + ); + }, query: function(mapFun, reduceFun, language, options) { language = language || "javascript"; if (typeof(mapFun) !== "string") { @@ -315,7 +341,7 @@ options = $.extend({successStatus: 200}, options); errorMessage = errorMessage || "Unknown error"; - $.ajax($.extend({ + $.ajax($.extend($.extend({ type: "GET", dataType: "json", complete: function(req) { var resp = $.httpData(req, "json"); @@ -327,7 +353,7 @@ alert(errorMessage + ": " + resp.reason); } } - }, obj), ajaxOptions); + }, obj), ajaxOptions)); } // Convert a options object to an url query string. -- cgit v1.2.3