Simple web-frontend for remote svn administration? [closed]
We run a SVN repository. Some of our more advanced users need to be able to perform some SVN administration without relying on the system administrator.
They need to be able to do things like create SVN repositories, delete SVN repositories,, and perform commands like 'svnadmin dump' and 'svnadmin load'.
We'd like to avoid SSH access on these FreeBSD machines, and would rather provide a service interface through a Web UI.
I'm looking for a simple script (or a small number of scripts) which use Perl or PHP. I found svnadmin (From Jochen Hoenicke) or svnadmin.pl (From doug munsinger), but was hoping to find something with a larger user community or which has been recommended by others.
It looks like Trac allows SVN administration, but comes with may more features then we need.
Late answer as I'm new to serverfault: we (university compsci department) developed our own self-service svn webinterface and made it available as open source. Named repocafe, available at http://repocafe.cs.uu.nl/. Modelled to our own needs it can deal with single or multiple ldap servers and guest users. Maybe a bit overkill for 'simple'.
In the end, we chose to go with svnadmin (From Jochen Hoenicke).
This won because it was a single, simple file with 400 lines of code, and is something that we could fix ourselves if necessary. Unfortunately it doesn't have a user community or many recommendations. But it's simplicity wins out. Ask me in 6 months if we recommend it ;)