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.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/share/www/script/couch.js b/share/www/script/couch.js
index 9815882a..f1544893 100644
--- a/share/www/script/couch.js
+++ b/share/www/script/couch.js
@@ -87,6 +87,9 @@ function CouchDB(name) {
var result = JSON.parse(req.responseText);
if (req.status != 201)
throw result;
+ for(i in docs) {
+ docs[i]._rev = result.new_revs[i].rev;
+ }
return result;
}
@@ -130,6 +133,14 @@ function CouchDB(name) {
throw result;
return result;
}
+
+ this.compact = function() {
+ var req = request("POST", this.uri + "_compact");
+ var result = JSON.parse(req.responseText);
+ if (req.status != 202)
+ throw result;
+ return result;
+ }
// Convert a options object to an url query string.
// ex: {key:'value',key2:'value2'} becomes '?key="value"&key2="value2"'