Re: properties or config file to setup special folder permission on deployment?
From: Sylvain Viart <sylvain.viart_at_easyrencontre.com>
Date: 2007-09-18 14:09:13 CEST
Hi Erik,
Erik Huelsmann a écrit :
>> Where should I start for example using svn API for exploring wc?
I've found this link
Which describe some basic concept about SVN API.
here is a peace of C code from the link above illustrating the wc
svn_error_t *print_info(const char *path, apr_pool_t *pool) {
SVN_ERR(svn_wc_adm_open3(&adm_access, NULL, path, FALSE, 0, NULL,
SVN_ERR(svn_wc_entry(&entry, path, adm_access, TRUE, pool));
printf("name: %s\n", entry->name);
return SVN_NO_ERROR;
I'm still looking to some perl example to translate this code. Now I've
> PS: Please keep conversation on the list.
Regards,
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.