2

I need to create and operate a number of student SVN repositories, and create some fine grained access controls to prevent students from cheating while allowing instructors to access the revision history.

For a single repository, I can use WebDAV and configure AuthzSVNAccessFile to permit access. But I need multiple repositories. I could set up multiple <Location> directives, but that's verbose, and anytime I need to add or remove a repo it requires an Apache reload. There's a way to specify a "parent path" that contains a number of repos with SVNParentPath, but is there a corresponding way to map authz files to those repos?

jldugger
  • 14,342
  • 20
  • 77
  • 129

2 Answers2

3

You can actually manage permissions for multiple repositories with a single authz file. For example:

[foo:/]
@students = rw
@instructors = r

[bar:/]
@students = rw
@instructors = r

In this case the name before the colon is the name of the repository, the first component of the path after SVNParentPath.

Kamil Kisiel
  • 12,184
  • 7
  • 48
  • 69
0

You could use .htaccess files do use either basic HTTP authentication, or use mod_auth_mysql to pull authentication information from a SQL database. From that point it would be pretty straightforward to build yourself a frontend to manage permissions in the SQL tables.

Bob Somers
  • 223
  • 3
  • 11