aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/recentchanges.pm
diff options
context:
space:
mode:
authorSimon McVittie <smcv@debian.org>2010-12-25 23:18:10 +0000
committerSimon McVittie <smcv@debian.org>2011-01-07 20:13:01 +0000
commit44abf016b3020d484c36d787fb52fd6f498d63b8 (patch)
tree171604e9ef9c33664aec3b4448cc6339609cefc1 /IkiWiki/Plugin/recentchanges.pm
parent44b0cea85f1641f33ccb305f9da6f96e812b84e9 (diff)
downloadikiwiki-44abf016b3020d484c36d787fb52fd6f498d63b8.tar
ikiwiki-44abf016b3020d484c36d787fb52fd6f498d63b8.tar.gz
Put recent changes in the transient underlay
Diffstat (limited to 'IkiWiki/Plugin/recentchanges.pm')
-rw-r--r--IkiWiki/Plugin/recentchanges.pm7
1 files changed, 5 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/recentchanges.pm b/IkiWiki/Plugin/recentchanges.pm
index d6292c3f2..c3296d9e8 100644
--- a/IkiWiki/Plugin/recentchanges.pm
+++ b/IkiWiki/Plugin/recentchanges.pm
@@ -16,6 +16,8 @@ sub import {
hook(type => "sessioncgi", id => "recentchanges", call => \&sessioncgi);
# Load goto to fix up links from recentchanges
IkiWiki::loadplugin("goto");
+ # ... and transient as somewhere to put our internal pages
+ IkiWiki::loadplugin("transient");
}
sub getsetup () {
@@ -57,6 +59,7 @@ sub refresh ($) {
foreach my $page (keys %pagesources) {
if ($pagesources{$page} =~ /\._change$/ && ! $seen{$page}) {
unlink($config{srcdir}.'/'.$pagesources{$page});
+ unlink($IkiWiki::Plugin::transient::transientdir.'/'.$pagesources{$page});
}
}
}
@@ -234,8 +237,8 @@ sub store ($$$) {
});
my $file=$page."._change";
- writefile($file, $config{srcdir}, $template->output);
- utime $change->{when}, $change->{when}, "$config{srcdir}/$file";
+ writefile($file, $IkiWiki::Plugin::transient::transientdir, $template->output);
+ utime $change->{when}, $change->{when}, $IkiWiki::Plugin::transient::transientdir.'/'.$file;
return $page;
}