Subject: | Remove double quotes from the log message |
I've noticed that some older revisions of my wiki pages aren't parsed
correctly due to double quotes surrounding the CVS commit message.
The attached patch removes any double quotes before trying to parse the
commit message.
Subject: | handle-quotes.patch |
--- Kwiki/Archive/Cvs.pm.orig 2008-01-14 21:33:58.000000000 +1300
+++ Kwiki/Archive/Cvs.pm 2008-01-14 21:35:07.000000000 +1300
@@ -93,6 +93,7 @@
my $msg = $3;
chomp $msg;
+ $msg =~ s/"//g;
my ($edit_by, $edit_time, $edit_unixtime) = split ',', $msg;
$edit_time ||= $2;
$edit_unixtime ||= 0;