はてダラ 0.4.3 は blogmap の ishinao さんのパッチが取り込まれて画像アップに対応([id:hyuki:20040824#p4])。というわけで試してみます。季節はずれの雪見猫(最近の写真がなくて…)。
お、いけたいけた。でも、.txt だけ更新しても画像送り直してるのね。逆に画像だけ更新した時は送られない。とりあえず前者に対するパッチ。
--- hw.pl-0.4.3 Tue Aug 24 21:00:08 2004
+++ hw.pl Tue Aug 24 21:24:56 2004
@@ -548,7 +548,12 @@
for my $ext ('jpg', 'png', 'gif') {
my $imgfile = "$path$base.$ext";
if (-e $imgfile) {
- print_debug("find_image_file: $imgfile");
+ if (-e($touch_file) and (-M($imgfile) > -M($touch_file))) {
+ print_debug("find_image_file: skip $imgfile (not updated).");
+ next;
+ } else {
+ print_debug("find_image_file: $imgfile");
+ }
return $imgfile;
}
}