aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Shevchenko <andy@smile.org.ua>2008-08-20 16:28:44 +0000
committerAndy Shevchenko <andy@smile.org.ua>2008-08-20 16:28:44 +0000
commitc9760a958d6be1d7c5a73c0c0cc7784380acd3b5 (patch)
treec327fe62813d639724ca3196f19b4797111d94fd
parent102893ffcec5a329f41b8e30ec820bdd62b81cec (diff)
downloadrenrot-c9760a958d6be1d7c5a73c0c0cc7784380acd3b5.tar.gz
renrot-c9760a958d6be1d7c5a73c0c0cc7784380acd3b5.tar.bz2
Remove --no-ren-rot-tag-mtm CLI option
git-svn-id: file:///svnroot/renrot/trunk@549 fe2816f4-e837-0410-b10a-f608c9d244a1
-rwxr-xr-xrenrot17
1 files changed, 12 insertions, 5 deletions
diff --git a/renrot b/renrot
index 428c4da..e0740c2 100755
--- a/renrot
+++ b/renrot
@@ -315,17 +315,24 @@ sub fatalmsg {
sub dbgmsg {
my $level = shift;
if ($verbose >= $level) {
- # caller() described at Perl Cookbook 10.4
+ # caller() described in Perl Cookbook 10.4
my $funcname = (caller(1))[3];
$funcname = 'main' if (not defined $funcname);
printColored('debug', "DEBUG[$level]: ", $funcname, "(): ", @_);
}
}
-# debug message on level 3 with EOL
+########################################################################################
+# Usage : ldbg3($msg, ...)
+# Purpose : prints debug message on level 3 with EOL
+# Returns : nothing
+# Parameters : text message without end of line
+# Throws : no exceptions
+# Comments : useful to print command line or configuration option parameters
+# See Also : dbgmsg()
sub ldbg3 {
if ($verbose >= 3) {
- # caller() described at Perl Cookbook 10.4
+ # caller() described in Perl Cookbook 10.4
my $funcname = (caller(1))[3];
$funcname = 'main' if (not defined $funcname);
printColored('debug', "DEBUG[3]: ", $funcname, "(): ", @_, "\n");
@@ -440,7 +447,7 @@ sub getOptions {
"no-rename|norename" => \$noRename,
"no-rotate|norotate" => \$noRotation,
"no-tags|notags" => \$noTags,
- "no-renrot|no-ren-rot-tag-mtm|nochg" => \$noRenRoTagMtm,
+ "no-renrot|nochg" => \$noRenRoTagMtm,
"only-orientation" => \$orientTag,
"quiet|q" => \$quiet,
"rotate-angle|r=i" => \$rotateAngle,
@@ -2533,7 +2540,7 @@ Do not rotate images (default is to rotate according to EXIF data).
Defines whether to set the file's mtime, using DateTimeOriginal tag value.
Use B<--no-mtime> to set it to current time stamp after processing.
-=item B<--no-ren-rot-tag-mtm> or B<--nochg>
+=item B<--no-renrot> or B<--nochg>
Do not rename, rotate, tag and mtime images. It saves files from any changes
while allows to do aggregation, contact sheet generation e.t.c.

Return to:

Send suggestions and report system problems to the System administrator.