Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

svn::hooks::allowpropchange(3pm) [debian 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)

Check Out this Related Man Page

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

NAME
SVN::Hooks::AllowLogChange - Allow changes in revision log messages. VERSION
version 1.19 SYNOPSIS
This SVN::Hooks plugin is used to allow revision log changes by some users. It's deprecated. You should use SVN::Hooks::AllowPropChange instead. It's active in the "pre-revprop-change" hook. It's configured by the following directive. ALLOW_LOG_CHANGE(WHO, ...) This directive enables the change of revision log messages, which are mantained in the "svn:log" revision property. The optional WHO argument specifies the users that are allowed to make those changes. If absent, any 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_LOG_CHANGE(); ALLOW_LOG_CHANGE('jsilva'); ALLOW_LOG_CHANGE(qr/silva$/); 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::AllowLogChange(3pm)
Man Page

6 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

change log in name

I wish to change my log in name. How do I either change it or delete it and create a new name? (1 Reply)
Discussion started by: PamRainwater
1 Replies

2. UNIX for Dummies Questions & Answers

How to log what users are doing??

Guys i am new in forum and come to ask some help in this. What i want is to log what users are doing. Someone told me to make a script and get the history commands of all users and storage this in a DB. but the problem in this is, i want to log all things. Why this? why my 2 machines is only a... (4 Replies)
Discussion started by: Amgrim
4 Replies

3. UNIX and Linux Applications

SVN user permissions trouble

I am trying to add a user to my SVN server that can only access one of about a dozen repositories I have set up. Here are the files that I think need changed and what I have set them to. No matter what I try with these files I am unable to see the results I am after. In the end I want this new... (0 Replies)
Discussion started by: benn600
0 Replies

4. UNIX for Dummies Questions & Answers

Login to svn from UNIX

Hi Can anyone please tell me about how to connect to SVN from unix Thanks (2 Replies)
Discussion started by: kedar_laveti
2 Replies

5. Shell Programming and Scripting

UNIX command/script svn log to get just the files information

Just need the directory name and files changes information in svn log This is my svn log verbose: svn log -v //test/svn/Demo/branches/HelloWorld/Batch --limit 2 ------------------------------------------------------------------------ r133 | testuser1 | 2013-04-02 18:22:28 -0400 (Tue, 02 Apr... (22 Replies)
Discussion started by: iaav
22 Replies

6. Shell Programming and Scripting

Get out of only Modified and Added files in svn log

How to get only modified and added files with revision,author and comments from svn log verbose ------------------------------------------------------------------------ r7351 | user01 | 2013-07-02 17:53:28 -0400 (Tue, 02 Jul 2013) | 2 lines Changed paths: D /trunk/demo/proj1/.project ... (1 Reply)
Discussion started by: iaav
1 Replies