From commits-return-1615-apmail-couchdb-commits-archive=couchdb.apache.org@couchdb.apache.org Mon Jan 05 11:35:47 2009 Return-Path: Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: (qmail 6363 invoked from network); 5 Jan 2009 11:35:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Jan 2009 11:35:47 -0000 Received: (qmail 27492 invoked by uid 500); 5 Jan 2009 11:35:47 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 27448 invoked by uid 500); 5 Jan 2009 11:35:46 -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 27439 invoked by uid 500); 5 Jan 2009 11:35:45 -0000 Delivered-To: apmail-incubator-couchdb-commits@incubator.apache.org Received: (qmail 27436 invoked by uid 99); 5 Jan 2009 11:35:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Jan 2009 03:35:45 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Jan 2009 11:35:44 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 93A1411182 for ; Mon, 5 Jan 2009 11:35:24 +0000 (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, 05 Jan 2009 11:35:24 -0000 Message-ID: <20090105113524.25098.29093@eos.apache.org> Subject: [Couchdb Wiki] Trivial Update of "HTTP Document API" by JasonDavies 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 JasonDavies: http://wiki.apache.org/couchdb/HTTP_Document_API ------------------------------------------------------------------------------ You can copy documents by sending an HTTP COPY request. This allows you to duplicate the contents (and attachments) of a document to a new document under a different document id without first retrieving it from CouchDB. Use the ''Destination'' header to specify the document that you want to copy to (the target document). - It is not possible to copy documents between databases and it is not (yet) possible to make bulk copy operations. + It is not possible to copy documents between databases and it is not (yet) possible to perform bulk copy operations. {{{ COPY /somedatabase/some_doc HTTP/1.1 @@ -441, +441 @@ Since MOVE is a COPY & DELETE under the hood, you need to provide the revision id of the document you want to move. - It is not possible to move documents between databases and it is not (yet) possible to make bulk move operations. + It is not possible to move documents between databases and it is not (yet) possible to perform bulk move operations. {{{ MOVE /somedatabase/some_doc?rev=some_id HTTP/1.1