You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by kx...@apache.org on 2013/11/25 05:15:17 UTC

git commit: updated refs/heads/master to d2a17f6

Updated Branches:
  refs/heads/master fb92263e8 -> d2a17f630


Docs: fix CouchDB.info file generation

It was broken due to long lines with { } chars in HTTP API index
which was wrapped to fit 80 chars per line limit. Since { } chars
have some special meaning for texinfo, they should be escaped with
@ char, but due to wrapping this escaping becomes broken which leads to
to syntax error.


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

Branch: refs/heads/master
Commit: d2a17f6307d03adbb398d85c97c856f7c5e82280
Parents: fb92263
Author: Alexander Shorin <kx...@apache.org>
Authored: Mon Nov 25 08:14:42 2013 +0400
Committer: Alexander Shorin <kx...@apache.org>
Committed: Mon Nov 25 08:14:42 2013 +0400

----------------------------------------------------------------------
 share/doc/src/api/ddoc/render.rst | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/d2a17f63/share/doc/src/api/ddoc/render.rst
----------------------------------------------------------------------
diff --git a/share/doc/src/api/ddoc/render.rst b/share/doc/src/api/ddoc/render.rst
index 5f99dec..887cda9 100644
--- a/share/doc/src/api/ddoc/render.rst
+++ b/share/doc/src/api/ddoc/render.rst
@@ -20,7 +20,7 @@
   :synopsis: Executes a show function against null document
 
 .. http:post:: /{db}/_design/{ddoc}/_show/{func}
-  :synopsis: Same as GET /{db}/_design/{ddoc}/_show/{func}
+  :synopsis: Same as GET method for the related endpoint
 
   Applies :ref:`show function <showfun>` for `null` document.
 
@@ -79,7 +79,7 @@
 .. http:get:: /{db}/_design/{ddoc}/_show/{func}/{docid}
   :synopsis: Executes a show function against the specified document
 .. http:post:: /{db}/_design/{ddoc}/_show/{func}/{docid}
-  :synopsis: Same as GET /{db}/_design/{ddoc}/_show/{func}/{docid}
+  :synopsis: Same as GET method for the related endpoint
 
   Applies :ref:`show function <showfun>` for the specified document.
 
@@ -139,7 +139,7 @@
 .. http:get:: /{db}/_design/{ddoc}/_list/{func}/{view}
   :synopsis: Executes a list function against the view from the same design document
 .. http:post:: /{db}/_design/{ddoc}/_list/{func}/{view}
-  :synopsis: Same as GET /{db}/_design/{ddoc}/_list/{func}/{view}
+  :synopsis: Same as GET method for the related endpoint
 
   Applies :ref:`list function <listfun>` for the :ref:`view function <viewfun>`
   from the same design document.
@@ -203,7 +203,7 @@
 .. http:get:: /{db}/_design/{ddoc}/_list/{func}/{other-ddoc}/{view}
   :synopsis: Executes a list function against the view from other design document
 .. http:post:: /{db}/_design/{ddoc}/_list/{func}/{other-ddoc}/{view}
-  :synopsis: Same as GET /{db}/_design/{ddoc}/_list/{func}/{other-ddoc}/{view}
+  :synopsis: Same as GET method for the related endpoint
 
   Applies :ref:`list function <listfun>` for the :ref:`view function <viewfun>`
   from the other design document.