Background
I have been running svnserve version 1.8.17 configuration management software on my windows intranet for years with now 10 PCs. The PCs use TortoiseSVN as the client. Now I need to add another user who has access only to a sub-folder. This means altering the authz file.
Problem
When I add a path to the authz file, I get error Invalid authz configuration. Here is my sanitized authz file:
[groups]
mygroup = rtischer
othergroup = smith
[/]
@mygroup = rw
# causes 'Invalid authz configuration' when these lines are included
[Hiveware:\Hiveware\bbb\ccc\projname]
@othergroup = rw
And the following are my sanitized paths:
C:\svn\Hiveware\conf\authz
C:\svn\Hiveware\db
C:\Hiveware\bbb\ccc\projname
The following text, taken from Subversion documentation page xxii, says my path syntax is correct:
For consistency, the examples in this book assume that the reader is using a Unix-like operating system and is relatively comfortable with Unix and command-line interfaces. That said, the svn program also runs on nonUnix platforms such as Microsoft Windows. With a few minor exceptions, such as the use of backward slashes () instead of forward slashes (/) for path separators, the input to and output from this tool when run on Windows are identical to that of its Unix counterpart.
I couldn't find out what those "minor exceptions" were though.
Question
Is there another syntax that works? Or is this really a bug after all these years?