Your message dated Sat, 15 Aug 2009 23:14:46 +0200
with message-id <[email protected]>
and subject line Re: Bug#541219: ikiwiki: getctime doesn't follow renames when
using git
has caused the Debian Bug report #541219,
regarding ikiwiki: getctime doesn't follow renames when using git
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
541219: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=541219
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: ikiwiki
Version: 3.141592
Severity: normal
ikiwiki is using
my @sha1s = run_or_non('git', 'rev-list', 'HEAD', '--', $file);
in Plugin/git.pm internally, which doesn't follow renames. rev-list
doesn't support tracking renames, so git log has to be used:
my @sha1s = run_or_non('git', 'log', '--format=tformat:%H', '--follow',
'--', $file);
This way, the real creation date of the file is used.
Btw: This is my first bug report to debian, so please forgive me if I
did something silly ;-)
Arne
--- End Message ---
--- Begin Message ---
tags wontfix
thanks
Joey Hess <[email protected]> writes:
> Secondly, look at it from the point of view of someone browsing the
> web. The ctime data is displayed to them as the post time for a blog
> post. Suppose that blog post was first edited in staging/, which
> does not show up on the blog. And was worked on for a month, and
> finally posted by being moved to blog/. Now, would the user
> expect to see "Posted today", or "Posted 1 month ago"? I think the
> former.
Yes, you're right. Making the proposed behaviour optional seems to be
confusing, so I'll try to close this bug.
--- End Message ---