RE: How can I read the lock of every file in a directory?

2013-06-11 Thread Andy Cohen
s great! - Andy -Original Message- From: Dmitry Pavlenko [mailto:pavle...@tmatesoft.com] Sent: Tuesday, June 11, 2013 10:36 AM To: Andy Cohen Cc: svnkit-users@svnkit.com Subject: Re: How can I read the lock of every file in a directory? Hello Andy, Sorry for not replying for a while. Your code is

How can I read the lock of every file in a directory?

2013-06-10 Thread Andy Cohen
== null) { return; } if (specifiedUsername.equals(svnLock.getOwner())) { this.filesLockedByUser.add(svnInfo); } } So, can you tell me what I should be doing differently, so that svnInfo.getLock() won't always return NULL? Thanks for any help, Andy Andy Cohen Principal Software E

RE: How can I read the lock of every file in a directory?

2013-06-09 Thread Andy Cohen
I should clarify: I'm hoping to read all of the locks in an SVN repository folder, without having to download any of those files to my own working copy. Thanks! - Andy From: Andy Cohen Sent: Friday, June 07, 2013 12:20 PM To: SVNKit Library

How can I read the lock of every file in a directory?

2013-06-07 Thread Andy Cohen
Thanks to Dmitry's earlier help, I've been able to get a single file's lock information just fine. Now, of course, I need to find the lock information for every file in a directory. Unfortunately, svnInfo.getLock() seems to be returning NULL for every file, even when Sventon confirms that a file

RE: How can I read a file's lock?

2013-06-07 Thread Andy Cohen
Thanks, Dmitry! - Andy -Original Message- From: Dmitry Pavlenko [mailto:pavle...@tmatesoft.com] Sent: Tuesday, May 14, 2013 1:48 PM To: svnkit-users@svnkit.com Cc: Andy Cohen Subject: Re: How can I read a file's lock? Hello Andy, The error occurs because you use SvnRepositoryGe

RE: How can I read a file's lock?

2013-05-17 Thread Andy Cohen
Thanks very much for putting me back on the right track! - Andy -Original Message- From: Dmitry Pavlenko [mailto:pavle...@tmatesoft.com] Sent: Tuesday, May 14, 2013 1:48 PM To: svnkit-users@svnkit.com Cc: Andy Cohen Subject: Re: How can I read a file's lock? Hello Andy, The

How can I read a file's lock?

2013-05-13 Thread Andy Cohen
use SvnRepositoryGetLock, or should I be attacking this some other way? Thanks for any help, Andy Andy Cohen Principal Software Engineer Product Development Innovative Interfaces, Inc. 5850 Shellmound Way Emeryville, CA 94608 [letter-t] 510-655-6200 Ext 4221 [letter-e] aco..

"E200030: IOERR" when merging

2013-03-11 Thread Andy Cohen
I'm using svnkit-1.7.8.jar. This happens after several successful merges and commits on the same working copy. After that series of events, there must be something funny with my working copy, but I can't figure out what it is. Can you please help me figure out what's gone wrong? When I run this

RE: ClassCastException when committing

2013-03-11 Thread Andy Cohen
urial Library! http://sqljet.com/ - Java SQLite Library! On 9 March 2013 01:25, Andy Cohen mailto:aco...@iii.com>> wrote: I’ve recently upgraded to SVNkit 1.7.8, and I’m getting this error when I commit: java.lang.ClassCastException: org.tmatesoft.svn.core.wc.SVNCommitPacket cannot

ClassCastException when committing

2013-03-08 Thread Andy Cohen
soft.svn.core.wc and org.tmatesoft.svn.core.wc2. That is, the first package has something called an "SVNCommitClient", while the second package has something called an "SvnCommit". Should I be migrating my code from the "wc" stuff to the "wc2" stuff, or am I barking up

RE: IllegalStateException from SVNLookClient.doGetLog()

2012-11-21 Thread Andy Cohen
Thanks, Alexander! That did the trick. - Andy -Original Message- From: svnkit-users-boun...@svnkit.com [mailto:svnkit-users-boun...@svnkit.com] On Behalf Of Alexander Kitaev Sent: Monday, November 19, 2012 8:18 AM To: SVNKit Library Users List Subject: Re: IllegalStateException from

Re: Using SVNKit as a SVN proxy server

2011-12-07 Thread Andy Cohen
If you only need to perform extra checks, have you considered writing an SVN pre-commit hook instead? I think that would be a simpler task than writing an SVN proxy server. - Andy On 12/7/2011 7:59 AM, syntern wrote: +1 for this question Any advice or success story on this use case? Than