merge from no gnus
[gnus] / lisp / shr.el
1 ;;; shr.el --- Simple HTML Renderer
2
3 ;; Copyright (C) 2010-2012 Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Keywords: html
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24
25 ;; This package takes a HTML parse tree (as provided by
26 ;; libxml-parse-html-region) and renders it in the current buffer.  It
27 ;; does not do CSS, JavaScript or anything advanced: It's geared
28 ;; towards rendering typical short snippets of HTML, like what you'd
29 ;; find in HTML email and the like.
30
31 ;;; Code:
32
33 (eval-when-compile (require 'cl))
34 (require 'browse-url)
35
36 (defgroup shr nil
37   "Simple HTML Renderer"
38   :version "24.1"
39   :group 'mail)
40
41 (defcustom shr-max-image-proportion 0.9
42   "How big pictures displayed are in relation to the window they're in.
43 A value of 0.7 means that they are allowed to take up 70% of the
44 width and height of the window.  If they are larger than this,
45 and Emacs supports it, then the images will be rescaled down to
46 fit these criteria."
47   :version "24.1"
48   :group 'shr
49   :type 'float)
50
51 (defcustom shr-blocked-images nil
52   "Images that have URLs matching this regexp will be blocked."
53   :version "24.1"
54   :group 'shr
55   :type 'regexp)
56
57 (defcustom shr-table-horizontal-line ?\s
58   "Character used to draw horizontal table lines."
59   :group 'shr
60   :type 'character)
61
62 (defcustom shr-table-vertical-line ?\s
63   "Character used to draw vertical table lines."
64   :group 'shr
65   :type 'character)
66
67 (defcustom shr-table-corner ?\s
68   "Character used to draw table corners."
69   :group 'shr
70   :type 'character)
71
72 (defcustom shr-hr-line ?-
73   "Character used to draw hr lines."
74   :group 'shr
75   :type 'character)
76
77 (defcustom shr-width fill-column
78   "Frame width to use for rendering.
79 May either be an integer specifying a fixed width in characters,
80 or nil, meaning that the full width of the window should be
81 used."
82   :type '(choice (integer :tag "Fixed width in characters")
83                  (const   :tag "Use the width of the window" nil))
84   :group 'shr)
85
86 (defvar shr-content-function nil
87   "If bound, this should be a function that will return the content.
88 This is used for cid: URLs, and the function is called with the
89 cid: URL as the argument.")
90
91 (defvar shr-put-image-function 'shr-put-image
92   "Function called to put image and alt string.")
93
94 (defface shr-strike-through '((t (:strike-through t)))
95   "Font for <s> elements."
96   :group 'shr)
97
98 (defface shr-link
99   '((t (:inherit link)))
100   "Font for link elements."
101   :group 'shr)
102
103 ;;; Internal variables.
104
105 (defvar shr-folding-mode nil)
106 (defvar shr-state nil)
107 (defvar shr-start nil)
108 (defvar shr-indentation 0)
109 (defvar shr-inhibit-images nil)
110 (defvar shr-list-mode nil)
111 (defvar shr-content-cache nil)
112 (defvar shr-kinsoku-shorten nil)
113 (defvar shr-table-depth 0)
114 (defvar shr-stylesheet nil)
115 (defvar shr-base nil)
116 (defvar shr-ignore-cache nil)
117
118 (defvar shr-map
119   (let ((map (make-sparse-keymap)))
120     (define-key map "a" 'shr-show-alt-text)
121     (define-key map "i" 'shr-browse-image)
122     (define-key map "z" 'shr-zoom-image)
123     (define-key map "I" 'shr-insert-image)
124     (define-key map "u" 'shr-copy-url)
125     (define-key map "v" 'shr-browse-url)
126     (define-key map "o" 'shr-save-contents)
127     (define-key map "\r" 'shr-browse-url)
128     map))
129
130 ;; Public functions and commands.
131
132 (defun shr-visit-file (file)
133   "Parse FILE as an HTML document, and render it in a new buffer."
134   (interactive "fHTML file name: ")
135   (pop-to-buffer "*html*")
136   (erase-buffer)
137   (shr-insert-document
138    (with-temp-buffer
139      (insert-file-contents file)
140      (libxml-parse-html-region (point-min) (point-max))))
141   (goto-char (point-min)))
142
143 ;;;###autoload
144 (defun shr-insert-document (dom)
145   "Render the parsed document DOM into the current buffer.
146 DOM should be a parse tree as generated by
147 `libxml-parse-html-region' or similar."
148   (setq shr-content-cache nil)
149   (let ((start (point))
150         (shr-state nil)
151         (shr-start nil)
152         (shr-base nil)
153         (shr-width (or shr-width (window-width))))
154     (shr-descend (shr-transform-dom dom))
155     (shr-remove-trailing-whitespace start (point))))
156
157 (defun shr-remove-trailing-whitespace (start end)
158   (let ((width (window-width)))
159     (save-restriction
160       (narrow-to-region start end)
161       (goto-char start)
162       (while (not (eobp))
163         (end-of-line)
164         (when (> (shr-previous-newline-padding-width (current-column)) width)
165           (dolist (overlay (overlays-at (point)))
166             (when (overlay-get overlay 'before-string)
167               (overlay-put overlay 'before-string nil))))
168         (forward-line 1)))))
169
170 (defun shr-copy-url ()
171   "Copy the URL under point to the kill ring.
172 If called twice, then try to fetch the URL and see whether it
173 redirects somewhere else."
174   (interactive)
175   (let ((url (get-text-property (point) 'shr-url)))
176     (cond
177      ((not url)
178       (message "No URL under point"))
179      ;; Resolve redirected URLs.
180      ((equal url (car kill-ring))
181       (url-retrieve
182        url
183        (lambda (a)
184          (when (and (consp a)
185                     (eq (car a) :redirect))
186            (with-temp-buffer
187              (insert (cadr a))
188              (goto-char (point-min))
189              ;; Remove common tracking junk from the URL.
190              (when (re-search-forward ".utm_.*" nil t)
191                (replace-match "" t t))
192              (message "Copied %s" (buffer-string))
193              (copy-region-as-kill (point-min) (point-max)))))
194        nil t))
195      ;; Copy the URL to the kill ring.
196      (t
197       (with-temp-buffer
198         (insert url)
199         (copy-region-as-kill (point-min) (point-max))
200         (message "Copied %s" url))))))
201
202 (defun shr-show-alt-text ()
203   "Show the ALT text of the image under point."
204   (interactive)
205   (let ((text (get-text-property (point) 'shr-alt)))
206     (if (not text)
207         (message "No image under point")
208       (message "%s" text))))
209
210 (defun shr-browse-image (&optional copy-url)
211   "Browse the image under point.
212 If COPY-URL (the prefix if called interactively) is non-nil, copy
213 the URL of the image to the kill buffer instead."
214   (interactive "P")
215   (let ((url (get-text-property (point) 'image-url)))
216     (cond
217      ((not url)
218       (message "No image under point"))
219      (copy-url
220       (with-temp-buffer
221         (insert url)
222         (copy-region-as-kill (point-min) (point-max))
223         (message "Copied %s" url)))
224      (t
225       (message "Browsing %s..." url)
226       (browse-url url)))))
227
228 (defun shr-insert-image ()
229   "Insert the image under point into the buffer."
230   (interactive)
231   (let ((url (get-text-property (point) 'image-url)))
232     (if (not url)
233         (message "No image under point")
234       (message "Inserting %s..." url)
235       (url-retrieve url 'shr-image-fetched
236                     (list (current-buffer) (1- (point)) (point-marker))
237                     t t))))
238
239 (defun shr-zoom-image ()
240   "Toggle the image size.
241 The size will be rotated between the default size, the original
242 size, and full-buffer size."
243   (interactive)
244   (let ((url (get-text-property (point) 'image-url))
245         (size (get-text-property (point) 'image-size))
246         (buffer-read-only nil))
247     (if (not url)
248         (message "No image under point")
249       ;; Delete the old picture.
250       (while (get-text-property (point) 'image-url)
251         (forward-char -1))
252       (forward-char 1)
253       (let ((start (point)))
254         (while (get-text-property (point) 'image-url)
255           (forward-char 1))
256         (forward-char -1)
257         (put-text-property start (point) 'display nil)
258         (when (> (- (point) start) 2)
259           (delete-region start (1- (point)))))
260       (message "Inserting %s..." url)
261       (url-retrieve url 'shr-image-fetched
262                     (list (current-buffer) (1- (point)) (point-marker)
263                           (list (cons 'size
264                                       (cond ((or (eq size 'default)
265                                                  (null size))
266                                              'original)
267                                             ((eq size 'original)
268                                              'full)
269                                             ((eq size 'full)
270                                              'default)))))
271                     t))))
272
273 ;;; Utility functions.
274
275 (defun shr-transform-dom (dom)
276   (let ((result (list (pop dom))))
277     (dolist (arg (pop dom))
278       (push (cons (intern (concat ":" (symbol-name (car arg))) obarray)
279                   (cdr arg))
280             result))
281     (dolist (sub dom)
282       (if (stringp sub)
283           (push (cons 'text sub) result)
284         (push (shr-transform-dom sub) result)))
285     (nreverse result)))
286
287 (defun shr-descend (dom)
288   (let ((function (intern (concat "shr-tag-" (symbol-name (car dom))) obarray))
289         (style (cdr (assq :style (cdr dom))))
290         (shr-stylesheet shr-stylesheet)
291         (start (point)))
292     (when style
293       (if (string-match "color" style)
294           (setq shr-stylesheet (nconc (shr-parse-style style)
295                                       shr-stylesheet))
296         (setq style nil)))
297     (if (fboundp function)
298         (funcall function (cdr dom))
299       (shr-generic (cdr dom)))
300     ;; If style is set, then this node has set the color.
301     (when style
302       (shr-colorize-region start (point)
303                            (cdr (assq 'color shr-stylesheet))
304                            (cdr (assq 'background-color shr-stylesheet))))))
305
306 (defun shr-generic (cont)
307   (dolist (sub cont)
308     (cond
309      ((eq (car sub) 'text)
310       (shr-insert (cdr sub)))
311      ((listp (cdr sub))
312       (shr-descend sub)))))
313
314 (defmacro shr-char-breakable-p (char)
315   "Return non-nil if a line can be broken before and after CHAR."
316   `(aref fill-find-break-point-function-table ,char))
317 (defmacro shr-char-nospace-p (char)
318   "Return non-nil if no space is required before and after CHAR."
319   `(aref fill-nospace-between-words-table ,char))
320
321 ;; KINSOKU is a Japanese word meaning a rule that should not be violated.
322 ;; In Emacs, it is a term used for characters, e.g. punctuation marks,
323 ;; parentheses, and so on, that should not be placed in the beginning
324 ;; of a line or the end of a line.
325 (defmacro shr-char-kinsoku-bol-p (char)
326   "Return non-nil if a line ought not to begin with CHAR."
327   `(aref (char-category-set ,char) ?>))
328 (defmacro shr-char-kinsoku-eol-p (char)
329   "Return non-nil if a line ought not to end with CHAR."
330   `(aref (char-category-set ,char) ?<))
331 (unless (shr-char-kinsoku-bol-p (make-char 'japanese-jisx0208 33 35))
332   (load "kinsoku" nil t))
333
334 (defun shr-insert (text)
335   (when (and (eq shr-state 'image)
336              (not (string-match "\\`[ \t\n]+\\'" text)))
337     (insert "\n")
338     (setq shr-state nil))
339   (cond
340    ((eq shr-folding-mode 'none)
341     (insert text))
342    (t
343     (when (and (string-match "\\`[ \t\n]" text)
344                (not (bolp))
345                (not (eq (char-after (1- (point))) ? )))
346       (insert " "))
347     (dolist (elem (split-string text))
348       (when (and (bolp)
349                  (> shr-indentation 0))
350         (shr-indent))
351       ;; No space is needed behind a wide character categorized as
352       ;; kinsoku-bol, between characters both categorized as nospace,
353       ;; or at the beginning of a line.
354       (let (prev)
355         (when (and (> (current-column) shr-indentation)
356                    (eq (preceding-char) ? )
357                    (or (= (line-beginning-position) (1- (point)))
358                        (and (shr-char-breakable-p
359                              (setq prev (char-after (- (point) 2))))
360                             (shr-char-kinsoku-bol-p prev))
361                        (and (shr-char-nospace-p prev)
362                             (shr-char-nospace-p (aref elem 0)))))
363           (delete-char -1)))
364       ;; The shr-start is a special variable that is used to pass
365       ;; upwards the first point in the buffer where the text really
366       ;; starts.
367       (unless shr-start
368         (setq shr-start (point)))
369       (insert elem)
370       (let (found)
371         (while (and (> (current-column) shr-width)
372                     (progn
373                       (setq found (shr-find-fill-point))
374                       (not (eolp))))
375           (when (eq (preceding-char) ? )
376             (delete-char -1))
377           (insert "\n")
378           (unless found
379             (put-text-property (1- (point)) (point) 'shr-break t)
380             ;; No space is needed at the beginning of a line.
381             (when (eq (following-char) ? )
382               (delete-char 1)))
383           (when (> shr-indentation 0)
384             (shr-indent))
385           (end-of-line))
386         (insert " ")))
387     (unless (string-match "[ \t\n]\\'" text)
388       (delete-char -1)))))
389
390 (defun shr-find-fill-point ()
391   (when (> (move-to-column shr-width) shr-width)
392     (backward-char 1))
393   (let ((bp (point))
394         failed)
395     (while (not (or (setq failed (= (current-column) shr-indentation))
396                     (eq (preceding-char) ? )
397                     (eq (following-char) ? )
398                     (shr-char-breakable-p (preceding-char))
399                     (shr-char-breakable-p (following-char))
400                     (if (eq (preceding-char) ?')
401                         (not (memq (char-after (- (point) 2))
402                                    (list nil ?\n ? )))
403                       (and (shr-char-kinsoku-bol-p (preceding-char))
404                            (shr-char-breakable-p (following-char))
405                            (not (shr-char-kinsoku-bol-p (following-char)))))
406                     (shr-char-kinsoku-eol-p (following-char))))
407       (backward-char 1))
408     (if (and (not (or failed (eolp)))
409              (eq (preceding-char) ?'))
410         (while (not (or (setq failed (eolp))
411                         (eq (following-char) ? )
412                         (shr-char-breakable-p (following-char))
413                         (shr-char-kinsoku-eol-p (following-char))))
414           (forward-char 1)))
415     (if failed
416         ;; There's no breakable point, so we give it up.
417         (let (found)
418           (goto-char bp)
419           (unless shr-kinsoku-shorten
420             (while (and (setq found (re-search-forward
421                                      "\\(\\c>\\)\\| \\|\\c<\\|\\c|"
422                                      (line-end-position) 'move))
423                         (eq (preceding-char) ?')))
424             (if (and found (not (match-beginning 1)))
425                 (goto-char (match-beginning 0)))))
426       (or
427        (eolp)
428        ;; Don't put kinsoku-bol characters at the beginning of a line,
429        ;; or kinsoku-eol characters at the end of a line.
430        (cond
431         (shr-kinsoku-shorten
432          (while (and (not (memq (preceding-char) (list ?\C-@ ?\n ? )))
433                      (shr-char-kinsoku-eol-p (preceding-char)))
434            (backward-char 1))
435          (when (setq failed (= (current-column) shr-indentation))
436            ;; There's no breakable point that doesn't violate kinsoku,
437            ;; so we look for the second best position.
438            (while (and (progn
439                          (forward-char 1)
440                          (<= (current-column) shr-width))
441                        (progn
442                          (setq bp (point))
443                          (shr-char-kinsoku-eol-p (following-char)))))
444            (goto-char bp)))
445         ((shr-char-kinsoku-eol-p (preceding-char))
446          (if (shr-char-kinsoku-eol-p (following-char))
447              ;; There are consecutive kinsoku-eol characters.
448              (setq failed t)
449            (let ((count 4))
450              (while
451                  (progn
452                    (backward-char 1)
453                    (and (> (setq count (1- count)) 0)
454                         (not (memq (preceding-char) (list ?\C-@ ?\n ? )))
455                         (or (shr-char-kinsoku-eol-p (preceding-char))
456                             (shr-char-kinsoku-bol-p (following-char)))))))
457            (if (setq failed (= (current-column) shr-indentation))
458                ;; There's no breakable point that doesn't violate kinsoku,
459                ;; so we go to the second best position.
460                (if (looking-at "\\(\\c<+\\)\\c<")
461                    (goto-char (match-end 1))
462                  (forward-char 1)))))
463         (t
464          (if (shr-char-kinsoku-bol-p (preceding-char))
465              ;; There are consecutive kinsoku-bol characters.
466              (setq failed t)
467            (let ((count 4))
468              (while (and (>= (setq count (1- count)) 0)
469                          (shr-char-kinsoku-bol-p (following-char))
470                          (shr-char-breakable-p (following-char)))
471                (forward-char 1))))))
472        (when (eq (following-char) ? )
473          (forward-char 1))))
474     (not failed)))
475
476 (defun shr-expand-url (url)
477   (cond
478    ;; Absolute URL.
479    ((or (not url)
480         (string-match "\\`[a-z]*:" url)
481         (not shr-base))
482     url)
483    ((and (not (string-match "/\\'" shr-base))
484          (not (string-match "\\`/" url)))
485     (concat shr-base "/" url))
486    (t
487     (concat shr-base url))))
488
489 (defun shr-ensure-newline ()
490   (unless (zerop (current-column))
491     (insert "\n")))
492
493 (defun shr-ensure-paragraph ()
494   (unless (bobp)
495     (if (<= (current-column) shr-indentation)
496         (unless (save-excursion
497                   (forward-line -1)
498                   (looking-at " *$"))
499           (insert "\n"))
500       (if (save-excursion
501             (beginning-of-line)
502             (looking-at " *$"))
503           (insert "\n")
504         (insert "\n\n")))))
505
506 (defun shr-indent ()
507   (when (> shr-indentation 0)
508     (insert (make-string shr-indentation ? ))))
509
510 (defun shr-fontize-cont (cont &rest types)
511   (let (shr-start)
512     (shr-generic cont)
513     (dolist (type types)
514       (shr-add-font (or shr-start (point)) (point) type))))
515
516 ;; Add an overlay in the region, but avoid putting the font properties
517 ;; on blank text at the start of the line, and the newline at the end,
518 ;; to avoid ugliness.
519 (defun shr-add-font (start end type)
520   (save-excursion
521     (goto-char start)
522     (while (< (point) end)
523       (when (bolp)
524         (skip-chars-forward " "))
525       (let ((overlay (make-overlay (point) (min (line-end-position) end))))
526         (overlay-put overlay 'face type))
527       (if (< (line-end-position) end)
528           (forward-line 1)
529         (goto-char end)))))
530
531 (defun shr-browse-url ()
532   "Browse the URL under point."
533   (interactive)
534   (let ((url (get-text-property (point) 'shr-url)))
535     (cond
536      ((not url)
537       (message "No link under point"))
538      ((string-match "^mailto:" url)
539       (browse-url-mail url))
540      (t
541       (browse-url url)))))
542
543 (defun shr-save-contents (directory)
544   "Save the contents from URL in a file."
545   (interactive "DSave contents of URL to directory: ")
546   (let ((url (get-text-property (point) 'shr-url)))
547     (if (not url)
548         (message "No link under point")
549       (url-retrieve (shr-encode-url url)
550                     'shr-store-contents (list url directory)
551                     nil t))))
552
553 (defun shr-store-contents (status url directory)
554   (unless (plist-get status :error)
555     (when (or (search-forward "\n\n" nil t)
556               (search-forward "\r\n\r\n" nil t))
557       (write-region (point) (point-max)
558                     (expand-file-name (file-name-nondirectory url)
559                                       directory)))))
560
561 (defun shr-image-fetched (status buffer start end &optional flags)
562   (let ((image-buffer (current-buffer)))
563     (when (and (buffer-name buffer)
564                (not (plist-get status :error)))
565       (url-store-in-cache image-buffer)
566       (when (or (search-forward "\n\n" nil t)
567                 (search-forward "\r\n\r\n" nil t))
568         (let ((data (buffer-substring (point) (point-max))))
569           (with-current-buffer buffer
570             (save-excursion
571               (let ((alt (buffer-substring start end))
572                     (properties (text-properties-at start))
573                     (inhibit-read-only t))
574                 (delete-region start end)
575                 (goto-char start)
576                 (funcall shr-put-image-function data alt flags)
577                 (while properties
578                   (let ((type (pop properties))
579                         (value (pop properties)))
580                     (unless (memq type '(display image-size))
581                       (put-text-property start (point) type value))))))))))
582     (kill-buffer image-buffer)))
583
584 (defun shr-put-image (data alt &optional flags)
585   "Put image DATA with a string ALT.  Return image."
586   (if (display-graphic-p)
587       (let* ((size (cdr (assq 'size flags)))
588              (start (point))
589              (image (cond
590                      ((eq size 'original)
591                       (create-image data nil t :ascent 100))
592                      ((eq size 'full)
593                       (ignore-errors
594                         (shr-rescale-image data t)))
595                      (t
596                       (ignore-errors
597                         (shr-rescale-image data))))))
598         (when image
599           ;; When inserting big-ish pictures, put them at the
600           ;; beginning of the line.
601           (when (and (> (current-column) 0)
602                      (> (car (image-size image t)) 400))
603             (insert "\n"))
604           (if (eq size 'original)
605               (let ((overlays (overlays-at (point))))
606                 (insert-sliced-image image (or alt "*") nil 20 1)
607                 (dolist (overlay overlays)
608                   (overlay-put overlay 'face 'default)))
609             (insert-image image (or alt "*")))
610           (put-text-property start (point) 'image-size size)
611           (when (image-animated-p image)
612             (image-animate image nil 60)))
613         image)
614     (insert alt)))
615
616 <<<<<<< HEAD
617 (defun shr-rescale-image (data &optional force)
618   "Rescale DATA, if too big, to fit the current buffer.
619 If FORCE, rescale the image anyway."
620 =======
621 (defun shr-rescale-image (data)
622 >>>>>>> origin/no-gnus
623   (let ((image (create-image data nil t :ascent 100)))
624     (if (or (not (fboundp 'imagemagick-types))
625             (not (get-buffer-window (current-buffer))))
626         image
627       (let* ((size (image-size image t))
628              (width (car size))
629              (height (cdr size))
630              (edges (window-inside-pixel-edges
631                      (get-buffer-window (current-buffer))))
632              (window-width (truncate (* shr-max-image-proportion
633                                         (- (nth 2 edges) (nth 0 edges)))))
634              (window-height (truncate (* shr-max-image-proportion
635                                          (- (nth 3 edges) (nth 1 edges)))))
636              scaled-image)
637         (when (or force
638                   (> height window-height))
639           (setq image (or (create-image data 'imagemagick t
640                                         :height window-height
641                                         :ascent 100)
642                           image))
643           (setq size (image-size image t)))
644         (when (> (car size) window-width)
645           (setq image (or
646                        (create-image data 'imagemagick t
647                                      :width window-width
648                                      :ascent 100)
649                        image)))
650         image))))
651
652 ;; url-cache-extract autoloads url-cache.
653 (declare-function url-cache-create-filename "url-cache" (url))
654 (autoload 'mm-disable-multibyte "mm-util")
655 (autoload 'browse-url-mail "browse-url")
656
657 (defun shr-get-image-data (url)
658   "Get image data for URL.
659 Return a string with image data."
660   (with-temp-buffer
661     (mm-disable-multibyte)
662     (when (ignore-errors
663             (url-cache-extract (url-cache-create-filename (shr-encode-url url)))
664             t)
665       (when (or (search-forward "\n\n" nil t)
666                 (search-forward "\r\n\r\n" nil t))
667         (buffer-substring (point) (point-max))))))
668
669 (defun shr-image-displayer (content-function)
670   "Return a function to display an image.
671 CONTENT-FUNCTION is a function to retrieve an image for a cid url that
672 is an argument.  The function to be returned takes three arguments URL,
673 START, and END.  Note that START and END should be markers."
674   `(lambda (url start end)
675      (when url
676        (if (string-match "\\`cid:" url)
677            ,(when content-function
678               `(let ((image (funcall ,content-function
679                                      (substring url (match-end 0)))))
680                  (when image
681                    (goto-char start)
682                    (funcall shr-put-image-function
683                             image (buffer-substring start end))
684                    (delete-region (point) end))))
685          (url-retrieve url 'shr-image-fetched
686                        (list (current-buffer) start end)
687                        t t)))))
688
689 (defun shr-heading (cont &rest types)
690   (shr-ensure-paragraph)
691   (apply #'shr-fontize-cont cont types)
692   (shr-ensure-paragraph))
693
694 (autoload 'widget-convert-button "wid-edit")
695
696 (defun shr-urlify (start url &optional title)
697   (widget-convert-button
698    'url-link start (point)
699    :help-echo (if title (format "%s (%s)" url title) url)
700    :keymap shr-map
701    url)
702   (shr-add-font start (point) 'shr-link)
703   (put-text-property start (point) 'shr-url url))
704
705 (defun shr-encode-url (url)
706   "Encode URL."
707   (browse-url-url-encode-chars url "[)$ ]"))
708
709 (autoload 'shr-color-visible "shr-color")
710 (autoload 'shr-color->hexadecimal "shr-color")
711
712 (defun shr-color-check (fg bg)
713   "Check that FG is visible on BG.
714 Returns (fg bg) with corrected values.
715 Returns nil if the colors that would be used are the default
716 ones, in case fg and bg are nil."
717   (when (or fg bg)
718     (let ((fixed (cond ((null fg) 'fg)
719                        ((null bg) 'bg))))
720       ;; Convert colors to hexadecimal, or set them to default.
721       (let ((fg (or (shr-color->hexadecimal fg)
722                     (frame-parameter nil 'foreground-color)))
723             (bg (or (shr-color->hexadecimal bg)
724                     (frame-parameter nil 'background-color))))
725         (cond ((eq fixed 'bg)
726                ;; Only return the new fg
727                (list nil (cadr (shr-color-visible bg fg t))))
728               ((eq fixed 'fg)
729                ;; Invert args and results and return only the new bg
730                (list (cadr (shr-color-visible fg bg t)) nil))
731               (t
732                (shr-color-visible bg fg)))))))
733
734 (defun shr-colorize-region (start end fg &optional bg)
735   (when (or fg bg)
736     (let ((new-colors (shr-color-check fg bg)))
737       (when new-colors
738         (when fg
739           (shr-put-color start end :foreground (cadr new-colors)))
740         (when bg
741           (shr-put-color start end :background (car new-colors))))
742       new-colors)))
743
744 ;; Put a color in the region, but avoid putting colors on blank
745 ;; text at the start of the line, and the newline at the end, to avoid
746 ;; ugliness.  Also, don't overwrite any existing color information,
747 ;; since this can be called recursively, and we want the "inner" color
748 ;; to win.
749 (defun shr-put-color (start end type color)
750   (save-excursion
751     (goto-char start)
752     (while (< (point) end)
753       (when (and (bolp)
754                  (not (eq type :background)))
755         (skip-chars-forward " "))
756       (when (> (line-end-position) (point))
757         (shr-put-color-1 (point) (min (line-end-position) end) type color))
758       (if (< (line-end-position) end)
759           (forward-line 1)
760         (goto-char end)))
761     (when (and (eq type :background)
762                (= shr-table-depth 0))
763       (shr-expand-newlines start end color))))
764
765 (defun shr-expand-newlines (start end color)
766   (save-restriction
767     ;; Skip past all white space at the start and ends.
768     (goto-char start)
769     (skip-chars-forward " \t\n")
770     (beginning-of-line)
771     (setq start (point))
772     (goto-char end)
773     (skip-chars-backward " \t\n")
774     (forward-line 1)
775     (setq end (point))
776     (narrow-to-region start end)
777     (let ((width (shr-natural-width))
778           column)
779       (goto-char (point-min))
780       (while (not (eobp))
781         (end-of-line)
782         (when (and (< (setq column (current-column)) width)
783                    (< (setq column (shr-previous-newline-padding-width column))
784                       width))
785           (let ((overlay (make-overlay (point) (1+ (point)))))
786             (overlay-put overlay 'before-string
787                          (concat
788                           (mapconcat
789                            (lambda (overlay)
790                              (let ((string (plist-get
791                                             (overlay-properties overlay)
792                                             'before-string)))
793                                (if (not string)
794                                    ""
795                                  (overlay-put overlay 'before-string "")
796                                  string)))
797                            (overlays-at (point))
798                            "")
799                           (propertize (make-string (- width column) ? )
800                                       'face (list :background color))))))
801         (forward-line 1)))))
802
803 (defun shr-previous-newline-padding-width (width)
804   (let ((overlays (overlays-at (point)))
805         (previous-width 0))
806     (if (null overlays)
807         width
808       (dolist (overlay overlays)
809         (setq previous-width
810               (+ previous-width
811                  (length (plist-get (overlay-properties overlay)
812                                     'before-string)))))
813       (+ width previous-width))))
814
815 (defun shr-put-color-1 (start end type color)
816   (let* ((old-props (get-text-property start 'face))
817          (do-put (and (listp old-props)
818                       (not (memq type old-props))))
819          change)
820     (while (< start end)
821       (setq change (next-single-property-change start 'face nil end))
822       (when do-put
823         (put-text-property start change 'face
824                            (nconc (list type color) old-props)))
825       (setq old-props (get-text-property change 'face))
826       (setq do-put (and (listp old-props)
827                         (not (memq type old-props))))
828       (setq start change))
829     (when (and do-put
830                (> end start))
831       (put-text-property start end 'face
832                          (nconc (list type color old-props))))))
833
834 ;;; Tag-specific rendering rules.
835
836 (defun shr-tag-body (cont)
837   (let* ((start (point))
838          (fgcolor (cdr (or (assq :fgcolor cont)
839                            (assq :text cont))))
840          (bgcolor (cdr (assq :bgcolor cont)))
841          (shr-stylesheet (list (cons 'color fgcolor)
842                                (cons 'background-color bgcolor))))
843     (shr-generic cont)
844     (shr-colorize-region start (point) fgcolor bgcolor)))
845
846 (defun shr-tag-style (cont)
847   )
848
849 (defun shr-tag-script (cont)
850   )
851
852 (defun shr-tag-comment (cont)
853   )
854
855 (defun shr-tag-sup (cont)
856   (let ((start (point)))
857     (shr-generic cont)
858     (put-text-property start (point) 'display '(raise 0.5))))
859
860 (defun shr-tag-sub (cont)
861   (let ((start (point)))
862     (shr-generic cont)
863     (put-text-property start (point) 'display '(raise -0.5))))
864
865 (defun shr-tag-label (cont)
866   (shr-generic cont)
867   (shr-ensure-paragraph))
868
869 (defun shr-tag-p (cont)
870   (shr-ensure-paragraph)
871   (shr-indent)
872   (shr-generic cont)
873   (shr-ensure-paragraph))
874
875 (defun shr-tag-div (cont)
876   (shr-ensure-newline)
877   (shr-indent)
878   (shr-generic cont)
879   (shr-ensure-newline))
880
881 (defun shr-tag-s (cont)
882   (shr-fontize-cont cont 'shr-strike-through))
883
884 (defun shr-tag-del (cont)
885   (shr-fontize-cont cont 'shr-strike-through))
886
887 (defun shr-tag-b (cont)
888   (shr-fontize-cont cont 'bold))
889
890 (defun shr-tag-i (cont)
891   (shr-fontize-cont cont 'italic))
892
893 (defun shr-tag-em (cont)
894   (shr-fontize-cont cont 'bold))
895
896 (defun shr-tag-strong (cont)
897   (shr-fontize-cont cont 'bold))
898
899 (defun shr-tag-u (cont)
900   (shr-fontize-cont cont 'underline))
901
902 (defun shr-parse-style (style)
903   (when style
904     (save-match-data
905       (when (string-match "\n" style)
906         (setq style (replace-match " " t t style))))
907     (let ((plist nil))
908       (dolist (elem (split-string style ";"))
909         (when elem
910           (setq elem (split-string elem ":"))
911           (when (and (car elem)
912                      (cadr elem))
913             (let ((name (replace-regexp-in-string "^ +\\| +$" "" (car elem)))
914                   (value (replace-regexp-in-string "^ +\\| +$" "" (cadr elem))))
915               (when (string-match " *!important\\'" value)
916                 (setq value (substring value 0 (match-beginning 0))))
917               (push (cons (intern name obarray)
918                           value)
919                     plist)))))
920       plist)))
921
922 (defun shr-tag-base (cont)
923   (setq shr-base (cdr (assq :href cont))))
924
925 (defun shr-tag-a (cont)
926   (let ((url (cdr (assq :href cont)))
927         (title (cdr (assq :title cont)))
928         (start (point))
929         shr-start)
930     (shr-generic cont)
931     (shr-urlify (or shr-start start) (shr-expand-url url) title)))
932
933 (defun shr-tag-object (cont)
934   (let ((start (point))
935         url)
936     (dolist (elem cont)
937       (when (eq (car elem) 'embed)
938         (setq url (or url (cdr (assq :src (cdr elem))))))
939       (when (and (eq (car elem) 'param)
940                  (equal (cdr (assq :name (cdr elem))) "movie"))
941         (setq url (or url (cdr (assq :value (cdr elem)))))))
942     (when url
943       (shr-insert " [multimedia] ")
944       (shr-urlify start (shr-expand-url url)))
945     (shr-generic cont)))
946
947 (defun shr-tag-video (cont)
948   (let ((image (cdr (assq :poster cont)))
949         (url (cdr (assq :src cont)))
950         (start (point)))
951     (shr-tag-img nil image)
952     (shr-urlify start (shr-expand-url url))))
953
954 (defun shr-tag-img (cont &optional url)
955   (when (or url
956             (and cont
957                  (cdr (assq :src cont))))
958     (when (and (> (current-column) 0)
959                (not (eq shr-state 'image)))
960       (insert "\n"))
961     (let ((alt (cdr (assq :alt cont)))
962           (url (shr-expand-url (or url (cdr (assq :src cont))))))
963       (let ((start (point-marker)))
964         (when (zerop (length alt))
965           (setq alt "*"))
966         (cond
967          ((or (member (cdr (assq :height cont)) '("0" "1"))
968               (member (cdr (assq :width cont)) '("0" "1")))
969           ;; Ignore zero-sized or single-pixel images.
970           )
971          ((and (not shr-inhibit-images)
972                (string-match "\\`cid:" url))
973           (let ((url (substring url (match-end 0)))
974                 image)
975             (if (or (not shr-content-function)
976                     (not (setq image (funcall shr-content-function url))))
977                 (insert alt)
978               (funcall shr-put-image-function image alt))))
979          ((or shr-inhibit-images
980               (and shr-blocked-images
981                    (string-match shr-blocked-images url)))
982           (setq shr-start (point))
983           (let ((shr-state 'space))
984             (if (> (string-width alt) 8)
985                 (shr-insert (truncate-string-to-width alt 8))
986               (shr-insert alt))))
987          ((and (not shr-ignore-cache)
988                (url-is-cached (shr-encode-url url)))
989           (funcall shr-put-image-function (shr-get-image-data url) alt))
990          (t
991           (insert alt " ")
992           (when (and shr-ignore-cache
993                      (url-is-cached (shr-encode-url url)))
994             (let ((file (url-cache-create-filename (shr-encode-url url))))
995               (when (file-exists-p file)
996                 (delete-file file))))
997           (url-queue-retrieve
998            (shr-encode-url url) 'shr-image-fetched
999            (list (current-buffer) start (set-marker (make-marker) (1- (point))))
1000            t t)))
1001         (when (zerop shr-table-depth) ;; We are not in a table.
1002           (put-text-property start (point) 'keymap shr-map)
1003           (put-text-property start (point) 'shr-alt alt)
1004           (put-text-property start (point) 'image-url url)
1005           (put-text-property start (point) 'image-displayer
1006                              (shr-image-displayer shr-content-function))
1007           (put-text-property start (point) 'help-echo alt))
1008         (setq shr-state 'image)))))
1009
1010 (defun shr-tag-pre (cont)
1011   (let ((shr-folding-mode 'none))
1012     (shr-ensure-newline)
1013     (shr-indent)
1014     (shr-generic cont)
1015     (shr-ensure-newline)))
1016
1017 (defun shr-tag-blockquote (cont)
1018   (shr-ensure-paragraph)
1019   (shr-indent)
1020   (let ((shr-indentation (+ shr-indentation 4)))
1021     (shr-generic cont))
1022   (shr-ensure-paragraph))
1023
1024 (defun shr-tag-ul (cont)
1025   (shr-ensure-paragraph)
1026   (let ((shr-list-mode 'ul))
1027     (shr-generic cont))
1028   (shr-ensure-paragraph))
1029
1030 (defun shr-tag-ol (cont)
1031   (shr-ensure-paragraph)
1032   (let ((shr-list-mode 1))
1033     (shr-generic cont))
1034   (shr-ensure-paragraph))
1035
1036 (defun shr-tag-li (cont)
1037   (shr-ensure-paragraph)
1038   (shr-indent)
1039   (let* ((bullet
1040           (if (numberp shr-list-mode)
1041               (prog1
1042                   (format "%d " shr-list-mode)
1043                 (setq shr-list-mode (1+ shr-list-mode)))
1044             "* "))
1045          (shr-indentation (+ shr-indentation (length bullet))))
1046     (insert bullet)
1047     (shr-generic cont)))
1048
1049 (defun shr-tag-br (cont)
1050   (unless (bobp)
1051     (insert "\n")
1052     (shr-indent))
1053   (shr-generic cont))
1054
1055 (defun shr-tag-h1 (cont)
1056   (shr-heading cont 'bold 'underline))
1057
1058 (defun shr-tag-h2 (cont)
1059   (shr-heading cont 'bold))
1060
1061 (defun shr-tag-h3 (cont)
1062   (shr-heading cont 'italic))
1063
1064 (defun shr-tag-h4 (cont)
1065   (shr-heading cont))
1066
1067 (defun shr-tag-h5 (cont)
1068   (shr-heading cont))
1069
1070 (defun shr-tag-h6 (cont)
1071   (shr-heading cont))
1072
1073 (defun shr-tag-hr (cont)
1074   (shr-ensure-newline)
1075   (insert (make-string shr-width shr-hr-line) "\n"))
1076
1077 (defun shr-tag-title (cont)
1078   (shr-heading cont 'bold 'underline))
1079
1080 (defun shr-tag-font (cont)
1081   (let* ((start (point))
1082          (color (cdr (assq :color cont)))
1083          (shr-stylesheet (nconc (list (cons 'color color))
1084                                 shr-stylesheet)))
1085     (shr-generic cont)
1086     (when color
1087       (shr-colorize-region start (point) color
1088                            (cdr (assq 'background-color shr-stylesheet))))))
1089
1090 ;;; Table rendering algorithm.
1091
1092 ;; Table rendering is the only complicated thing here.  We do this by
1093 ;; first counting how many TDs there are in each TR, and registering
1094 ;; how wide they think they should be ("width=45%", etc).  Then we
1095 ;; render each TD separately (this is done in temporary buffers, so
1096 ;; that we can use all the rendering machinery as if we were in the
1097 ;; main buffer).  Now we know how much space each TD really takes, so
1098 ;; we then render everything again with the new widths, and finally
1099 ;; insert all these boxes into the main buffer.
1100 (defun shr-tag-table-1 (cont)
1101   (setq cont (or (cdr (assq 'tbody cont))
1102                  cont))
1103   (let* ((shr-inhibit-images t)
1104          (shr-table-depth (1+ shr-table-depth))
1105          (shr-kinsoku-shorten t)
1106          ;; Find all suggested widths.
1107          (columns (shr-column-specs cont))
1108          ;; Compute how many characters wide each TD should be.
1109          (suggested-widths (shr-pro-rate-columns columns))
1110          ;; Do a "test rendering" to see how big each TD is (this can
1111          ;; be smaller (if there's little text) or bigger (if there's
1112          ;; unbreakable text).
1113          (sketch (shr-make-table cont suggested-widths))
1114          (sketch-widths (shr-table-widths sketch suggested-widths)))
1115     ;; This probably won't work very well.
1116     (when (> (+ (loop for width across sketch-widths
1117                       summing (1+ width))
1118                 shr-indentation 1)
1119              (frame-width))
1120       (setq truncate-lines t))
1121     ;; Then render the table again with these new "hard" widths.
1122     (shr-insert-table (shr-make-table cont sketch-widths t) sketch-widths))
1123   ;; Finally, insert all the images after the table.  The Emacs buffer
1124   ;; model isn't strong enough to allow us to put the images actually
1125   ;; into the tables.
1126   (when (zerop shr-table-depth)
1127     (dolist (elem (shr-find-elements cont 'img))
1128       (shr-tag-img (cdr elem)))))
1129
1130 (defun shr-tag-table (cont)
1131   (shr-ensure-paragraph)
1132   (let* ((caption (cdr (assq 'caption cont)))
1133          (header (cdr (assq 'thead cont)))
1134          (body (or (cdr (assq 'tbody cont)) cont))
1135          (footer (cdr (assq 'tfoot cont)))
1136          (bgcolor (cdr (assq :bgcolor cont)))
1137          (start (point))
1138          (shr-stylesheet (nconc (list (cons 'background-color bgcolor))
1139                                 shr-stylesheet))
1140          (nheader (if header (shr-max-columns header)))
1141          (nbody (if body (shr-max-columns body)))
1142          (nfooter (if footer (shr-max-columns footer))))
1143     (if (and (not caption)
1144              (not header)
1145              (not (cdr (assq 'tbody cont)))
1146              (not (cdr (assq 'tr cont)))
1147              (not footer))
1148         ;; The table is totally invalid and just contains random junk.
1149         ;; Try to output it anyway.
1150         (shr-generic cont)
1151       ;; It's a real table, so render it.
1152       (shr-tag-table-1
1153        (nconc
1154         (if caption `((tr (td ,@caption))))
1155         (if header
1156             (if footer
1157                 ;; hader + body + footer
1158                 (if (= nheader nbody)
1159                     (if (= nbody nfooter)
1160                         `((tr (td (table (tbody ,@header ,@body ,@footer)))))
1161                       (nconc `((tr (td (table (tbody ,@header ,@body)))))
1162                              (if (= nfooter 1)
1163                                  footer
1164                                `((tr (td (table (tbody ,@footer))))))))
1165                   (nconc `((tr (td (table (tbody ,@header)))))
1166                          (if (= nbody nfooter)
1167                              `((tr (td (table (tbody ,@body ,@footer)))))
1168                            (nconc `((tr (td (table (tbody ,@body)))))
1169                                   (if (= nfooter 1)
1170                                       footer
1171                                     `((tr (td (table (tbody ,@footer))))))))))
1172               ;; header + body
1173               (if (= nheader nbody)
1174                   `((tr (td (table (tbody ,@header ,@body)))))
1175                 (if (= nheader 1)
1176                     `(,@header (tr (td (table (tbody ,@body)))))
1177                   `((tr (td (table (tbody ,@header))))
1178                     (tr (td (table (tbody ,@body))))))))
1179           (if footer
1180               ;; body + footer
1181               (if (= nbody nfooter)
1182                   `((tr (td (table (tbody ,@body ,@footer)))))
1183                 (nconc `((tr (td (table (tbody ,@body)))))
1184                        (if (= nfooter 1)
1185                            footer
1186                          `((tr (td (table (tbody ,@footer))))))))
1187             (if caption
1188                 `((tr (td (table (tbody ,@body)))))
1189               body))))))
1190     (when bgcolor
1191       (shr-colorize-region start (point) (cdr (assq 'color shr-stylesheet))
1192                            bgcolor))))
1193
1194 (defun shr-find-elements (cont type)
1195   (let (result)
1196     (dolist (elem cont)
1197       (cond ((eq (car elem) type)
1198              (push elem result))
1199             ((consp (cdr elem))
1200              (setq result (nconc (shr-find-elements (cdr elem) type) result)))))
1201     (nreverse result)))
1202
1203 (defun shr-insert-table (table widths)
1204   (shr-insert-table-ruler widths)
1205   (dolist (row table)
1206     (let ((start (point))
1207           (height (let ((max 0))
1208                     (dolist (column row)
1209                       (setq max (max max (cadr column))))
1210                     max)))
1211       (dotimes (i height)
1212         (shr-indent)
1213         (insert shr-table-vertical-line "\n"))
1214       (dolist (column row)
1215         (goto-char start)
1216         (let ((lines (nth 2 column))
1217               (overlay-lines (nth 3 column))
1218               overlay overlay-line)
1219           (dolist (line lines)
1220             (setq overlay-line (pop overlay-lines))
1221             (end-of-line)
1222             (insert line shr-table-vertical-line)
1223             (dolist (overlay overlay-line)
1224               (let ((o (make-overlay (- (point) (nth 0 overlay) 1)
1225                                      (- (point) (nth 1 overlay) 1)))
1226                     (properties (nth 2 overlay)))
1227                 (while properties
1228                   (overlay-put o (pop properties) (pop properties)))))
1229             (forward-line 1))
1230           ;; Add blank lines at padding at the bottom of the TD,
1231           ;; possibly.
1232           (dotimes (i (- height (length lines)))
1233             (end-of-line)
1234             (let ((start (point)))
1235               (insert (make-string (string-width (car lines)) ? )
1236                       shr-table-vertical-line)
1237               (when (nth 4 column)
1238                 (shr-put-color start (1- (point)) :background (nth 4 column))))
1239             (forward-line 1)))))
1240     (shr-insert-table-ruler widths)))
1241
1242 (defun shr-insert-table-ruler (widths)
1243   (when (and (bolp)
1244              (> shr-indentation 0))
1245     (shr-indent))
1246   (insert shr-table-corner)
1247   (dotimes (i (length widths))
1248     (insert (make-string (aref widths i) shr-table-horizontal-line)
1249             shr-table-corner))
1250   (insert "\n"))
1251
1252 (defun shr-table-widths (table suggested-widths)
1253   (let* ((length (length suggested-widths))
1254          (widths (make-vector length 0))
1255          (natural-widths (make-vector length 0)))
1256     (dolist (row table)
1257       (let ((i 0))
1258         (dolist (column row)
1259           (aset widths i (max (aref widths i)
1260                               (car column)))
1261           (aset natural-widths i (max (aref natural-widths i)
1262                                       (cadr column)))
1263           (setq i (1+ i)))))
1264     (let ((extra (- (apply '+ (append suggested-widths nil))
1265                     (apply '+ (append widths nil))))
1266           (expanded-columns 0))
1267       (when (> extra 0)
1268         (dotimes (i length)
1269           ;; If the natural width is wider than the rendered width, we
1270           ;; want to allow the column to expand.
1271           (when (> (aref natural-widths i) (aref widths i))
1272             (setq expanded-columns (1+ expanded-columns))))
1273         (dotimes (i length)
1274           (when (> (aref natural-widths i) (aref widths i))
1275             (aset widths i (min
1276                             (1+ (aref natural-widths i))
1277                             (+ (/ extra expanded-columns)
1278                                (aref widths i))))))))
1279     widths))
1280
1281 (defun shr-make-table (cont widths &optional fill)
1282   (let ((trs nil))
1283     (dolist (row cont)
1284       (when (eq (car row) 'tr)
1285         (let ((tds nil)
1286               (columns (cdr row))
1287               (i 0)
1288               column)
1289           (while (< i (length widths))
1290             (setq column (pop columns))
1291             (when (or (memq (car column) '(td th))
1292                       (null column))
1293               (push (shr-render-td (cdr column) (aref widths i) fill)
1294                     tds)
1295               (setq i (1+ i))))
1296           (push (nreverse tds) trs))))
1297     (nreverse trs)))
1298
1299 (defun shr-render-td (cont width fill)
1300   (with-temp-buffer
1301     (let ((bgcolor (cdr (assq :bgcolor cont)))
1302           (fgcolor (cdr (assq :fgcolor cont)))
1303           (style (cdr (assq :style cont)))
1304           (shr-stylesheet shr-stylesheet)
1305           overlays actual-colors)
1306       (when style
1307         (setq style (and (string-match "color" style)
1308                          (shr-parse-style style))))
1309       (when bgcolor
1310         (setq style (nconc (list (cons 'background-color bgcolor)) style)))
1311       (when fgcolor
1312         (setq style (nconc (list (cons 'color fgcolor)) style)))
1313       (when style
1314         (setq shr-stylesheet (append style shr-stylesheet)))
1315       (let ((cache (cdr (assoc (cons width cont) shr-content-cache))))
1316         (if cache
1317             (progn
1318               (insert (car cache))
1319               (let ((end (length (car cache))))
1320                 (dolist (overlay (cadr cache))
1321                   (let ((new-overlay
1322                          (make-overlay (1+ (- end (nth 0 overlay)))
1323                                        (1+ (- end (nth 1 overlay)))))
1324                         (properties (nth 2 overlay)))
1325                     (while properties
1326                       (overlay-put new-overlay
1327                                    (pop properties) (pop properties)))))))
1328           (let ((shr-width width)
1329                 (shr-indentation 0))
1330             (shr-descend (cons 'td cont)))
1331           (delete-region
1332            (point)
1333            (+ (point)
1334               (skip-chars-backward " \t\n")))
1335           (push (list (cons width cont) (buffer-string)
1336                       (shr-overlays-in-region (point-min) (point-max)))
1337                 shr-content-cache)))
1338       (goto-char (point-min))
1339       (let ((max 0))
1340         (while (not (eobp))
1341           (end-of-line)
1342           (setq max (max max (current-column)))
1343           (forward-line 1))
1344         (when fill
1345           (goto-char (point-min))
1346           ;; If the buffer is totally empty, then put a single blank
1347           ;; line here.
1348           (if (zerop (buffer-size))
1349               (insert (make-string width ? ))
1350             ;; Otherwise, fill the buffer.
1351             (while (not (eobp))
1352               (end-of-line)
1353               (when (> (- width (current-column)) 0)
1354                 (insert (make-string (- width (current-column)) ? )))
1355               (forward-line 1)))
1356           (when style
1357             (setq actual-colors
1358                   (shr-colorize-region
1359                    (point-min) (point-max)
1360                    (cdr (assq 'color shr-stylesheet))
1361                    (cdr (assq 'background-color shr-stylesheet))))))
1362         (if fill
1363             (list max
1364                   (count-lines (point-min) (point-max))
1365                   (split-string (buffer-string) "\n")
1366                   (shr-collect-overlays)
1367                   (car actual-colors))
1368           (list max
1369                 (shr-natural-width)))))))
1370
1371 (defun shr-natural-width ()
1372   (goto-char (point-min))
1373   (let ((current 0)
1374         (max 0))
1375     (while (not (eobp))
1376       (end-of-line)
1377       (setq current (+ current (current-column)))
1378       (unless (get-text-property (point) 'shr-break)
1379         (setq max (max max current)
1380               current 0))
1381       (forward-line 1))
1382     max))
1383
1384 (defun shr-collect-overlays ()
1385   (save-excursion
1386     (goto-char (point-min))
1387     (let ((overlays nil))
1388       (while (not (eobp))
1389         (push (shr-overlays-in-region (point) (line-end-position))
1390               overlays)
1391         (forward-line 1))
1392       (nreverse overlays))))
1393
1394 (defun shr-overlays-in-region (start end)
1395   (let (result)
1396     (dolist (overlay (overlays-in start end))
1397       (push (list (if (> start (overlay-start overlay))
1398                       (- end start)
1399                     (- end (overlay-start overlay)))
1400                   (if (< end (overlay-end overlay))
1401                       0
1402                     (- end (overlay-end overlay)))
1403                   (overlay-properties overlay))
1404             result))
1405     (nreverse result)))
1406
1407 (defun shr-pro-rate-columns (columns)
1408   (let ((total-percentage 0)
1409         (widths (make-vector (length columns) 0)))
1410     (dotimes (i (length columns))
1411       (setq total-percentage (+ total-percentage (aref columns i))))
1412     (setq total-percentage (/ 1.0 total-percentage))
1413     (dotimes (i (length columns))
1414       (aset widths i (max (truncate (* (aref columns i)
1415                                        total-percentage
1416                                        (- shr-width (1+ (length columns)))))
1417                           10)))
1418     widths))
1419
1420 ;; Return a summary of the number and shape of the TDs in the table.
1421 (defun shr-column-specs (cont)
1422   (let ((columns (make-vector (shr-max-columns cont) 1)))
1423     (dolist (row cont)
1424       (when (eq (car row) 'tr)
1425         (let ((i 0))
1426           (dolist (column (cdr row))
1427             (when (memq (car column) '(td th))
1428               (let ((width (cdr (assq :width (cdr column)))))
1429                 (when (and width
1430                            (string-match "\\([0-9]+\\)%" width))
1431                   (aset columns i
1432                         (/ (string-to-number (match-string 1 width))
1433                            100.0))))
1434               (setq i (1+ i)))))))
1435     columns))
1436
1437 (defun shr-count (cont elem)
1438   (let ((i 0))
1439     (dolist (sub cont)
1440       (when (eq (car sub) elem)
1441         (setq i (1+ i))))
1442     i))
1443
1444 (defun shr-max-columns (cont)
1445   (let ((max 0))
1446     (dolist (row cont)
1447       (when (eq (car row) 'tr)
1448         (setq max (max max (+ (shr-count (cdr row) 'td)
1449                               (shr-count (cdr row) 'th))))))
1450     max))
1451
1452 (provide 'shr)
1453
1454 ;;; shr.el ends here