Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

svn::hooks::denychanges(3pm) [debian man page]

SVN::Hooks::DenyChanges(3pm)				User Contributed Perl Documentation			      SVN::Hooks::DenyChanges(3pm)

NAME
SVN::Hooks::DenyChanges - Deny some changes in a repository. VERSION
version 1.19 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. AUTHOR
Gustavo L. de M. Chaves <gnustavo@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by CPqD. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-24 SVN::Hooks::DenyChanges(3pm)

Check Out this Related Man Page

SVN::Hooks::AllowPropChange(3pm)			User Contributed Perl Documentation			  SVN::Hooks::AllowPropChange(3pm)

NAME
SVN::Hooks::AllowPropChange - Allow changes in revision properties. VERSION
version 1.19 SYNOPSIS
This SVN::Hooks plugin is used to allow revision (or non-versioned) properties ("svn:author", "svn:date", and "svn:log") to be changed by a group of users. It's active in the "pre-revprop-change" hook. It's configured by the following directive. ALLOW_PROP_CHANGE(PROP => WHO, ...) This directive enables the change of revision properties. By default any change is denied unless explicitly allowed by the directive. You can use the directive more than once. The PROP argument specifies the propertie(s) that are to be configured depending on its type. If no argument is given, no user can change any property. STRING Specify a single property by name ("author", "date", or "log"). REGEXP Specify all properties that match the Regexp. The optional WHO arguments specify the users that are allowed to make those changes. If absent, no user can change a log message. Otherwise, it specifies the allowed users depending on its type. STRING Specify a single user by name. REGEXP Specify the class of users whose names are matched by the Regexp. ALLOW_PROP_CHANGE('svn:log' => 'jsilva'); # jsilva can change svn:log ALLOW_PROP_CHANGE(qr/./ => qr/silva$/); # any *silva can change any property AUTHOR
Gustavo L. de M. Chaves <gnustavo@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by CPqD. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-24 SVN::Hooks::AllowPropChange(3pm)
Man Page

6 More Discussions You Might Find Interesting

1. HP-UX

Office tool for HP-UX 11.0 ?

Hi Experts, I am facing a problem in opening the office files like *.doc, *.ppt , *.xls etc in HP Unix. How do I do this? Is the software available , If yes is it freely available or Do I need to buy it ? (3 Replies)
Discussion started by: prasanna
3 Replies

2. Shell Programming and Scripting

Finding duplicate data in a file

A pogram named LOGGEDON returns an output of: Ref_num IP Address Logged on User 12000 10.10.12.12 12-02-2002 11:00 john 12004 10.10.12.13 12-03-2002 14:00 mary 12012 10.10.12.14 12-03-2002 11:30 bob 12024 ... (1 Reply)
Discussion started by: dinplant
1 Replies

3. Shell Programming and Scripting

awk output?

i have this file 11 tony tony 12 john john 0 13 nick nick 20 14 mary mary 40 i want to display the file like tony tony missing john john 0 Failed nick nick Failed mary mary 40 if there is no mark for a name flag it as missing ,mark <40 flagged as failed i came up with ... (6 Replies)
Discussion started by: kion
6 Replies

4. Shell Programming and Scripting

string operation

Hi all, Here is my situation. I have a text file TXT_FILE like this: john 123456 jack 94589 kelvin 94595 mary 88585 I want to read the first word in each line ( the name ) and assign to a string variable ( EX_LIST ) in my script so that I can use later as this commandfor i in... (6 Replies)
Discussion started by: fongthai
6 Replies

5. Shell Programming and Scripting

Python, keep successively increasing longer list

Suppose I have a listname= I want to generate the following as output john john mary john mary anne john mary anne lisa Is there any way to do this? print listname print listname listname print listname listname listname ....... what is a smart way of putting this into a... (2 Replies)
Discussion started by: grossgermany
2 Replies

6. Shell Programming and Scripting

Files Deletion After 20 Minutes

Hi, everyone. Could you help me with deletion of files, which are 20 minutes old. I found out how to make deletion for files in that way : find <dir> -mtime n -exec rm -rf "{}" Could you offer your suggestions. Many thanks in advance. (5 Replies)
Discussion started by: KReoN
5 Replies