I have got a requirement to adding version control to FitNesse wiki markups we construct. In older FitNesse version, we have CMSystem, which used to provide typical callback methods on several operations on the Test/Suite file that we manipulate like cmUpdate, cmEdit, cmPreDelete, cmDelete.
But in recent version I have observed that CMSystem is been removed from the FitNesse library. Further they have introduced new concept called "VersionController". FitNesse library implicitly providing GitFileVersionsController for Git repositories.
But for my requirement I need to implement for SVN. Can anybody assist with any solution?
I am able to crack the solution eventually by analyzing the code deeper and finding the socket points to build my own system similar to GitVersionController.
Thanks.