are there any Subversion API wrappers available? [closed]
开发者_如何学运维
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this questionlooking for subversion api wrappers that would let me make calls to subversion via a web application.
any language at this point
there is pysvn : you can integrate this with your favorite python web framework.
SVNKit is a pure Java Subversion client library.
SVNKit supports all standard Subversion operations, both on working copies and repository. It is compatible with all versions of Subversion, works over HTTP, SSH, SVN and FILE protocols. It provides API to version virtually any object model with standard Subversion repository; there is no need to keep anything in the filesystem. SVNKit works with local repositories as well as with remote ones
Features:
- Repository access over http(s), svn, svn(+ssh) and file protocols.
- Working copy operations - all are supported.
- Repository administration: create, load, dump and replay operations.
- Additionally to its own API, SVNKit implements JavaHL API.
- SVNKit is reported to work on Windows, OSX, Linux, BSD and OpenVMS.
- SVNKit does not require native binaries, it works out of the box.
- Native Subversion configuration files are used by default.
- Java Subversion command line client is part of SVNKit.
- Latest SVNKit supports Subversion 1.6.5.
http://www.thoughtspark.org/node/11 SharpSvn:
You could try Svn.NET.
And here are some more options for .NET in a similar post:
Is there a Subversion API that can be used to program against in .NET
精彩评论