Pass array of names of files that have been deleted to needsbuild hook as second parameter, to allow for plugins that needs access to this information earlier than the delete hook.
parent
163fc34db7
commit
c4ebdd6f46
|
@ -570,9 +570,9 @@ sub genfeed ($$$$$@) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($itemtemplate->query(name => "enclosure")) {
|
|
||||||
my $file=$pagesources{$p};
|
my $file=$pagesources{$p};
|
||||||
my $type=pagetype($file);
|
my $type=pagetype($file);
|
||||||
|
if ($itemtemplate->query(name => "enclosure")) {
|
||||||
if (defined $type) {
|
if (defined $type) {
|
||||||
$itemtemplate->param(content => $pcontent);
|
$itemtemplate->param(content => $pcontent);
|
||||||
}
|
}
|
||||||
|
@ -591,6 +591,7 @@ sub genfeed ($$$$$@) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
next unless defined $type;
|
||||||
$itemtemplate->param(content => $pcontent);
|
$itemtemplate->param(content => $pcontent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -760,7 +760,7 @@ sub refresh () {
|
||||||
my ($del, $internal_del)=find_del_files($pages);
|
my ($del, $internal_del)=find_del_files($pages);
|
||||||
my ($changed, $internal_changed)=find_changed($files);
|
my ($changed, $internal_changed)=find_changed($files);
|
||||||
run_hooks(needsbuild => sub {
|
run_hooks(needsbuild => sub {
|
||||||
my $ret=shift->($changed);
|
my $ret=shift->($changed, [@$del, @$internal_del]);
|
||||||
$changed=$ret if ref $ret eq 'ARRAY';
|
$changed=$ret if ref $ret eq 'ARRAY';
|
||||||
});
|
});
|
||||||
my $oldlink_targets=calculate_old_links($changed, $del);
|
my $oldlink_targets=calculate_old_links($changed, $del);
|
||||||
|
|
|
@ -12,6 +12,9 @@ ikiwiki (3.20100832) UNRELEASED; urgency=low
|
||||||
* po: Allow enabling via web setup.
|
* po: Allow enabling via web setup.
|
||||||
* po: Auto-upgrade old format settings to new formats when writing
|
* po: Auto-upgrade old format settings to new formats when writing
|
||||||
setup file.
|
setup file.
|
||||||
|
* Pass array of names of files that have been deleted to needsbuild hook
|
||||||
|
as second parameter, to allow for plugins that needs access to this
|
||||||
|
information earlier than the delete hook.
|
||||||
|
|
||||||
-- Joey Hess <joeyh@debian.org> Tue, 07 Sep 2010 12:08:05 -0400
|
-- Joey Hess <joeyh@debian.org> Tue, 07 Sep 2010 12:08:05 -0400
|
||||||
|
|
||||||
|
|
|
@ -177,10 +177,15 @@ function is passed no values.
|
||||||
|
|
||||||
hook(type => "needsbuild", id => "foo", call => \&needsbuild);
|
hook(type => "needsbuild", id => "foo", call => \&needsbuild);
|
||||||
|
|
||||||
This allows a plugin to manipulate the list of files that need to be
|
This allows a plugin to observe or even manipulate the list of files that
|
||||||
built when the wiki is refreshed. The function is passed a reference to an
|
need to be built when the wiki is refreshed.
|
||||||
array of files that will be rebuilt. It should return an array reference
|
|
||||||
that is a modified version of its input. It can add or remove files from it.
|
As its first parameter, the function is passed a reference to an array of
|
||||||
|
files that will be built. It should return an array reference that is a
|
||||||
|
modified version of its input. It can add or remove files from it.
|
||||||
|
|
||||||
|
The second parameter passed to the function is a reference to an array of
|
||||||
|
files that have been deleted.
|
||||||
|
|
||||||
### scan
|
### scan
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue