You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by creatxr <cr...@hotmail.com> on 2009/01/14 02:35:04 UTC

how to let every one can list repos?

I want every one can list repos, but limit visit each repository.

----------------------------------------------------------------
I 've opened the option "SVNListParentPath on".
-----------------------------------------------------------------
If I have not this config below, I can visit http://localhost/svn.
Otherwise it can't list repos. How do I, please?

[groups]
administrators = svnroot
developers = developer
learners = learner

[/]
* = r

[demos:/]
@learner = r

[projects:/]
@developers = rw
-----------------------------------------------------------------






_________________________________________________________________
上Windows Live 中国首页,下载最新版MSN!
http://im.live.cn/

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1023363

To unsubscribe from this discussion, e-mail: [users-unsubscribe@subversion.tigris.org].

Re: how to let every one can list repos?

Posted by Ryan Schmidt <su...@ryandesign.com>.
On Jan 13, 2009, at 20:35, creatxr wrote:

> I want every one can list repos, but limit visit each repository.
>
> ----------------------------------------------------------------
> I 've opened the option "SVNListParentPath on".
> -----------------------------------------------------------------
> If I have not this config below, I can visit http://localhost/svn.
> Otherwise it can't list repos. How do I, please?
>
> [groups]
> administrators = svnroot
> developers = developer
> learners = learner
>
> [/]
> * = r
>
> [demos:/]
> @learner = r
>
> [projects:/]
> @developers = rw
> -----------------------------------------------------------------

I believe you're hitting this bug:

http://subversion.tigris.org/issues/show_bug.cgi?id=2753

Could it be that your <Location> directive has the path not ending  
with a slash? If so, put a slash at the end. e.g. change

<Location /svn>

to

<Location /svn/>

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1025460

To unsubscribe from this discussion, e-mail: [users-unsubscribe@subversion.tigris.org].