Sponsored Content
Full Discussion: Awards: How to Award Bits?
Contact Us Post Here to Contact Site Administrators and Moderators Awards: How to Award Bits? Post 302403533 by Neo on Friday 12th of March 2010 11:22:41 PM
Old 03-13-2010
Thanks for the update rdcwayx.

Try it now. I think it should be OK. I had to make a change to the configuration file and all should be OK now. Please post back and let us know.
 

6 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

Cannot award a posting with bits!

Hi all, I've just now wanted to award 1000 Bits to following posting and I noticed there is no "coin"/award button anymore :confused: Regards, pc EDIT: I guess it's turned off since we now have this Thanks button? (2 Replies)
Discussion started by: pseudocoder
2 Replies

2. What is on Your Mind?

Place Bits & Win Bits!!! - 17th Annual Satellite Awards

Ten movies have been nominated as best motion picture by the International Press Academy, presentation of the 2012 Satellite Awards will be held on 16th December at Los Angeles, CA. Place your bits here on one of the below nominated movie of your choice:- Argo ... (0 Replies)
Discussion started by: Yoda
0 Replies

3. What is on Your Mind?

Place bits! - 2013 Golden Globe Awards

2013 Golden Globe Awards The contenders for this year's Golden Globes Awards, celebrating the best in film and television as voted for by the Hollywood Foreign Press Association, have been announced in Los Angeles.The awards take place on Sunday 13 January. Please place your bits here on... (0 Replies)
Discussion started by: Yoda
0 Replies

4. What is on Your Mind?

Place your bits!! - 2013 Academy Awards

2013 Academy Awards The nominees for the 2013 Academy Awards have been revealed in Los Angeles. The ceremony will take place at the Dolby Theatre in Hollywood, Los Angeles on 24th February. Best film Amour Argo Beasts Of The Southern Wild Django Unchained Les Miserables... (0 Replies)
Discussion started by: Yoda
0 Replies

5. What is on Your Mind?

Place your bits!!! - 2013 Laureus World Sports Awards

2013 Laureus World Sports Awards The Laureus World Sports Awards are awarded annually to sportspeople who have been outstanding during the previous year. The 2013 Laureus World Sports Awards, the premier honours event in the sporting calendar, are to be held in Rio de Janeiro on March 11. ... (0 Replies)
Discussion started by: Yoda
0 Replies

6. What is on Your Mind?

Four More UNIX.COM Achievement Award Badges to Award

Happy New Year! There are currently four UNIX.COM achievement awards up for grabs, as the say. Here they are, in no particular order: The Order of the Raven The Order of the Hippo The Order of the Spider The Order of the Dragon Don't ask me what they mean, or who who will get those... (0 Replies)
Discussion started by: Neo
0 Replies
SVN::Hooks::Generic(3pm)				User Contributed Perl Documentation				  SVN::Hooks::Generic(3pm)

NAME
SVN::Hooks::Generic - Implement generic checks for all Subversion hooks. VERSION
version 1.19 SYNOPSIS
This SVN::Hooks plugin allows you to easily write generic checks for all Subversion standard hooks. It's deprecated. You should use the SVN::Hooks hook defining exported directives instead. This module is configured by the following directive. GENERIC(HOOK => FUNCTION, HOOK => [FUNCTIONS], ...) This directive associates FUNCTION with a specific HOOK. You can make more than one association with a single directive call, or you can use multiple calls to make multiple associations. Moreover, you can associate a hook with a single function or with a list of functions (passing them as elements of an array). All functions associated with a hook will be called in an unspecified order with the same arguments. Each hook must be associated with functions with a specific signature, i.e., the arguments that are passed to the function depends on the hook to which it is associated. The hooks are specified by their standard names. The function signatures are the following: post-commit(SVN::Look) post-lock(repos-path, username) post-revprop-change(SVN::Look, username, property-name, action) post-unlock(repos-path, username) pre-commit(SVN::Look) pre-lock(repos-path, path, username, comment, steal-lock-flag) pre-revprop-change(SVN::Look, username, property-name, action) pre-unlock(repos-path, path, username, lock-token, break-unlock-flag) start-commit(repos-path, username, capabilities) The functions may perform whatever checks they want. If the checks succeed the function must simply return. Otherwise, they must die with a suitable error message, which will be sent back to the user performing the Subversion action which triggered the hook. The sketch below shows how this directive could be used. sub my_start_commit { my ($repo_path, $username, $capabilities) = @_; # ... } sub my_pre_commit { my ($svnlook) = @_; # ... } GENERIC( 'start-commit' => &my_start_commit, 'pre-commit' => &my_pre_commit, ); 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::Generic(3pm)
All times are GMT -4. The time now is 02:12 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy