Photos
Blog
Projects
vanrenterghem.biz
projects
/
git.ikiwiki.info.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
(no commit message)
[git.ikiwiki.info.git]
/
IkiWiki
/
Plugin
/
pinger.pm
diff --git
a/IkiWiki/Plugin/pinger.pm
b/IkiWiki/Plugin/pinger.pm
index 4a808866164d7e2f1e6e185b97b37e50cf0c307b..932619496c3d3c7634cb1a550a920dae106140a2 100644
(file)
--- a/
IkiWiki/Plugin/pinger.pm
+++ b/
IkiWiki/Plugin/pinger.pm
@@
-45,6
+45,7
@@
sub needsbuild (@) {
}
}
}
}
}
}
+ return $needsbuild;
}
sub preprocess (@) {
}
sub preprocess (@) {
@@
-105,8
+106,10
@@
sub ping {
# only ping when a page was changed, so a ping loop
# will still be avoided.
next if $url=~/^\Q$config{cgiurl}\E/;
# only ping when a page was changed, so a ping loop
# will still be avoided.
next if $url=~/^\Q$config{cgiurl}\E/;
+ my $local_cgiurl = IkiWiki::cgiurl();
+ next if $url=~/^\Q$local_cgiurl\E/;
- $ua->
head
($url);
+ $ua->
get
($url);
}
exit 0;
}
exit 0;