summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/aggregate.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-07-14 22:42:22 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-07-14 22:42:22 -0400
commit3256522bdaf2ca7c678041a19a4b97bd7dc57c90 (patch)
treea9fdd3b36ea778766d1789a8cc740f7ed48909ed /IkiWiki/Plugin/aggregate.pm
parenta8daf61b7d3c38e95ba8a168cdba3dfbce750e16 (diff)
parentb29d11b3c67533ca7addadb40a818a88cf6b8a84 (diff)
Merge commit 'smcv/aggregateinternal' into aggregateinternal
Conflicts: doc/plugins/aggregate.mdwn
Diffstat (limited to 'IkiWiki/Plugin/aggregate.pm')
-rw-r--r--IkiWiki/Plugin/aggregate.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/aggregate.pm b/IkiWiki/Plugin/aggregate.pm
index 2fcdec9e7..f648a3f99 100644
--- a/IkiWiki/Plugin/aggregate.pm
+++ b/IkiWiki/Plugin/aggregate.pm
@@ -132,9 +132,11 @@ sub migrate_to_internal { #{{{
foreach my $data (values %guids) {
next unless $data->{page};
+ next if $data->{expired};
$config{aggregateinternal} = 0;
my $oldname = pagefile($data->{page});
+ my $oldoutput = $config{destdir}."/".IkiWiki::htmlpage($data->{page});
$config{aggregateinternal} = 1;
my $newname = pagefile($data->{page});
@@ -154,6 +156,10 @@ sub migrate_to_internal { #{{{
else {
debug("$oldname not found");
}
+ if (-e $oldoutput) {
+ debug("removing output file $oldoutput");
+ unlink($oldoutput) || error ("$!");
+ }
}
savestate();