Permissions to create branches/tags to certain users only

2010-10-11 Thread Tech Geek
Our repositories lives in /var/lib/svn/ on a Linux server. We use the following sturcture on per project per repository basis: /var/lib/svn/projectA/tags/ /var/lib/svn/projectA/trunk/ /var/lib/svn/projectA/branches/ /var/lib/svn/projectB/tags/ /var/lib/svn/projectB/trunk/ /var/lib/svn/projec

Re: Permissions to create branches/tags to certain users only

2010-10-11 Thread David Weintraub
The standard Python pre-commit hook that comes with Subversion's source tarball will do the job. I have a Perl version that does the same thing. Both of these not only will allow you to keep certain people out of a branch, but can tag a directory as "add-only". That is, you can "add" to a director

Re: Permissions to create branches/tags to certain users only

2010-10-12 Thread Tech Geek
David: The standard Python pre-commit hook that comes with Subversion's > source tarball will do the job. Are you referring to the files svnperms.conf.example and svnperms.py found at [1]. > I have a Perl version that does the same thing. > Thanks for sharing your scripts. I will take a detaile