The problem was, you couldn't host SVN repository at the top level,
at http://svn.host.tld/, since the <Location /> was parsed incorrectly
in mod_dav_svn -- the trailing slash was misinterpreted as missing for
root, another / added, and / was redirected to //, which couldn't exist.
The problem existed for the / location only.
Greg Stein suggested the fix, which follows as a patch, 
tested and working.  :-)
Cheers,
Alexy
Index: subversion/mod_dav_svn/repos.c
===================================================================
--- subversion/mod_dav_svn/repos.c
+++ subversion/mod_dav_svn/repos.c	Wed Jul 31 11:34:31 2002
@@ -868,14 +868,10 @@
 
   /* make sure the URI does not have a trailing "/" */
   len1 = strlen(uri);
-  if (len1 > 1 && uri[len1 - 1] == '/')
-    {
-      had_slash = 1;
-      uri[len1 - 1] = '\0';
-    }
-  else
-    had_slash = 0;
-
+  had_slash = uri[len1 - 1] == '/';
+  if (len1 > 1 && had_slash)
+    uri[len1 - 1] = '\0';
+  
   comb->res.uri = uri;
 
   /* The URL space defined by the SVN provider is always a virtual
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Jul 31 17:44:10 2002