GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
SVN::Hooks::DenyChanges(3) User Contributed Perl Documentation SVN::Hooks::DenyChanges(3)

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

version 1.34

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

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.

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

This software is copyright (c) 2016 by CPqD <www.cpqd.com.br>.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2016-11-10 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.