vote up 3 vote down star

I've got a couple of projects where it would be useful to be able to interact with an SVN server from appengine.

  • Pull specific files from the svn (fairly easy, since there is a web interface which I can grab the data off automatically, but how do I authenticate)
  • Commit changes to the svn (this is the really hard/important part)
  • Possibly run an SVN server (from an appengine app, I'm guessing this isn't possible)

I would prefer a python solution, but I can survive with java if I must

flag

Any ideas for the third point, is it possible to actually run a standalone SVN server off appengine? SVNkit (as far as I can see) only interacts with an already existing server – Martin Oct 22 at 14:37
what the client can, the server can. any conclusion you can't, even more genrally broader sceintific, probably wrong. technically sure, just respect all very illogical crazy poisonous copyrights – LarsOn Oct 25 at 1:08

2 Answers

vote up 2 vote down

DryDrop (http://drydrop.binaryage.com/) is a Git based solution you may want to look at for comparison of what you're trying to do.

link|flag
Hmm, I've never used GIT, I'll have a look into it – Martin Oct 22 at 11:25
vote up 4 vote down

you can try using SVNKit with the java runtime

link|flag
Aha! Looks promising, do you know if SVNkit tries to create any sockets (appengine doesn't allow that)? – Martin Oct 21 at 23:41
probably it uses sockets in order to communicate with the svn repository.. but it is worty trying anyway imho – dfa Oct 21 at 23:57

Your Answer

Get an OpenID
or

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