You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ro...@apache.org on 2015/02/03 16:13:25 UTC

[18/50] [abbrv] couchdb-mango git commit: Cloudant -> Apache CouchDB in README.md

Cloudant -> Apache CouchDB in README.md

Project: http://git-wip-us.apache.org/repos/asf/couchdb-mango/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-mango/commit/e9ced733
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-mango/tree/e9ced733
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-mango/diff/e9ced733

Branch: refs/heads/master
Commit: e9ced7331ae4c1b07f86aae8c7135e364c2af2bd
Parents: 18c6718
Author: Joan Touzet <wo...@users.noreply.github.com>
Authored: Mon Nov 17 09:50:56 2014 +0100
Committer: Joan Touzet <wo...@users.noreply.github.com>
Committed: Mon Nov 17 09:50:56 2014 +0100

----------------------------------------------------------------------
 README.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/e9ced733/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 9f7605a..d7dadf8 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,13 @@
 Mango
 =====
 
-A MongoDB inspired query language interface for Cloudant.
+A MongoDB inspired query language interface for Apache CouchDB.
 
 
 Motivation
 ----------
 
-Mango provides a single HTTP API endpoint that accepts JSON bodies via HTTP POST. These bodies provide a set of instructions that will be handled with the results being returned to the client in the same order as they were specified. The general principle of this API is to be simple to implement on the client side while providing users a more natural conversion to Cloudant/Apache CouchDB than would otherwise exist using the standard RESTful HTTP interface that already exists.
+Mango provides a single HTTP API endpoint that accepts JSON bodies via HTTP POST. These bodies provide a set of instructions that will be handled with the results being returned to the client in the same order as they were specified. The general principle of this API is to be simple to implement on the client side while providing users a more natural conversion to Apache CouchDB than would otherwise exist using the standard RESTful HTTP interface that already exists.
 
 
 Actions
@@ -20,10 +20,10 @@ have a string value indicating the action to be performed. For each action there
 
 For convenience, the HTTP API will accept a JSON body that is either a single JSON object which specifies a single action or a JSON array that specifies a list of actions that will then be invoked serially. While multiple commands can be batched into a single HTTP request, there are no guarantees about atomicity or isolation for a batch of commands.
 
-Activating Mango/Cloudant Query on a cluster
+Activating Query on a cluster
 --------------------------------------------
 
-Cloudant Query can be enabled by setting the following config:
+Query can be enabled by setting the following config:
 
 ```
 rpc:multicall(config, set, ["native_query_servers", "query", "{mango_native_proc, start_link, []}"]).
@@ -32,7 +32,7 @@ rpc:multicall(config, set, ["native_query_servers", "query", "{mango_native_proc
 HTTP API
 ========
 
-This API adds a single URI endpoint to the existing Cloudant HTTP API. Creating databases, authentication, Map/Reduce views, etc are all still supported exactly as currently document. No existing behavior is changed.
+This API adds a single URI endpoint to the existing CouchDB HTTP API. Creating databases, authentication, Map/Reduce views, etc are all still supported exactly as currently document. No existing behavior is changed.
 
 The endpoint added is for the URL pattern `/dbname/_query` and has the following characteristics: