Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B6D23E375 for ; Tue, 29 Jan 2013 16:19:02 +0000 (UTC) Received: (qmail 10054 invoked by uid 500); 29 Jan 2013 16:19:02 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 9948 invoked by uid 500); 29 Jan 2013 16:19:02 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 9935 invoked by uid 99); 29 Jan 2013 16:19:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Jan 2013 16:19:01 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.131] (HELO eos.apache.org) (140.211.11.131) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Jan 2013 16:19:00 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id DC48642A for ; Tue, 29 Jan 2013 16:18:40 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Apache subversion Wiki To: Apache subversion Wiki Date: Tue, 29 Jan 2013 16:18:40 -0000 Message-ID: <20130129161840.58086.52115@eos.apache.org> Subject: =?utf-8?q?=5BSubversion_Wiki=5D_Update_of_=22LocalMoves=22_by_BenReser?= Auto-Submitted: auto-generated X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Subversion Wiki" fo= r change notification. The "LocalMoves" page has been changed by BenReser: http://wiki.apache.org/subversion/LocalMoves?action=3Ddiff&rev1=3D30&rev2= =3D31 Comment: Add some move ops I missed and clarify the description of the Lateral move. = These moves can happen against any type of node. = - * Lateral (Rename) move. Node stays at the same level but changes name. + * Lateral (Rename) move. Node continues to have the same parent but ch= anges name. + * Sibling move. Node moves into a sibling of the current parent. * Shallower move. Node moves shallower (closer to the root) in the tre= e. * Deeper move. Node moves deeper (away from the root) in the tree. = @@ -129, +130 @@ * Replaced. Move a node and replace it with another node (of the same = or a different type). * Remove parent. Children of a directory are moved shallower. Directo= ry is then removed. * Add parent. A new directory is made (or copied) and then nodes are m= oved into it. + * No-op move. A move is made and then undone by the reverse move. = Nodes in the above move scenarios should include the following node types= : file, dir and symlink. While symlink is actually a file with some specia= l handling, we should ensure there are no conflicts between the move tracki= ng and the special handling of symlinks. Externals need not be tested for = moves because they cannot be moved with the move command and will not be tr= acked as such. =20