X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/bb0cbecbc377c3966f177b210fcfabe487d0452c..8a6a0673339c00480d49513eb0e3db83a9c7ce9c:/IkiWiki/Plugin/img.pm diff --git a/IkiWiki/Plugin/img.pm b/IkiWiki/Plugin/img.pm index 7e167240e..cff9dabf0 100644 --- a/IkiWiki/Plugin/img.pm +++ b/IkiWiki/Plugin/img.pm @@ -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)) { @@ -107,7 +98,10 @@ sub preprocess (@) { #{{{ return ''.$alt.''; + '" height="'.$im->Get("height").'"'. + (exists $params{class} ? ' class="'.$params{class}.'"' : ''). + (exists $params{id} ? ' id="'.$params{id}.'"' : ''). + ' />'; } #}}} 1