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

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.
This directive denies the addition of new files matching the Regexps passed as arguments.
DENY_ADDITION(qr/\.(doc|xls|ppt)$/); # ODF only, please
This directive denies the deletion of files matching the Regexps passed as arguments.
DENY_DELETION(qr/contract/); # Can't delete contracts
This directive denies the modification of files matching the Regexps passed as arguments.
DENY_UPDATE(qr/^tags/); # Can't modify tags

Gustavo Chaves, <gnustavo@cpan.org>

Please report any bugs or feature requests to bug-svn-hooks-checkmimetypes at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=SVN-Hooks. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

You can find documentation for this module with the perldoc command.
perldoc SVN::Hooks
You can also look for information at:

Copyright 2008-2009 CPqD, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.