When I attempt to use TortSVN to view the root of one of my repos, or
use the cmd line client to copy from the root, I get a PROPFIND
failed:
svn cp http://svn.mydomain.com/proj1_repos/trunk
http://svn.mydomain.com/proj1_repos/branches/1.3 -r 524 -m "branch 1.3
at rev 524"
svn: PROPFIND request failed on '/proj1_repos'
svn: PROPFIND of '/proj1_repos': 301 Moved Permanently (http://svn.mydomain.com)
This only happens with one of my 2 repos, which I split a few months
ago from a single repos with svnadmin dump and dumpfilter. Repos
fstype is fsfs.
The original repos had a /trunk/proj/* structure, and I needed to
remove a single project from the main repos and put it into its own.
However, a simple split that would have created repos paths like
http://svn.mydomain.com/proj_repos/trunk/proj. (with proj repeated
twice... ick) So I tweaked the project repos's dumpfile to change the
file paths from /trunk/project/* to just /trunk/*, thus getting paths
like http://svn.mydomain.com/proj_repos/trunk.
I'm still running svn 1.1.0.
Both are being served via the same SVNPathParent directive in their own vhost:
<VirtualHost *>
DocumentRoot "/usr/local/apache2/htdocs"
ServerName svn.mydomain.com
ErrorLog logs/svn-error.log
CustomLog logs/svn-access.log common
<Location />
DAV svn
SVNParentPath /data/subversion
AuthzSVNAccessFile svnaccess
AuthType Basic
AuthName "Subversion Access"
AuthUserFile userpw
Require valid-user
</Location>
</VirtualHost>
What should I be looking for?
-Trevor
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Feb 16 18:10:10 2005