From: Joey Hess Date: Wed, 2 Sep 2009 20:08:18 +0000 (-0400) Subject: minor formatting X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/de7c3aa16ba46adbc3d26e4a5a06e1dcc321fa6c minor formatting --- diff --git a/IkiWiki/Plugin/cvs.pm b/IkiWiki/Plugin/cvs.pm index 4735c0138..9f91c9335 100644 --- a/IkiWiki/Plugin/cvs.pm +++ b/IkiWiki/Plugin/cvs.pm @@ -61,7 +61,7 @@ sub getsetup () { cvs_wrapper => { type => "string", example => "/cvs/wikirepo/CVSROOT/post-commit", - description => "cvs post-commit hook to generate (triggered by CVSROOT/loginfo entry", + description => "cvs post-commit hook to generate (triggered by CVSROOT/loginfo entry)", safe => 0, # file rebuild => 0, }, @@ -131,7 +131,8 @@ sub cvs_shquote_commit ($) { IPC::Cmd::run(command => $cmd, verbose => 0); if ((grep /'$test_message'/, @$stdout_buf) > 0) { return IkiWiki::possibly_foolish_untaint($message); - } else { + } + else { return shell_quote(IkiWiki::possibly_foolish_untaint($message)); } } @@ -242,11 +243,13 @@ sub rcs_add ($) { if (defined($filemime) && $filemime eq 'text/plain') { cvs_runcvs(['add', $file]) || warn("cvs add $file failed\n"); - } else { + } + else { cvs_runcvs(['add', '-kb', $file]) || warn("cvs add binary $file failed\n"); } - } else { + } + else { # directory cvs_runcvs(['add', $file]) || warn("cvs add $file failed\n"); @@ -360,7 +363,8 @@ sub rcs_recentchanges($) { $message[0]->{line}=~/$config{web_commit_regexp}/) { $user=defined $2 ? "$2" : "$3"; $message[0]->{line}=$4; - } else { + } + else { $committype="cvs"; } @@ -370,21 +374,24 @@ sub rcs_recentchanges($) { $line = ; if ($line =~ /^Author: (.*)$/) { $user = $1 unless defined $user && length $user; - } else { + } + else { error "expected Author, got $line"; } $line = ; if ($line =~ /^Date: (.*)$/) { $when = str2time($1, 'UTC'); - } else { + } + else { error "expected Date, got $line"; } $line = ; if ($line =~ /^PatchSet (.*)$/) { $rev = $1; - } else { + } + else { error "expected PatchSet, got $line"; } @@ -422,7 +429,8 @@ sub rcs_diff ($) { if (wantarray) { return @cvsps; - } else { + } + else { return join("", @cvsps); } }