I am trying to fetch all activity that has been performed on a branch in my Java code using SVN Kit.

SVNRepository repository = SVNRepositoryFactory.create(svnURL);
ISVNAuthenticationManager authManager = SVNWCUtil.createDefaultAuthenticationManager("UserName", "password");
repository.setAuthenticationManager(authManager);
Collection logEntries = repository.log(new String[] { "" }, null, 0, -1, true, true);

The above code works like a charm and I am getting all activity on the Branch denoted by my svnURL attribute.

But the real problem comes in when after some activity the branch itself was renamed. For example

Initial Branch => https://domain/repository/branches/OriginalName
New
Branch =>  https://domain/repository/branches/NewName

Now, after the rename has happened, when I run the above code using the Old Name, I get a propfind error that says, the file cannot be located. But when I run with the new branch name, everything works file and it also gives the activity logs on that branch but only until the rename. The activity that had happened on the OldBranch name is not returned.

Is there a way in SVNKit to get the output as I am expecting?

link|improve this question

68% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You set the the parameter strictNode of log to true

If strictNode is true, copy history will not be traversed (if any exists) when harvesting the revision logs for each path.

This seems to be equivalent of stop on copy/rename in most GUIs. By setting it to false you should get the whole revision history.

Note: svn rename is just a copy and delete. It will create a new copy of the file/folder and delete the old one.

link|improve this answer
Actually. This is something that I just tried. The problem here that I am seeing is that the SVNKit ends up returning me all activity. i.e. the results would also include any activity that might have had happened on /trunk or on any other branch between the date range. Which is Something that I dont want. Can this be a bug in SVNKit? – Salman A. Kagzi Dec 21 '11 at 10:54
@SalmanA.Kagzi strange, it definitely should work: old.nabble.com/… – oers Dec 21 '11 at 12:05
Thanks for that link. This actually proves my result right? What I mean is, when i have the strictNode as false, the logs goes back to the inception of each files i.e. when those files were actually added (in trunk or in any other branch). But I don't want to go that far. I only want to go as far as when that branch was created. Is there any way to limit that? Thanks again. – Salman A. Kagzi Dec 21 '11 at 12:31
the problem is that the creation of the branch is the same as the renaming, it is only a copy. SVN can't distinct those. It seems that you would have to provide the starting revision of the branch. SVN can't know where to stop the logs here. – oers Dec 21 '11 at 12:43
1  
Thanks man. I am planning to first identify the old names of the branch from the logs that I get. Will identify Old name where a commit as 2 changed paths, 1 added and another deleted. And Copy path of the added item is equal to the Path of the deleted one. Will use these paths to match them with the File names that I get from the logs to identify if the entry is an interested one or not. – Salman A. Kagzi Dec 26 '11 at 18:06
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.