I have the following repository configuration file for apache:

<Location /svn/repos/>
AuthType Basic
AuthName "Subversion"
AuthUserFile /srv/svn/svnauth

DAV svn
SVNParentPath /srv/svn/repos
SVNListParentPath On

require valid-user
</Location>

<Location /svn/repos/repo1>
    require valid-user
</Location>

<Location /svn/repos/repo1/trunk/secret>
    <LimitExcept GET PROPFIND OPTIONS REPORT>
       require user secretowner
    </LimitExcept>
    <Limit GET PROPFIND OPTIONS REPORT>
       require user secretowner
    </Limit>
</Location>

It seems right to me but the odd behavior is that when some valid-user but
secretowner checkouts trunk the folder secret keeps coming as well its
content.
What is wrong?
____________________________________________
Rodrigo Montenegro de Oliveira

Reply via email to