]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - IkiWiki/Plugin/img.pm
* Deal better with rebuilds that involve moving files; track and clean up the
[git.ikiwiki.info.git] / IkiWiki / Plugin / img.pm
index 7e167240e0770469025fe18055edf87084243296..b1c9db80c969055edc59227b5c79d83945b7b911 100644 (file)
@@ -10,7 +10,7 @@ use IkiWiki 2.00;
 my %imgdefaults;
 
 sub import { #{{{
-       hook(type => "preprocess", id => "img", call => \&preprocess);
+       hook(type => "preprocess", id => "img", call => \&preprocess, scan => 1);
 } #}}}
 
 sub preprocess (@) { #{{{
@@ -31,19 +31,10 @@ sub preprocess (@) { #{{{
                return '';
        }
 
+       push @{$links{$params{page}}}, $image;
        my $file = bestlink($params{page}, $image);
-       if (! $file) {
-               # TODO: this may not be right, depending on where the file is
-               # created in the end
-               add_depends($params{page}, $image);
 
-               return "[[img ".sprintf(gettext("%s not found"), $image)."]]";
-       }
-       else {
-               add_depends($params{page}, $file);
-       }
-
-       my $dir = IkiWiki::dirname($file);
+       my $dir = $params{page};
        my $base = IkiWiki::basename($file);
 
        eval q{use Image::Magick};
@@ -59,7 +50,7 @@ sub preprocess (@) { #{{{
 
                my $outfile = "$config{destdir}/$dir/${w}x${h}-$base";
                $imglink = "$dir/${w}x${h}-$base";
-                               
+               
                will_render($params{page}, $imglink);
 
                if (-e $outfile && (-M srcfile($file) >= -M $outfile)) {