diff options
author | tschwinge <tschwinge@web> | 2010-06-08 09:23:05 +0000 |
---|---|---|
committer | Joey Hess <joey@finch.kitenet.net> | 2010-06-08 09:23:05 +0000 |
commit | 2513f0ea6b65e1b866c01647454062ceb6bbfb7d (patch) | |
tree | a3aa0e8da35404177800ea20d061ee17ac2c2fcf /doc/bugs | |
parent | 9dd91b393da6fa4aa48eb8e7d722afcd28de4690 (diff) | |
download | ikiwiki-2513f0ea6b65e1b866c01647454062ceb6bbfb7d.tar ikiwiki-2513f0ea6b65e1b866c01647454062ceb6bbfb7d.tar.gz |
File issue.
Diffstat (limited to 'doc/bugs')
-rw-r--r-- | doc/bugs/pagemtime_in_refresh_mode.mdwn | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/bugs/pagemtime_in_refresh_mode.mdwn b/doc/bugs/pagemtime_in_refresh_mode.mdwn new file mode 100644 index 000000000..97146f805 --- /dev/null +++ b/doc/bugs/pagemtime_in_refresh_mode.mdwn @@ -0,0 +1,14 @@ +I'd like a way to always ask the RCS (Git) to update a file's mtime in +refresh mode. This is currently only done on the first build, and later +for `--gettime --rebuild`. But always rebuilding is too heavy-weight for +this use-case. My options are to either manually set the mtime before +refreshing, or to have ikiwiki do it at command. I used to do the +former, but would now like the latter, as ikiwiki now generally does this +timestamp handling. + +From a quick look, the code in `IkiWiki/Render.pm:find_new_files` is +relevant: `if (! $pagemtime{$page}) { [...]`. + +How would you like to tackle this? + +--[[tschwinge]] |