Put recent changes in the transient underlay
parent
44b0cea85f
commit
44abf016b3
|
@ -16,6 +16,8 @@ sub import {
|
||||||
hook(type => "sessioncgi", id => "recentchanges", call => \&sessioncgi);
|
hook(type => "sessioncgi", id => "recentchanges", call => \&sessioncgi);
|
||||||
# Load goto to fix up links from recentchanges
|
# Load goto to fix up links from recentchanges
|
||||||
IkiWiki::loadplugin("goto");
|
IkiWiki::loadplugin("goto");
|
||||||
|
# ... and transient as somewhere to put our internal pages
|
||||||
|
IkiWiki::loadplugin("transient");
|
||||||
}
|
}
|
||||||
|
|
||||||
sub getsetup () {
|
sub getsetup () {
|
||||||
|
@ -57,6 +59,7 @@ sub refresh ($) {
|
||||||
foreach my $page (keys %pagesources) {
|
foreach my $page (keys %pagesources) {
|
||||||
if ($pagesources{$page} =~ /\._change$/ && ! $seen{$page}) {
|
if ($pagesources{$page} =~ /\._change$/ && ! $seen{$page}) {
|
||||||
unlink($config{srcdir}.'/'.$pagesources{$page});
|
unlink($config{srcdir}.'/'.$pagesources{$page});
|
||||||
|
unlink($IkiWiki::Plugin::transient::transientdir.'/'.$pagesources{$page});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -234,8 +237,8 @@ sub store ($$$) {
|
||||||
});
|
});
|
||||||
|
|
||||||
my $file=$page."._change";
|
my $file=$page."._change";
|
||||||
writefile($file, $config{srcdir}, $template->output);
|
writefile($file, $IkiWiki::Plugin::transient::transientdir, $template->output);
|
||||||
utime $change->{when}, $change->{when}, "$config{srcdir}/$file";
|
utime $change->{when}, $change->{when}, $IkiWiki::Plugin::transient::transientdir.'/'.$file;
|
||||||
|
|
||||||
return $page;
|
return $page;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue