return @ret;
} #}}}
+my %preprocessing;
sub preprocess ($$$) { #{{{
my $page=shift; # the page the data comes from
my $destpage=shift; # the page the data will appear in (different for inline)
if (length $escape) {
return "[[$command $params]]";
}
+ elsif ($preprocessing{$page}) {
+ # Avoid loops of preprocessed pages preprocessing
+ # other pages that preprocess them, etc.
+ return "[[$command would cause preprocessing loop]]";
+ }
elsif (exists $hooks{preprocess}{$command}) {
# Note: preserve order of params, some plugins may
# consider it significant.
push @params, $val, '';
}
}
- return $hooks{preprocess}{$command}{call}->(
+ $preprocessing{$page}=1;
+ my $ret=$hooks{preprocess}{$command}{call}->(
@params,
page => $page,
destpage => $destpage,
);
+ delete $preprocessing{$page};
+ return $ret;
}
else {
return "[[$command not processed]]";