I'm configuring SVN DAV via Apache2 using the following configuration:
<Location /svn/>
DAV svn
SVNParentPath C:\svn_repository
SVNListParentPath on
Allow from all
SVNAutoVersioning Off
</Location>
(PS: I already tried changing "Location /svn/" to "Location /svn" as suggested on other answers)
When I access {http://localhost/svn/project-name/} via HTTP or a WebDAV client (NetDrive for instance), it lists all the files for this project.
But when I access {http://localhost/svn/} via a WebDAV client, it doesn't show the list of repositories. Even though it does via HTTP.
Any hints?