summaryrefslogtreecommitdiff
path: root/share/www/script/couch.js
diff options
context:
space:
mode:
authorChristopher Lenz <cmlenz@apache.org>2009-01-26 21:22:18 +0000
committerChristopher Lenz <cmlenz@apache.org>2009-01-26 21:22:18 +0000
commitcbd43c6bbc72360bd15cfeca87ef6ac85493988b (patch)
tree35bff1fa20a779df6842e6200f480264beebc0ae /share/www/script/couch.js
parent36e519fc8d2a406071173d4eda8bf0a64ce2968d (diff)
Change _slow_view back to _temp_view, as discussed on the mailing list (see http://markmail.org/message/o44cafucgwlpudov).
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@737859 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www/script/couch.js')
-rw-r--r--share/www/script/couch.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/www/script/couch.js b/share/www/script/couch.js
index e1806d6f..0a2698ab 100644
--- a/share/www/script/couch.js
+++ b/share/www/script/couch.js
@@ -129,7 +129,7 @@ function CouchDB(name, httpHeaders) {
reduceFun = reduceFun.toSource ? reduceFun.toSource() : "(" + reduceFun.toString() + ")";
body.reduce = reduceFun;
}
- this.last_req = this.request("POST", this.uri + "_slow_view" + encodeOptions(options), {
+ this.last_req = this.request("POST", this.uri + "_temp_view" + encodeOptions(options), {
headers: {"Content-Type": "application/json"},
body: JSON.stringify(body)
});