From: Joey Hess Date: Fri, 18 Jun 2010 16:48:05 +0000 (-0400) Subject: mercurial: Fix buggy getctime code. X-Git-Tag: 3.20100623~43 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2797a659db82dd1a0021dacd005fa80212c41579;p=ikiwiki.git mercurial: Fix buggy getctime code. The file passed to rcs_getctime is already absolute, and it was trying to stick the srcdir on the front. Also, eliminated potentially unsafe shelling. --- diff --git a/IkiWiki/Plugin/mercurial.pm b/IkiWiki/Plugin/mercurial.pm index 34e009c7a..a80bb2da5 100644 --- a/IkiWiki/Plugin/mercurial.pm +++ b/IkiWiki/Plugin/mercurial.pm @@ -236,15 +236,13 @@ sub rcs_diff ($) { sub rcs_getctime ($) { my ($file) = @_; - # XXX filename passes through the shell here, should try to avoid - # that just in case my @cmdline = ("hg", "-R", $config{srcdir}, "log", "-v", - "--style", "default", "$config{srcdir}/$file"); - open (my $out, "@cmdline |"); + "--style", "default", $file); + open (my $out, "-|", @cmdline); - my @log = mercurial_log($out); + my @log = (mercurial_log($out)); - if (length @log < 1) { + if (@log < 1) { return 0; } diff --git a/debian/changelog b/debian/changelog index 0d49df676..516b84063 100644 --- a/debian/changelog +++ b/debian/changelog @@ -23,6 +23,7 @@ ikiwiki (3.20100611) UNRELEASED; urgency=low * attachment: Support Windows paths when taking basename of client-supplied file name. * theme: New plugin, allows easily theming a site via the underlay. + * mercurial: Fix buggy getctime code. -- Joey Hess Fri, 11 Jun 2010 13:39:15 -0400