aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2021-02-02 15:40:27 +0000
committerbptato <nincsnevem662@gmail.com>2021-02-02 15:40:27 +0000
commitf88e49826dc45f5852d678cb268fc595cd848b1b (patch)
treeb4ab485b5e4cd951ed5d1b7471cee9d832ce3195
parentsixel and osc5379 image display protocols can be chosen in options (diff)
downloadw3m-f88e49826dc45f5852d678cb268fc595cd848b1b.tar.gz
w3m-f88e49826dc45f5852d678cb268fc595cd848b1b.zip
Avoid having external programs download images
-rw-r--r--image.c41
-rw-r--r--rc.c2
2 files changed, 28 insertions, 15 deletions
diff --git a/image.c b/image.c
index 7fa3d43..6fc79a6 100644
--- a/image.c
+++ b/image.c
@@ -214,20 +214,27 @@ drawImage()
i = &terminal_image[j];
if (enable_inline_image) {
- #if 0
- fprintf(stderr,"file %s x %d y %d w %d h %d sx %d sy %d sw %d sh %d (ppc %d ppl %d)\n",
- ((enable_inline_image == 2 || getenv("WINDOWID")) &&
- i->cache->touch) ? i->cache->file : i->cache->url,
- i->x, i->y,
- i->cache->width > 0 ? i->cache->width : 0,
- i->cache->height > 0 ? i->cache->height : 0,
- i->sx, i->sy, i->width, i->height,
- pixel_per_char_i, pixel_per_line_i);
- #endif
- char *url = ((enable_inline_image == INLINE_IMG_SIXEL || getenv("WINDOWID")) &&
- /* XXX I don't know why but sometimes i->cache->file doesn't exist. */
- i->cache->touch && stat(i->cache->file,&st) == 0) ?
- /* local */ i->cache->file : /* remote */ i->cache->url;
+#if 0
+ if(stat(i->cache->file, &st)) {
+ fprintf(stderr,"file %s x %d y %d w %d h %d sx %d sy %d sw %d sh %d (ppc %d ppl %d)\n",
+ ((enable_inline_image == 2 || getenv("WINDOWID")) &&
+ i->cache->touch) ? i->cache->file : i->cache->url,
+ i->x, i->y,
+ i->cache->width > 0 ? i->cache->width : 0,
+ i->cache->height > 0 ? i->cache->height : 0,
+ i->sx, i->sy, i->width, i->height,
+ pixel_per_char_i, pixel_per_line_i);
+ }
+#endif
+
+ /*
+ * So this shouldn't ever happen, but if it does then at least let's
+ * not have external programs fetch images from the Internet...
+ */
+ if (!i->cache->touch || stat(i->cache->file,&st))
+ return;
+
+ char *url = i->cache->file;
int x = i->x / pixel_per_char_i;
int y = i->y / pixel_per_line_i;
@@ -474,7 +481,10 @@ loadImage(Buffer *buf, int flag)
*/
cache->pid = 0;
}
+ /*TODO I'm pretty sure this can be accessed again when the buffer isn't
+ * discarded. not sure though
unlink(cache->touch);
+ */
image_cache[i] = NULL;
}
@@ -547,8 +557,11 @@ loadImage(Buffer *buf, int flag)
setup_child(FALSE, 0, -1);
image_source = cache->file;
b = loadGeneralFile(cache->url, cache->current, NULL, 0, NULL);
+ /* TODO this apparently messes up stuff but why? */
+#if 0
if (!b || !b->real_type || strncasecmp(b->real_type, "image/", 6))
unlink(cache->file);
+#endif
#if defined(HAVE_SYMLINK) && defined(HAVE_LSTAT)
symlink(cache->file, cache->touch);
#else
diff --git a/rc.c b/rc.c
index 656f83a..d015d31 100644
--- a/rc.c
+++ b/rc.c
@@ -367,7 +367,7 @@ static struct sel_c graphic_char_str[] = {
#ifdef USE_IMAGE
static struct sel_c inlineimgstr[] = {
{N_S(INLINE_IMG_NONE), N_("none")},
- {N_S(INLINE_IMG_OSC5379), N_("mlterm osc 5379")},
+ {N_S(INLINE_IMG_OSC5379), N_("mlterm")},
{N_S(INLINE_IMG_SIXEL), N_("sixel")},
{0, NULL, NULL}
};