Re: svn_repos_fs_commit_txn error

2015-11-25 Thread Philip Martin
Daniel Shahaf writes: > I mean, "Is the list of thing a library user must call documented?", not > "Is each of those functions documented" (I know the latter is true). I'm not aware of any such documentation. I suspect it would be out-of-date if it did exist. I didn't even mention svn_nls_init

Re: svn_repos_fs_commit_txn error

2015-11-24 Thread Daniel Shahaf
Ren Wang wrote on Tue, Nov 24, 2015 at 12:37:26 -0500: > Thank you so much for the information. I wonder if there is a simple or any > subversion programming guide? There are our C tests (subversion/tests/**/*.c) — I think they are a good starting point for minimal examples of API usage.

Re: svn_repos_fs_commit_txn error

2015-11-24 Thread Daniel Shahaf
Philip Martin wrote on Tue, Nov 24, 2015 at 16:31:52 +: > "Ren Wang" writes: > > > After more google searching, I added the following line in the begin > > of the program, it is working now: > > apr_initialize(); > > A Subversion server process should call: > > apr_initialize() > svn_dso_

Re: svn_repos_fs_commit_txn error

2015-11-24 Thread Ren Wang
Thank you so much for the information. I wonder if there is a simple or any subversion programming guide? Sent from my iPhone > On Nov 24, 2015, at 11:31, Philip Martin wrote: > > "Ren Wang" writes: > >> After more google searching, I added the following line in the begin >> of the program,

Re: svn_repos_fs_commit_txn error

2015-11-24 Thread Philip Martin
"Ren Wang" writes: > After more google searching, I added the following line in the begin > of the program, it is working now: > apr_initialize(); A Subversion server process should call: apr_initialize() svn_dso_initialize2() svn_fs_initialize() svn_cache_config_set() before starting to a

RE: svn_repos_fs_commit_txn error

2015-11-24 Thread Ren Wang
7; ; users@subversion.apache.org Subject: RE: svn_repos_fs_commit_txn error > -Original Message- > From: Branko Čibej [mailto:br...@apache.org] > Sent: dinsdag 24 november 2015 06:13 > To: users@subversion.apache.org > Subject: Re: svn_repos_fs_commit_txn error > > On 23.11.2015 21:0

RE: svn_repos_fs_commit_txn error

2015-11-24 Thread Bert Huijben
> -Original Message- > From: Branko Čibej [mailto:br...@apache.org] > Sent: dinsdag 24 november 2015 06:13 > To: users@subversion.apache.org > Subject: Re: svn_repos_fs_commit_txn error > > On 23.11.2015 21:01, Ren Wang wrote: > > I got an error for crea

Re: svn_repos_fs_commit_txn error

2015-11-23 Thread Branko Čibej
On 23.11.2015 21:01, Ren Wang wrote: > I got an error for creating a new directory to the repository. Strange to me > is that enve the code failed at the svn_repos_fs_commit_txn, but the > directory got created: > > > > > > 1) Open repository, repos > > 2) Get the latest revision, you

svn_repos_fs_commit_txn error

2015-11-23 Thread Ren Wang
I got an error for creating a new directory to the repository. Strange to me is that enve the code failed at the svn_repos_fs_commit_txn, but the directory got created: 1) Open repository, repos 2) Get the latest revision, youngest 3) Do the following: svn_fs_txn_t *txn; s