Server IP : 85.214.239.14 / Your IP : 18.117.78.87 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/root/usr/share/subversion/hook-scripts/ |
Upload File : |
## Example configuration file for svnperms.py. ## # $Id: svnperms.conf.example 1028289 2010-10-28 13:20:45Z cmpilato $ # # Multiple global [groups] sections are accepted, but be aware # that it's the same as concatenating them all in a single entry. # You can also create section specific groups, using a syntax # like [sectionname groups]. # [groups] group1 = user1 user2 user3 group2 = user4 user5 supergroup = @group1 @group2 user6 # # Example repository control, showing allowed syntax. # # - the latest match is what counts # - groups are prefixed by "@" # - you can use groups and users in the same definition # - all permissions may be revoked with () # - line breaks are accepted # [example1 groups] group3 = user9 user10 [example1] trunk/.* = *(add,remove,update) @group1,user4,user5(update) user6,user7() trunk/.* = user8(add,update) tags/[^/]+/ = @group3(add) branches/[^/]+/.* = *(add,remove,update) # # One of the most used repository structures, for a single project. # [example2] trunk/.* = *(add,remove,update) tags/[^/]+/ = *(add) branches/[^/]+/.* = *(add,remove,update) # # Another common structure, expecting a project name inside the repository # (like trunk/myproject/ and tags/myproject/). In this example, only admins # are allowed to create projects, and there are project specific access # lists. # [example3 groups] admins = john project1 = user1 user2 project2 = user3 user4 [example3] trunk/[^/]+/ = @admins(add,remove) trunk/project1/.+ = @project1(add,remove,update) trunk/project2/.+ = @project2(add,remove,update) tags/[^/]+/ = @admins(add,remove) tags/project1/[^/]+/ = @project1(add,remove) tags/project2/[^/]+/ = @project2(add,remove) branches/[^/]+/ = @admins(add,remove) branches/project1/[^/]+/.* = @project1(add,remove,update) branches/project2/[^/]+/.* = @project2(add,remove,update) # # A more complex structure, as defined in the following URL: # # http://moin.conectiva.com.br/RepositorySystem # [example4 groups] admins = user1 user2 updaters = user3 [example4] snapshot/[^/]+/(current/(SPECS/|SOURCES/)?)? = *(add) snapshot/[^/]+/ = @admins(add,remove) snapshot/[^/]+/current/SPECS/[^/]+\.spec = *(add,remove,update) snapshot/[^/]+/current/SOURCES/[^/]+ = *(add,remove,update) snapshot/[^/]+/releases/[^/]+/([^/+]/)? = autouser(add) snapshot/[^/]+/pristine/ = autouser(add,remove) branches/[^/]+/.* = *(add,remove,update) releases/[^/]+/ = @admins(add) tags/[^/]+/ = *(add,remove) updates/[^/]+/[^/]+/(current/(SPECS/|SOURCES/)?)? = @updaters,autouser(add) updates/[^/]+/[^/]+/current/SPECS/[^/]+\.spec = @updaters,autouser(add,update) updates/[^/]+/[^/]+/current/SOURCES/[^/]+ = @updaters,autouser(add,remove,update) updates/[^/]+/[^/]+/releases/.* = autouser(add) updates/[^/]+/[^/]+/pristine/ = autouser(add,remove) # # Sections can inherit settings from previously defined sections, using # the "extends" keyword in the section declaration. In this example, # the [example5] section inherits all the settings from [example2], and # adds a new setting for a releases directory which behaves like the # tags directory. # [example5 extends example2] releases/[^/]+/ = *(add)