Questions tagged [svn-api]

Application programming interface to embedding Subversion into the own application.

11 questions
4
votes
2 answers

Web API for SVN

I wish to pull change logs via some web API. Is such a thing possible? I'd rather not use an external library to wrap the calls. e.g. GET http://repo/?branch=123&revision=789 gets the changes to branch 123 in revision 789. (The major thing is that I…
Xodarap
  • 11,581
  • 11
  • 56
  • 94
3
votes
1 answer

SVN Python API with TortoiseSVN

To use the SVN API with a Python script is it enough to have TortoiseSVN installed or do I need another SVN client? I am using the cmd line features of tortoiseSVN but I'm looking for more advanced possibilities to work with SVN and wonder if I need…
Martin Vegas
  • 127
  • 1
  • 13
2
votes
1 answer

How can I use peg revisions in Perl SVN::Client

The Perl bindings for Subversion in SVN::Client (I'm looking at Michael Schwern's version in CPAN, but I don't think it's significantly different from the version at Apache), mention peg revisions only in the context of the 'info' method. Is there…
Colin Fine
  • 3,334
  • 1
  • 20
  • 32
2
votes
1 answer

Is there any svn C API examples for version 1.8.1?

I need to checkout & update files to local path with SVN API(version 1.8.1). The examples in svn source code are of little help. Any examples for svn_client_checkout3() and svn_client_update3()?
hjason
  • 21
  • 1
1
vote
2 answers

Is there a way to pull/get a list of projects from TortoiseSVN programmatically?

I have looked into TortoiseSVN documentation and have not found anything if even possible but I thought I throw the question out there. Can you programmatically pull/get a list of projects from a svn?
RnDGuy
  • 13
  • 2
0
votes
2 answers

Get the list of commits from SVN repository and display it in own application

I need to implement the application that retrieve the list of commits from SVN repository and displays them on web page. How can I do it ? I'm not understand very good what should I use. It seems it can be done using some SVN api or library...…
Ddd
  • 113
  • 2
  • 15
0
votes
1 answer

svn externals check for new revisions

We have some externals definitions in our project. The externals are defined with a revision number (we want to keep it that way and don't want to use the head-revision). What we are looking for is some kind of notification that is triggered when a…
rherzog
  • 51
  • 9
0
votes
4 answers

are there any Subversion API wrappers available?

looking for subversion api wrappers that would let me make calls to subversion via a web application. any language at this point
mrblah
  • 99,669
  • 140
  • 310
  • 420
0
votes
1 answer

SVNKit library used for internal project?

Can SVNKit library be used for an application that is going to be used and redistributed only inside the company I work for? Does it count as a commercial use? http://svnkit.com/licensing.html Thanks.
0
votes
1 answer

What are the main differencies between the SVN client and the API?

I'm currently setting up a small continuous integration server for my team. We have recently switched our source code to an SVN server. I was wondering what are the main differencies between the SVN client from within some scripts or using the svn…
Yannick Blondeau
  • 9,465
  • 8
  • 52
  • 74
-1
votes
1 answer

How to get the directory size of a SVN repository using SVN Java API.

I am trying to get the SVN repository info using SVN Java API. Now i need to get the size of each directory at any level. I checked in the DOC and find inside the class SVNDirEntry there is a method getSize() which is applicable only when the entry…
Shibankar
  • 806
  • 3
  • 16
  • 40