Try to set
$repoparent = 'D:/VCS/svn';
instead in index.php
I'll try to document the configuration better.
/Staffan
Must be a subversion url, so that the svn command understands that it
is a remote operation.
$repoparent = 'file:///D:/VCS/svn';
/Staffan
Nope, the url is correct. repos.xsl has no way of knowing the
repository name, unless you hard code it or use Theo's solution. Only
the php is modified for the multi-repo solution.
As you correctly noted, only one of $repo and $repoparent can be set.
I can't follow the debug results. The "is not a working copy" error
must have something to do with the url not starting with http://,
svn:// or file://. I'm not on my test machine now so i'll have to get
back to you.
/Staffan
It does work on the two subversion configurations I've tried. The php
file tries to figure out the repository name from the referrer, if you
have set $repoparent and _not_ $repo. If it fails, for example because
the referer header is not set, you will get an error message saying
that the repository name could not be resolved. I could probably come
up with a more clever way to configure this, but I was interested to
see if the referrer concept works first.
/Staffan