Return-Path: Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: (qmail 80230 invoked from network); 9 Mar 2009 21:13:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Mar 2009 21:13:12 -0000 Received: (qmail 54751 invoked by uid 500); 9 Mar 2009 21:13:11 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 54724 invoked by uid 500); 9 Mar 2009 21:13:11 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 54715 invoked by uid 500); 9 Mar 2009 21:13:11 -0000 Delivered-To: apmail-incubator-couchdb-commits@incubator.apache.org Received: (qmail 54712 invoked by uid 99); 9 Mar 2009 21:13:11 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Mar 2009 14:13:11 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [192.87.106.226] (HELO aurora.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Mar 2009 21:13:09 +0000 Received: from aurora.apache.org (localhost [127.0.0.1]) by aurora.apache.org (8.13.8+Sun/8.13.8) with ESMTP id n29LCnnh000469 for ; Mon, 9 Mar 2009 21:12:49 GMT Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: couchdb-commits@incubator.apache.org Date: Mon, 09 Mar 2009 21:12:49 -0000 Message-ID: <20090309211249.414.2900@aurora.apache.org> Subject: [Couchdb Wiki] Update of "API Cheatsheet" by WoutMertens X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification. The following page has been changed by WoutMertens: http://wiki.apache.org/couchdb/API_Cheatsheet The comment on the change is: added info about / and new SVN change ------------------------------------------------------------------------------ POST /_replicate = CouchDB Database Level Requests = + + '''Note''': Document names must always have embedded '''/''' translated to '''%2F'''. E.g. "GET /'''db'''/foo%2fbar" for the document named "foo/bar". Attachment names may have embedded slashes. == compact == @@ -62, +64 @@ == view == - GET /'''db'''/_view/'''name''' + If you are using CouchDB < 0.9.0: + GET /'''db'''/_view/'''designname'''/'''viewname''' + + Otherwise + + GET /'''db'''/_design/'''designname'''/_view/'''viewname''' +