Skip Menu |

This queue is for tickets about the Kwiki-Archive-Cvs CPAN distribution.

Report information
The Basics
Id: 32306
Status: resolved
Priority: 0/
Queue: Kwiki-Archive-Cvs

People
Owner: Nobody in particular
Requestors: andrew [...] etc.gen.nz
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



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;
Thanks, applied.