logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SVN::Hooks::DenyChanges - Deny some changes in a repository.

Author

       Gustavo L. de M. Chaves <gnustavo@cpan.org>

Name

       SVN::Hooks::DenyChanges - Deny some changes in a repository.

Synopsis

       This SVN::Hooks plugin is used to disallow the addition, deletion, or modification of parts of the
       repository structure.

       It's active in the "pre-commit" hook.

       It's configured by the following directives.

   DENY_ADDITION(REGEXP,...)
       This directive denies the addition of new files matching the Regexps passed as arguments.

               DENY_ADDITION(qr/\.(doc|xls|ppt)$/); # ODF only, please

   DENY_DELETION(REGEXP,...)
       This directive denies the deletion of files matching the Regexps passed as arguments.

               DENY_DELETION(qr/contract/); # Can't delete contracts

   DENY_UPDATE(REGEXP,...)
       This directive denies the modification of files matching the Regexps passed as arguments.

               DENY_UPDATE(qr/^tags/); # Can't modify tags

   DENY_EXCEPT_USERS(LIST)
       This directive receives a list of user names which are to be exempt from the rules specified by the other
       directives.

               DENY_EXCEPT_USERS(qw/john mary/);

       This rule exempts users "john" and "mary" from the other deny rules.

Version

       version 1.36

See Also