Re: RC-5 Move still broken

2012-06-08 Thread maikhorma
cm.getMoveClient().doMove(orig, newFile); >> >> Here is what worked for me: >> >> SVNClientManager cm = ...; >> cm.getUpdateClient().doCheckout(url, co, SVNRevision.UNDEFINED, >> SVNRevision.HEAD, SVNDepth.UNKNOWN, true); >> SVNCopySource[] sc =

Re: RC-5 Move still broken

2012-04-09 Thread Alexander Kitaev
Hello Mark, SVNMoveClient was introduced in the 1.3.x version line in order to workaround some limitations of the standard move. So there are (and were) two ways to perform move - first is with the SVNCopyClient.doCopy - this is a standard way which works exactly the same way as the native client,

RE: RC-5 Move still broken

2012-04-06 Thread Mark Herman
> Please consider using SVNCopyClient.doCopy(...) method with "isMove" >parameter set to "true". Thanks for the quick response, doCopy with isMove works correctly for me. Here is the code that doesn't work: SVNClientManager cm = ...; cm.getUpdateClient().doCheckout(url, co, SVNRevision.UNDEFINED

Re: RC-5 Move still broken

2012-04-06 Thread Alexander Kitaev
Please consider using SVNCopyClient.doCopy(...) method with "isMove" parameter set to "true". Alexander Kitaev, TMate Software, http://subgit.com/ - Svn to Git Migration! http://svnkit.com/ - Java [Sub]Versioning Library! http://hg4j.com/ - Java Mercurial Library! http://sqljet.com/ - Java SQLite

Re: RC-5 Move still broken

2012-04-06 Thread Alexander Kitaev
Hello, What code do you use to perform the move? Alexander Kitaev, TMate Software, http://subgit.com/ - Svn to Git Migration! http://svnkit.com/ - Java [Sub]Versioning Library! http://hg4j.com/ - Java Mercurial Library! http://sqljet.com/ - Java SQLite Library! On 6 April 2012 17:55, Mark Herm

RC-5 Move still broken

2012-04-06 Thread Mark Herman
I've been trying to post to the user list, but for some reason I keep getting rejected. This morning I tried with rc5 and still the move operation does not work properly. On the file system it looks like it works, but according to any svn client it's a "missing" and an "unversioned" file. If y