pbu...@apache.org wrote on Mon, Mar 26, 2012 at 22:29:55 -0000:
> Author: pburba
> Date: Mon Mar 26 22:29:55 2012
> New Revision: 1305641
> 
> URL: http://svn.apache.org/viewvc?rev=1305641&view=rev
> Log:
> On the inheritable-props branch: Implement getting inherited props over
> ra_svn.
> 
> * subversion/libsvn_ra_svn/protocol
>   (get-file,
>    get-dir): Document the new protocol options.
> 

The protocol document doesn't mention the new capability (which an
earlier commit added).

> +++ subversion/branches/inheritable-props/subversion/svnserve/serve.c Mon Mar 
> 26 22:29:55 2012
> +static svn_error_t *
> +get_props(apr_hash_t **props,
> +          apr_array_header_t **iprops,
> +          svn_fs_root_t *root,
> +          const char *path,
> +          apr_pool_t *pool)
>  {
>    /* Get the properties. */
> -  SVN_ERR(svn_fs_node_proplist(props, root, path, pool));
> +  SVN_ERR(svn_fs_node_proplist2(props, iprops, root, path, pool, pool));
>  

Don't you need an svn_repos_* wrapper here, where (eventually) authz
checks on the parents will be done?

Reply via email to