integrating fitnesse[20090818] to a SVN repository accessible throught http[DAV]

View: New views
2 Messages — Rating Filter:   Alert me  

integrating fitnesse[20090818] to a SVN repository accessible throught http[DAV]

by Arun-35 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I found a old version of fitnesse code which had a implementation of a
SVN responder build it, but it assumed that repo to be accessible via
SVN// protocol. In my case our SVN repo sits behind a apache serve and
the only way we can hook to it is via HTTPs [needs DAV support].
Does anybody know if there is version of the responder class which I can
use ? Or I can submit the code and test cases if it can be bundled with
some future fitnesse release.
All I need to do is extend the revisioncontoller and do this
public SVNRevisionController(final Properties properties) {  
//SVNRepositoryFactoryImpl.setup();    DAVRepositoryFactory.setup();
FSRepositoryFactory.setup();
..... // rest of the code would be same for any svn controller.
ThanksArun

Re: integrating fitnesse[20090818] to a SVN repository accessible throught http[DAV]

by timander37 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Arun,

I remember making the same change.  I tried to extract this as a plugin at one point http://bit.ly/1TnAF7

I tried to get my plugin to work with the newest versions of FitNesse about a month ago, but the code for FitNesse has changed so much since I originally extracted the plugin that I think I'll have to start over.  I would be willing to work on this with you, email me off-list.

Tim


--- In fitnesse@..., "Arun" <arun.g.giri@...> wrote:

>
> I found a old version of fitnesse code which had a implementation of a
> SVN responder build it, but it assumed that repo to be accessible via
> SVN// protocol. In my case our SVN repo sits behind a apache serve and
> the only way we can hook to it is via HTTPs [needs DAV support].
> Does anybody know if there is version of the responder class which I can
> use ? Or I can submit the code and test cases if it can be bundled with
> some future fitnesse release.
> All I need to do is extend the revisioncontoller and do this
> public SVNRevisionController(final Properties properties) {  
> //SVNRepositoryFactoryImpl.setup();    DAVRepositoryFactory.setup();
> FSRepositoryFactory.setup();
> ..... // rest of the code would be same for any svn controller.
> ThanksArun
>