X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/ee1ad53c4c2710aa7ded61bdc56f3a8cce514f22..8489e68916eabf0ce09242e4dac66b9f646d46c4:/IkiWiki/Plugin/img.pm diff --git a/IkiWiki/Plugin/img.pm b/IkiWiki/Plugin/img.pm index 7226231a0..c4e4a6f22 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,11 +31,10 @@ sub preprocess (@) { #{{{ return ''; } - add_depends($params{page}, $image); - my $file = bestlink($params{page}, $image) - || return "[[img ".sprintf(gettext("%s not found"), $image)."]]"; + push @{$links{$params{page}}}, $image; + my $file = bestlink($params{page}, $image); - my $dir = IkiWiki::dirname($file); + my $dir = $params{page}; my $base = IkiWiki::basename($file); eval q{use Image::Magick}; @@ -51,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)) { @@ -63,7 +62,7 @@ sub preprocess (@) { #{{{ return "[[img ".sprintf(gettext("failed to read %s: %s"), $file, $r)."]]" if $r; $r = $im->Resize(geometry => "${w}x${h}"); - return "[[img ".sprinftf(gettext("failed to resize: %s"), $r)."]]" if $r; + return "[[img ".sprintf(gettext("failed to resize: %s"), $r)."]]" if $r; # don't actually write file in preview mode if (! $params{preview}) { @@ -93,9 +92,23 @@ sub preprocess (@) { #{{{ $imgurl="$config{url}/$imglink"; } - return 'Get("height"))) { + return "[[img ".sprintf(gettext("failed to determine size of image %s"), $file)."]]"; + } + + my $imgtag=''.$alt.''; + '" height="'.$im->Get("height").'"'. + (exists $params{class} ? ' class="'.$params{class}.'"' : ''). + (exists $params{id} ? ' id="'.$params{id}.'"' : ''). + ' />'; + + if (! defined $params{link} || lc($params{link}) eq 'yes') { + return ''.$imgtag.''; + } + else { + return $imgtag; + } } #}}} 1