X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/2332b40595774cdc0c3d12573e4b0631c9707624..d06e4c2c3310dbca56110210bf5b89f538731106:/IkiWiki/Plugin/img.pm?ds=inline
diff --git a/IkiWiki/Plugin/img.pm b/IkiWiki/Plugin/img.pm
index 9385f6417..abc7e099a 100644
--- a/IkiWiki/Plugin/img.pm
+++ b/IkiWiki/Plugin/img.pm
@@ -22,16 +22,23 @@ sub preprocess (@) { #{{{
}
my $size = $params{size} || $imgdefaults{$params{page}}->{size} || 'full';
my $alt = $params{alt} || $imgdefaults{$params{page}}->{alt} || '';
+ my $title = $params{title} || $imgdefaults{$params{page}}->{title} || '';
if ($image eq 'defaults') {
$imgdefaults{$params{page}} = {
size => $size,
alt => $alt,
+ title => $title,
};
return '';
}
push @{$links{$params{page}}}, $image;
+ # optimisation: detect scan mode, and avoid generating the image
+ if (! defined wantarray) {
+ return;
+ }
+
my $file = bestlink($params{page}, $image);
my $dir = $params{page};
@@ -99,6 +106,7 @@ sub preprocess (@) { #{{{
my $imgtag='';
@@ -106,7 +114,11 @@ sub preprocess (@) { #{{{
if (! defined $params{link} || lc($params{link}) eq 'yes') {
return ''.$imgtag.'';
}
+ elsif ($params{link} =~ /^\w+:\/\//) {
+ return ''.$imgtag.'';
+ }
elsif (length bestlink($params{page}, $params{link})) {
+ add_depends($params{page}, $params{link});
return htmllink($params{page}, $params{destpage},
$params{link}, linktext => $imgtag,
noimageinline => 1);