Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

svn::svnlook(3pm) [debian man page]

SVN::SVNLook(3pm)					User Contributed Perl Documentation					 SVN::SVNLook(3pm)

NAME
SVN::SVNLook - Perl wrapper to the svnlook command. SYNOPSIS
use SVN::SVNLook; my $revision = 1; my $svnlook = SVN::SVNLook->new(repo => 'repo url', cmd => 'path to svn look'); my ($author,$date,$logmessage) = $svnlook->info(revision => $revision); print "Author $author "; print "Date $date "; print "LogMessage $logmessage "; DESCRIPTION
SVN::SVNLook runs the command line client. This module was created to make adding hooks script easier to manipulate. METHODs youngest youngest (); Perform the youngest command on the repository. Returns the revision number of the most recent revision as a scalar. info info (revision=>$revision); Perform the info command, for a given revision or transaction using named parameters, or a single parameter will be assumed to mean revision for backwards compatibility. The information returned is an array containing author, date, and log message. If no $revision is specified, info for the youngest revision is returned. author author (revision=>$revision); Perform the author command, for a given revision or transaction using named parameters or a single parameter will be assumed to mean revision for backwards compatibility. The information returned is the author message. If no $revision or transaction is specified, author for the youngest revision is returned. dirschanged dirschanged (revision=>$revision) Performs the dirs-changed command, for a given revision or transaction using named parameters, or a single parameter will be assumed to mean revision for backwards compatibility. This method returns a boolean and an array reference. fileschanged fileschanged (revision=>$revision) Performs the changed command, for a given revision or transaction using named parameters or a single parameter will be assumed to mean revision for backwards compatibility this method returns 3 array references added, deleted and modified. diff diff (revision=>$revision) Performs the diff command, for a given revision or transaction using named parameters or a single parameter will be assumed to mean revision for backwards compatability this method returns a hash reference, with each file being the key and value being the diff info. AUTHOR
Salvatore E ScottoDiLuzio, <sal.scotto@gmail.com> Contributions by Kevin Semande COPYRIGHT
Copyright 2005 Salvatore E. ScottoDiLuzio. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2009-12-10 SVN::SVNLook(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