Return-Path: X-Original-To: apmail-subversion-users-archive@minotaur.apache.org Delivered-To: apmail-subversion-users-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6DDD37DCF for ; Mon, 24 Oct 2011 21:44:21 +0000 (UTC) Received: (qmail 20253 invoked by uid 500); 24 Oct 2011 21:44:20 -0000 Delivered-To: apmail-subversion-users-archive@subversion.apache.org Received: (qmail 20232 invoked by uid 500); 24 Oct 2011 21:44:20 -0000 Mailing-List: contact users-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@subversion.apache.org Received: (qmail 20225 invoked by uid 99); 24 Oct 2011 21:44:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Oct 2011 21:44:20 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of weberjacob@gmail.com designates 209.85.161.171 as permitted sender) Received: from [209.85.161.171] (HELO mail-gx0-f171.google.com) (209.85.161.171) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Oct 2011 21:44:11 +0000 Received: by ggnv5 with SMTP id v5so8746927ggn.16 for ; Mon, 24 Oct 2011 14:43:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:subject:mime-version:content-type:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to:x-mailer; bh=FB4VcQlZ+Kkd5CwV/9ItUWhMPoSKSzgxlpnRxTZhy4o=; b=pbjzmmqrvZDLHLoneYx62aGdAZc/96V5v3HoOJ0Ups4Q40A07ANMjYmKGx5Iwrvrzr c+bXuEl/5m/lspaXU4TyAAyGdNw3jeekJgnKBRbxrYkB9dl4il+ORHRle5BkcfpFOzbS Y06URCrGPi/FwygTv++VCPfYMhNyoAb1UN0+w= Received: by 10.68.74.4 with SMTP id p4mr50656392pbv.47.1319492630454; Mon, 24 Oct 2011 14:43:50 -0700 (PDT) Received: from [192.168.1.100] (c-69-181-194-13.hsd1.ca.comcast.net. [69.181.194.13]) by mx.google.com with ESMTPS id 3sm1483230pbx.14.2011.10.24.14.43.49 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 24 Oct 2011 14:43:49 -0700 (PDT) Sender: Jacob Weber Subject: Re: Diff output: get full path of files Mime-Version: 1.0 (Apple Message framework v1251.1) Content-Type: text/plain; charset=us-ascii From: Jacob Weber In-Reply-To: <558A3464-E15D-40E5-BF0F-B346851C8640@jacobweber.com> Date: Mon, 24 Oct 2011 14:43:48 -0700 Cc: users@subversion.apache.org Content-Transfer-Encoding: quoted-printable Message-Id: <92CC6D5C-A0E5-4DFF-9E13-1CB0C4472B13@jacobweber.com> References: <87pqhmumb0.fsf@stat.home.lan> <558A3464-E15D-40E5-BF0F-B346851C8640@jacobweber.com> To: Philip Martin X-Mailer: Apple Mail (2.1251.1) X-Virus-Checked: Checked by ClamAV on apache.org On Oct 24, 2011, at 2:41 PM, Jacob Weber wrote: > For example, if I give it two URLs: > svn diff https://repos/proj1/dir1/dir2https://repos/proj2/dir1/dir2 >=20 > I get something like this, with the repository-relative paths in = parentheses, prefixed by "...": > Index: file1 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- file1 (.../proj1/dir1/dir2) (revision 103644) > +++ file1 (.../proj2/dir1/dir2) (revision 103644) Sorry, have to correct myself. I don't always get the = repository-relative paths in that case. If the leading paths of the two = URLs are the same, it omits those: svn diff https://repos/proj1/dir1/dir2https://repos/proj1/dir1/dir3 Index: file1 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- file1 (.../dir1/dir2) (revision 103644) +++ file1 (.../dir1/dir3) (revision 103644) Jacob=