Gnus development mailing list
 help / color / mirror / Atom feed
* [PATCH] (gnus-html-schedule-image-fetching): Fetch all images in parallel.
@ 2010-09-18 21:05 Julien Danjou
  2010-09-18 21:11 ` Lars Magne Ingebrigtsen
  2010-09-19  3:06 ` Lars Magne Ingebrigtsen
  0 siblings, 2 replies; 3+ messages in thread
From: Julien Danjou @ 2010-09-18 21:05 UTC (permalink / raw)
  To: ding; +Cc: Julien Danjou

Signed-off-by: Julien Danjou <julien@danjou.info>
---
 lisp/ChangeLog    |    5 +++++
 lisp/gnus-html.el |   46 ++++++++++++++++++++++------------------------
 2 files changed, 27 insertions(+), 24 deletions(-)

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 12a7a07..468f621 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2010-09-18  Julien Danjou  <julien@danjou.info>
+
+	* gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
+	parallel.
+
 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
 	* nnimap.el (nnimap-update-info): When doing partial marks update, get
diff --git a/lisp/gnus-html.el b/lisp/gnus-html.el
index 40b74c2..b2ecb5c 100644
--- a/lisp/gnus-html.el
+++ b/lisp/gnus-html.el
@@ -297,34 +297,32 @@ fit these criteria."
 (defun gnus-html-schedule-image-fetching (buffer images)
   (gnus-message 8 "gnus-html-schedule-image-fetching: buffer %s, images %s"
                 buffer images)
-  (url-retrieve (caar images)
-                'gnus-html-image-fetched
-                (list buffer images)))
+  (dolist (image images)
+    (url-retrieve (car image)
+                  'gnus-html-image-fetched
+                  (list buffer image))))
 
 (defun gnus-html-image-id (url)
   (expand-file-name (sha1 url) gnus-html-cache-directory))
 
-(defun gnus-html-image-fetched (status buffer images)
-  (let ((spec (pop images)))
-    (when (and (buffer-live-p buffer)
-               ;; If the position of the marker is 1, then that
-               ;; means that the text it was in has been deleted;
-               ;; i.e., that the user has selected a different
-               ;; article before the image arrived.
-               (not (= (marker-position (cadr spec)) (point-min))))
-      (let ((file (gnus-html-image-id (car spec))))
-        ;; Search the start of the image data
-        (search-forward "\n\n")
-        ;; Write region (image) silently
-        (write-region (point) (point-max) file nil 1)
-        (kill-buffer)
-        (with-current-buffer buffer
-          (let ((inhibit-read-only t)
-                (string (buffer-substring (cadr spec) (caddr spec))))
-            (delete-region (cadr spec) (caddr spec))
-            (gnus-html-put-image file (cadr spec) string))))
-      (when images
-        (gnus-html-schedule-image-fetching buffer images)))))
+(defun gnus-html-image-fetched (status buffer image)
+  (when (and (buffer-live-p buffer)
+             ;; If the position of the marker is 1, then that
+             ;; means that the text it was in has been deleted;
+             ;; i.e., that the user has selected a different
+             ;; article before the image arrived.
+             (not (= (marker-position (cadr image)) (point-min))))
+    (let ((file (gnus-html-image-id (car image))))
+      ;; Search the start of the image data
+      (search-forward "\n\n")
+      ;; Write region (image) silently
+      (write-region (point) (point-max) file nil 1)
+      (kill-buffer)
+      (with-current-buffer buffer
+        (let ((inhibit-read-only t)
+              (string (buffer-substring (cadr image) (caddr image))))
+          (delete-region (cadr image) (caddr image))
+          (gnus-html-put-image file (cadr image) string))))))
 
 (defun gnus-html-put-image (file point string &optional url alt-text)
   (when (gnus-graphic-display-p)
-- 
1.7.1




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] (gnus-html-schedule-image-fetching): Fetch all images in parallel.
  2010-09-18 21:05 [PATCH] (gnus-html-schedule-image-fetching): Fetch all images in parallel Julien Danjou
@ 2010-09-18 21:11 ` Lars Magne Ingebrigtsen
  2010-09-19  3:06 ` Lars Magne Ingebrigtsen
  1 sibling, 0 replies; 3+ messages in thread
From: Lars Magne Ingebrigtsen @ 2010-09-18 21:11 UTC (permalink / raw)
  To: ding

Julien Danjou <julien@danjou.info> writes:

> +	* gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
> +	parallel.

Thanks; applied.

-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@gnus.org * Lars Magne Ingebrigtsen




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] (gnus-html-schedule-image-fetching): Fetch all images in parallel.
  2010-09-18 21:05 [PATCH] (gnus-html-schedule-image-fetching): Fetch all images in parallel Julien Danjou
  2010-09-18 21:11 ` Lars Magne Ingebrigtsen
@ 2010-09-19  3:06 ` Lars Magne Ingebrigtsen
  1 sibling, 0 replies; 3+ messages in thread
From: Lars Magne Ingebrigtsen @ 2010-09-19  3:06 UTC (permalink / raw)
  To: ding

Julien Danjou <julien@danjou.info> writes:

> +	* gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
> +	parallel.

I've read a few Gwene groups with this now, and it really makes image
download snappy and pleasant.

-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@gnus.org * Lars Magne Ingebrigtsen




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-09-19  3:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-18 21:05 [PATCH] (gnus-html-schedule-image-fetching): Fetch all images in parallel Julien Danjou
2010-09-18 21:11 ` Lars Magne Ingebrigtsen
2010-09-19  3:06 ` Lars Magne Ingebrigtsen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).