X-Git-Url: https://scripts.mit.edu/gitweb/www/ikiwiki.git/blobdiff_plain/d724a26754b3018ff6b119bb016c5ba261a51d0e..8709ec24825f29359c8f77d363c4126bf9c0742b:/IkiWiki/Plugin/img.pm diff --git a/IkiWiki/Plugin/img.pm b/IkiWiki/Plugin/img.pm index 42de81bd1..66cc08530 100644 --- a/IkiWiki/Plugin/img.pm +++ b/IkiWiki/Plugin/img.pm @@ -10,9 +10,18 @@ use IkiWiki 2.00; my %imgdefaults; sub import { #{{{ + hook(type => "getsetup", id => "img", call => \&getsetup); hook(type => "preprocess", id => "img", call => \&preprocess, scan => 1); } #}}} +sub getsetup () { #{{{ + return + plugin => { + safe => 1, + rebuild => undef, + }, +} #}}} + sub preprocess (@) { #{{{ my ($image) = $_[0] =~ /$config{wiki_file_regexp}/; # untaint my %params=@_; @@ -42,8 +51,8 @@ sub preprocess (@) { #{{{ my $file = bestlink($params{page}, $image); my $srcfile = srcfile($file, 1); - if (! defined $srcfile) { - error(sprintf(gettext("%s not found"), $image)); + if (! length $file || ! defined $srcfile) { + return htmllink($params{page}, $params{destpage}, $image); } my $dir = $params{page};