X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/1202b4fd7b305b223d64f9e9f24424b72c81ab6d..b9dc3e84a512eecf66b2b3e73be39530b588f49c:/IkiWiki/Plugin/img.pm?ds=inline diff --git a/IkiWiki/Plugin/img.pm b/IkiWiki/Plugin/img.pm index 9135c688f..7226231a0 100644 --- a/IkiWiki/Plugin/img.pm +++ b/IkiWiki/Plugin/img.pm @@ -5,7 +5,7 @@ package IkiWiki::Plugin::img; use warnings; use strict; -use IkiWiki; +use IkiWiki 2.00; my %imgdefaults; @@ -32,7 +32,8 @@ sub preprocess (@) { #{{{ } add_depends($params{page}, $image); - my $file = bestlink($params{page}, $image) || return "[[img $image not found]]"; + my $file = bestlink($params{page}, $image) + || return "[[img ".sprintf(gettext("%s not found"), $image)."]]"; my $dir = IkiWiki::dirname($file); my $base = IkiWiki::basename($file); @@ -45,25 +46,27 @@ sub preprocess (@) { #{{{ if ($size ne 'full') { my ($w, $h) = ($size =~ /^(\d+)x(\d+)$/); - return "[[img bad size \"$size\"]]" unless (defined $w && defined $h); + return "[[img ".sprintf(gettext('bad size "%s"'), $size)."]]" + unless (defined $w && defined $h); 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)) { $r = $im->Read($outfile); - return "[[img failed to read $outfile: $r]]" if $r; + return "[[img ".sprintf(gettext("failed to read %s: %s"), $outfile, $r)."]]" if $r; } else { $r = $im->Read(srcfile($file)); - return "[[img failed to read $file: $r]]" if $r; + return "[[img ".sprintf(gettext("failed to read %s: %s"), $file, $r)."]]" if $r; $r = $im->Resize(geometry => "${w}x${h}"); - return "[[img failed to resize: $r]]" if $r; + return "[[img ".sprinftf(gettext("failed to resize: %s"), $r)."]]" if $r; # don't actually write file in preview mode if (! $params{preview}) { - will_render($params{page}, $imglink); my @blob = $im->ImageToBlob(); writefile($imglink, $config{destdir}, $blob[0], 1); } @@ -74,7 +77,7 @@ sub preprocess (@) { #{{{ } else { $r = $im->Read(srcfile($file)); - return "[[img failed to read $file: $r]]" if $r; + return "[[img ".sprintf(gettext("failed to read %s: %s"), $file, $r)."]]" if $r; $imglink = $file; } @@ -82,8 +85,8 @@ sub preprocess (@) { #{{{ my ($fileurl, $imgurl); if (! $params{preview}) { - $fileurl=IkiWiki::abs2rel($file, IkiWiki::dirname($params{destpage})); - $imgurl=IkiWiki::abs2rel($imglink, IkiWiki::dirname($params{destpage})); + $fileurl=urlto($file, $params{destpage}); + $imgurl=urlto($imglink, $params{destpage}); } else { $fileurl="$config{url}/$file";