summaryrefslogtreecommitdiff
path: root/share/www/script/couch.js
diff options
context:
space:
mode:
Diffstat (limited to 'share/www/script/couch.js')
-rw-r--r--share/www/script/couch.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/share/www/script/couch.js b/share/www/script/couch.js
index 861fd070..38c9cf34 100644
--- a/share/www/script/couch.js
+++ b/share/www/script/couch.js
@@ -80,6 +80,16 @@ function CouchDB(name) {
return result;
}
+ // Deletes an attachment from a document
+ this.deleteDocAttachment = function(doc, attachment_name) {
+ var req = request("DELETE", this.uri + encodeURIComponent(doc._id) + "/" + attachment_name + "?rev=" + doc._rev);
+ var result = JSON.parse(req.responseText);
+ if (req.status != 200)
+ throw result;
+ doc._rev = result.rev; //record rev in input document
+ return result;
+ }
+
this.bulkSave = function(docs, options) {
var req = request("POST", this.uri + "_bulk_docs" + encodeOptions(options), {
body: JSON.stringify({"docs": docs})