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 EE1311094D for ; Wed, 28 Aug 2013 00:44:53 +0000 (UTC) Received: (qmail 89124 invoked by uid 500); 28 Aug 2013 00:44:53 -0000 Delivered-To: apmail-subversion-users-archive@subversion.apache.org Received: (qmail 89068 invoked by uid 500); 28 Aug 2013 00:44:53 -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 89061 invoked by uid 99); 28 Aug 2013 00:44:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Aug 2013 00:44:53 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of andy.levy@gmail.com designates 209.85.220.41 as permitted sender) Received: from [209.85.220.41] (HELO mail-pa0-f41.google.com) (209.85.220.41) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Aug 2013 00:44:47 +0000 Received: by mail-pa0-f41.google.com with SMTP id bj1so5524828pad.14 for ; Tue, 27 Aug 2013 17:44:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type; bh=O7SeogsKV78l2V5jciAxUUeoWX/jx3zxEozxyNa6c2I=; b=OjtSoWD2BrSsEqPyxmsqbzXbCp/03UrQ7q3BPbCVix3IHzbpyjPHSF1BlgiDArlfq2 JvmUaQqtfFH+R4Gj6+lObVWshdXboGJJ0xRS+TR1/D2tsSnzlVQyYG3VyzDxrJ9Hbcdb xd/UynTJhULm3OZTEXUlVHJhy2UcW5GGUOFZpchR5o7h4/3fILup2uXDwaRCUWniUxMI dLwAvWlJgG3i6+U/fHvn+LQHLmcTlkmi9qiKe9FcVP9YE5zwCAGEuauYLgl5K9dXHwKf bV1xlj96L2j10sIOqkFUyzSTowioYSlotdQju4AYkvlFJPl+Sc2v0gGicp9Fj7OETbHF HpTA== X-Received: by 10.66.176.193 with SMTP id ck1mr22981943pac.47.1377650666532; Tue, 27 Aug 2013 17:44:26 -0700 (PDT) MIME-Version: 1.0 Received: by 10.70.136.137 with HTTP; Tue, 27 Aug 2013 17:43:46 -0700 (PDT) From: Andy Levy Date: Tue, 27 Aug 2013 20:43:46 -0400 Message-ID: Subject: File URLs truncated on Windows with mapped and SUBST drives To: "users@subversion.apache.org" Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org This was originally reported on the TSVN Users list but I've reproduced it with the command line client. Original thread: http://svn.haxx.se/tsvnusers/archive-2013-08/0227.shtml Jason Dunaway is using a mapped network drive for his repository, but I reproduced the behavior with a drive letter created with SUBST. We're both using SVN 1.8.1. He's on XP (pretty sure), I'm on Windows 7 Pro 64-bit. Steps to reproduce: >svnadmin create r:\Appraisal >subst X:\ R:\Appraisal >svn co file:///X:/ r:/tmp6 Everything to this point is successful. >svn mkdir file:///X:/Appraisal -m "test" Committed revision 1. >md r:\tmp7 Directory: R:\ Mode LastWriteTime Length Name ---- ------------- ------ ---- d---- 08/27/2013 10:22 tmp7 >svn co file:///X:/Appraisal r:\tmp7 >svn: E160005: Target path '/ppraisal' does not exist Note that the A in Appraisal has been chopped off. Thinking that it might be just that one letter, I tried a different one. >svn mkdir file:///X:/TryAgain -m "test" Committed revision 2. >svn co file:///X:/TryAgain r:\tmp8 svn: E160005: Target path '/ryAgain' does not exist Same result. The T has been lopped off. If I use the real path to the repository (not the SUBST drive letter), it's successful: >svn co file:///R:/Appraisal/TryAgain r:\tmp9 Checked out revision 2. Jason was successful when using the full UNC path instead of the mapped drive letter, which is consistent with my results with the SUBST vs. real paths.