Merge remote branch 'origin/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 (bolp))
337              (not (string-match "\\`[ \t\n]+\\'" text)))
338     (insert "\n")
339     (setq shr-state nil))
340   (cond
341    ((eq shr-folding-mode 'none)
342     (insert text))
343    (t
344     (when (and (string-match "\\`[ \t\n ]" text)
345                (not (bolp))
346                (not (eq (char-after (1- (point))) ? )))
347       (insert " "))
348     (dolist (elem (split-string text "[ \f\t\n\r\v ]+" t))
349       (when (and (bolp)
350                  (> shr-indentation 0))
351         (shr-indent))
352       ;; No space is needed behind a wide character categorized as
353       ;; kinsoku-bol, between characters both categorized as nospace,
354       ;; or at the beginning of a line.
355       (let (prev)
356         (when (and (> (current-column) shr-indentation)
357                    (eq (preceding-char) ? )
358                    (or (= (line-beginning-position) (1- (point)))
359                        (and (shr-char-breakable-p
360                              (setq prev (char-after (- (point) 2))))
361                             (shr-char-kinsoku-bol-p prev))
362                        (and (shr-char-nospace-p prev)
363                             (shr-char-nospace-p (aref elem 0)))))
364           (delete-char -1)))
365       ;; The shr-start is a special variable that is used to pass
366       ;; upwards the first point in the buffer where the text really
367       ;; starts.
368       (unless shr-start
369         (setq shr-start (point)))
370       (insert elem)
371       (setq shr-state nil)
372       (let (found)
373         (while (and (> (current-column) shr-width)
374                     (progn
375                       (setq found (shr-find-fill-point))
376                       (not (eolp))))
377           (when (eq (preceding-char) ? )
378             (delete-char -1))
379           (insert "\n")
380           (unless found
381             ;; No space is needed at the beginning of a line.
382             (when (eq (following-char) ? )
383               (delete-char 1)))
384           (when (> shr-indentation 0)
385             (shr-indent))
386           (end-of-line))
387         (insert " ")))
388     (unless (string-match "[ \t\n ]\\'" text)
389       (delete-char -1)))))
390
391 (defun shr-find-fill-point ()
392   (when (> (move-to-column shr-width) shr-width)
393     (backward-char 1))
394   (let ((bp (point))
395         failed)
396     (while (not (or (setq failed (= (current-column) shr-indentation))
397                     (eq (preceding-char) ? )
398                     (eq (following-char) ? )
399                     (shr-char-breakable-p (preceding-char))
400                     (shr-char-breakable-p (following-char))
401                     (if (eq (preceding-char) ?')
402                         (not (memq (char-after (- (point) 2))
403                                    (list nil ?\n ? )))
404                       (and (shr-char-kinsoku-bol-p (preceding-char))
405                            (shr-char-breakable-p (following-char))
406                            (not (shr-char-kinsoku-bol-p (following-char)))))
407                     (shr-char-kinsoku-eol-p (following-char))))
408       (backward-char 1))
409     (if (and (not (or failed (eolp)))
410              (eq (preceding-char) ?'))
411         (while (not (or (setq failed (eolp))
412                         (eq (following-char) ? )
413                         (shr-char-breakable-p (following-char))
414                         (shr-char-kinsoku-eol-p (following-char))))
415           (forward-char 1)))
416     (if failed
417         ;; There's no breakable point, so we give it up.
418         (let (found)
419           (goto-char bp)
420           (unless shr-kinsoku-shorten
421             (while (and (setq found (re-search-forward
422                                      "\\(\\c>\\)\\| \\|\\c<\\|\\c|"
423                                      (line-end-position) 'move))
424                         (eq (preceding-char) ?')))
425             (if (and found (not (match-beginning 1)))
426                 (goto-char (match-beginning 0)))))
427       (or
428        (eolp)
429        ;; Don't put kinsoku-bol characters at the beginning of a line,
430        ;; or kinsoku-eol characters at the end of a line.
431        (cond
432         (shr-kinsoku-shorten
433          (while (and (not (memq (preceding-char) (list ?\C-@ ?\n ? )))
434                      (shr-char-kinsoku-eol-p (preceding-char)))
435            (backward-char 1))
436          (when (setq failed (= (current-column) shr-indentation))
437            ;; There's no breakable point that doesn't violate kinsoku,
438            ;; so we look for the second best position.
439            (while (and (progn
440                          (forward-char 1)
441                          (<= (current-column) shr-width))
442                        (progn
443                          (setq bp (point))
444                          (shr-char-kinsoku-eol-p (following-char)))))
445            (goto-char bp)))
446         ((shr-char-kinsoku-eol-p (preceding-char))
447          (if (shr-char-kinsoku-eol-p (following-char))
448              ;; There are consecutive kinsoku-eol characters.
449              (setq failed t)
450            (let ((count 4))
451              (while
452                  (progn
453                    (backward-char 1)
454                    (and (> (setq count (1- count)) 0)
455                         (not (memq (preceding-char) (list ?\C-@ ?\n ? )))
456                         (or (shr-char-kinsoku-eol-p (preceding-char))
457                             (shr-char-kinsoku-bol-p (following-char)))))))
458            (if (setq failed (= (current-column) shr-indentation))
459                ;; There's no breakable point that doesn't violate kinsoku,
460                ;; so we go to the second best position.
461                (if (looking-at "\\(\\c<+\\)\\c<")
462                    (goto-char (match-end 1))
463                  (forward-char 1)))))
464         (t
465          (if (shr-char-kinsoku-bol-p (preceding-char))
466              ;; There are consecutive kinsoku-bol characters.
467              (setq failed t)
468            (let ((count 4))
469              (while (and (>= (setq count (1- count)) 0)
470                          (shr-char-kinsoku-bol-p (following-char))
471                          (shr-char-breakable-p (following-char)))
472                (forward-char 1))))))
473        (when (eq (following-char) ? )
474          (forward-char 1))))
475     (not failed)))
476
477 (defun shr-expand-url (url)
478   (cond
479    ;; Absolute URL.
480    ((or (not url)
481         (string-match "\\`[a-z]*:" url)
482         (not shr-base))
483     url)
484    ((and (not (string-match "/\\'" shr-base))
485          (not (string-match "\\`/" url)))
486     (concat shr-base "/" url))
487    (t
488     (concat shr-base url))))
489
490 (defun shr-ensure-newline ()
491   (unless (zerop (current-column))
492     (insert "\n")))
493
494 (defun shr-ensure-paragraph ()
495   (unless (bobp)
496     (if (<= (current-column) shr-indentation)
497         (unless (save-excursion
498                   (forward-line -1)
499                   (looking-at " *$"))
500           (insert "\n"))
501       (if (save-excursion
502             (beginning-of-line)
503             (looking-at " *$"))
504           (insert "\n")
505         (insert "\n\n")))))
506
507 (defun shr-indent ()
508   (when (> shr-indentation 0)
509     (insert (make-string shr-indentation ? ))))
510
511 (defun shr-fontize-cont (cont &rest types)
512   (let (shr-start)
513     (shr-generic cont)
514     (dolist (type types)
515       (shr-add-font (or shr-start (point)) (point) type))))
516
517 ;; Add an overlay in the region, but avoid putting the font properties
518 ;; on blank text at the start of the line, and the newline at the end,
519 ;; to avoid ugliness.
520 (defun shr-add-font (start end type)
521   (save-excursion
522     (goto-char start)
523     (while (< (point) end)
524       (when (bolp)
525         (skip-chars-forward " "))
526       (let ((overlay (make-overlay (point) (min (line-end-position) end))))
527         (overlay-put overlay 'face type))
528       (if (< (line-end-position) end)
529           (forward-line 1)
530         (goto-char end)))))
531
532 (defun shr-browse-url ()
533   "Browse the URL under point."
534   (interactive)
535   (let ((url (get-text-property (point) 'shr-url)))
536     (cond
537      ((not url)
538       (message "No link under point"))
539      ((string-match "^mailto:" url)
540       (browse-url-mail url))
541      (t
542       (browse-url url)))))
543
544 (defun shr-save-contents (directory)
545   "Save the contents from URL in a file."
546   (interactive "DSave contents of URL to directory: ")
547   (let ((url (get-text-property (point) 'shr-url)))
548     (if (not url)
549         (message "No link under point")
550       (url-retrieve (shr-encode-url url)
551                     'shr-store-contents (list url directory)
552                     nil t))))
553
554 (defun shr-store-contents (status url directory)
555   (unless (plist-get status :error)
556     (when (or (search-forward "\n\n" nil t)
557               (search-forward "\r\n\r\n" nil t))
558       (write-region (point) (point-max)
559                     (expand-file-name (file-name-nondirectory url)
560                                       directory)))))
561
562 (defun shr-image-fetched (status buffer start end &optional flags)
563   (let ((image-buffer (current-buffer)))
564     (when (and (buffer-name buffer)
565                (not (plist-get status :error)))
566       (url-store-in-cache image-buffer)
567       (when (or (search-forward "\n\n" nil t)
568                 (search-forward "\r\n\r\n" nil t))
569         (let ((data (buffer-substring (point) (point-max))))
570           (with-current-buffer buffer
571             (save-excursion
572               (let ((alt (buffer-substring start end))
573                     (properties (text-properties-at start))
574                     (inhibit-read-only t))
575                 (delete-region start end)
576                 (goto-char start)
577                 (funcall shr-put-image-function data alt flags)
578                 (while properties
579                   (let ((type (pop properties))
580                         (value (pop properties)))
581                     (unless (memq type '(display image-size))
582                       (put-text-property start (point) type value))))))))))
583     (kill-buffer image-buffer)))
584
585 (defun shr-put-image (data alt &optional flags)
586   "Put image DATA with a string ALT.  Return image."
587   (if (display-graphic-p)
588       (let* ((size (cdr (assq 'size flags)))
589              (start (point))
590              (image (cond
591                      ((eq size 'original)
592                       (create-image data nil t :ascent 100))
593                      ((eq size 'full)
594                       (ignore-errors
595                         (shr-rescale-image data t)))
596                      (t
597                       (ignore-errors
598                         (shr-rescale-image data))))))
599         (when image
600           ;; When inserting big-ish pictures, put them at the
601           ;; beginning of the line.
602           (when (and (> (current-column) 0)
603                      (> (car (image-size image t)) 400))
604             (insert "\n"))
605           (if (eq size 'original)
606               (let ((overlays (overlays-at (point))))
607                 (insert-sliced-image image (or alt "*") nil 20 1)
608                 (dolist (overlay overlays)
609                   (overlay-put overlay 'face 'default)))
610             (insert-image image (or alt "*")))
611           (put-text-property start (point) 'image-size size)
612           (when (image-animated-p image)
613             (image-animate image nil 60)))
614         image)
615     (insert alt)))
616
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   (let ((image (create-image data nil t :ascent 100)))
621     (if (or (not (fboundp 'imagemagick-types))
622             (not (get-buffer-window (current-buffer))))
623         image
624       (let* ((size (image-size image t))
625              (width (car size))
626              (height (cdr size))
627              (edges (window-inside-pixel-edges
628                      (get-buffer-window (current-buffer))))
629              (window-width (truncate (* shr-max-image-proportion
630                                         (- (nth 2 edges) (nth 0 edges)))))
631              (window-height (truncate (* shr-max-image-proportion
632                                          (- (nth 3 edges) (nth 1 edges)))))
633              scaled-image)
634         (when (or force
635                   (> height window-height))
636           (setq image (or (create-image data 'imagemagick t
637                                         :height window-height
638                                         :ascent 100)
639                           image))
640           (setq size (image-size image t)))
641         (when (> (car size) window-width)
642           (setq image (or
643                        (create-image data 'imagemagick t
644                                      :width window-width
645                                      :ascent 100)
646                        image)))
647         image))))
648
649 ;; url-cache-extract autoloads url-cache.
650 (declare-function url-cache-create-filename "url-cache" (url))
651 (autoload 'mm-disable-multibyte "mm-util")
652 (autoload 'browse-url-mail "browse-url")
653
654 (defun shr-get-image-data (url)
655   "Get image data for URL.
656 Return a string with image data."
657   (with-temp-buffer
658     (mm-disable-multibyte)
659     (when (ignore-errors
660             (url-cache-extract (url-cache-create-filename (shr-encode-url url)))
661             t)
662       (when (or (search-forward "\n\n" nil t)
663                 (search-forward "\r\n\r\n" nil t))
664         (buffer-substring (point) (point-max))))))
665
666 (defun shr-image-displayer (content-function)
667   "Return a function to display an image.
668 CONTENT-FUNCTION is a function to retrieve an image for a cid url that
669 is an argument.  The function to be returned takes three arguments URL,
670 START, and END.  Note that START and END should be markers."
671   `(lambda (url start end)
672      (when url
673        (if (string-match "\\`cid:" url)
674            ,(when content-function
675               `(let ((image (funcall ,content-function
676                                      (substring url (match-end 0)))))
677                  (when image
678                    (goto-char start)
679                    (funcall shr-put-image-function
680                             image (buffer-substring start end))
681                    (delete-region (point) end))))
682          (url-retrieve url 'shr-image-fetched
683                        (list (current-buffer) start end)
684                        t t)))))
685
686 (defun shr-heading (cont &rest types)
687   (shr-ensure-paragraph)
688   (apply #'shr-fontize-cont cont types)
689   (shr-ensure-paragraph))
690
691 (autoload 'widget-convert-button "wid-edit")
692
693 (defun shr-urlify (start url &optional title)
694   (widget-convert-button
695    'url-link start (point)
696    :help-echo (if title (format "%s (%s)" url title) url)
697    :keymap shr-map
698    url)
699   (shr-add-font start (point) 'shr-link)
700   (put-text-property start (point) 'shr-url url))
701
702 (defun shr-encode-url (url)
703   "Encode URL."
704   (browse-url-url-encode-chars url "[)$ ]"))
705
706 (autoload 'shr-color-visible "shr-color")
707 (autoload 'shr-color->hexadecimal "shr-color")
708
709 (defun shr-color-check (fg bg)
710   "Check that FG is visible on BG.
711 Returns (fg bg) with corrected values.
712 Returns nil if the colors that would be used are the default
713 ones, in case fg and bg are nil."
714   (when (or fg bg)
715     (let ((fixed (cond ((null fg) 'fg)
716                        ((null bg) 'bg))))
717       ;; Convert colors to hexadecimal, or set them to default.
718       (let ((fg (or (shr-color->hexadecimal fg)
719                     (frame-parameter nil 'foreground-color)))
720             (bg (or (shr-color->hexadecimal bg)
721                     (frame-parameter nil 'background-color))))
722         (cond ((eq fixed 'bg)
723                ;; Only return the new fg
724                (list nil (cadr (shr-color-visible bg fg t))))
725               ((eq fixed 'fg)
726                ;; Invert args and results and return only the new bg
727                (list (cadr (shr-color-visible fg bg t)) nil))
728               (t
729                (shr-color-visible bg fg)))))))
730
731 (defun shr-colorize-region (start end fg &optional bg)
732   (when (or fg bg)
733     (let ((new-colors (shr-color-check fg bg)))
734       (when new-colors
735         (when fg
736           (shr-put-color start end :foreground (cadr new-colors)))
737         (when bg
738           (shr-put-color start end :background (car new-colors))))
739       new-colors)))
740
741 ;; Put a color in the region, but avoid putting colors on blank
742 ;; text at the start of the line, and the newline at the end, to avoid
743 ;; ugliness.  Also, don't overwrite any existing color information,
744 ;; since this can be called recursively, and we want the "inner" color
745 ;; to win.
746 (defun shr-put-color (start end type color)
747   (save-excursion
748     (goto-char start)
749     (while (< (point) end)
750       (when (and (bolp)
751                  (not (eq type :background)))
752         (skip-chars-forward " "))
753       (when (> (line-end-position) (point))
754         (shr-put-color-1 (point) (min (line-end-position) end) type color))
755       (if (< (line-end-position) end)
756           (forward-line 1)
757         (goto-char end)))
758     (when (and (eq type :background)
759                (= shr-table-depth 0))
760       (shr-expand-newlines start end color))))
761
762 (defun shr-expand-newlines (start end color)
763   (save-restriction
764     ;; Skip past all white space at the start and ends.
765     (goto-char start)
766     (skip-chars-forward " \t\n")
767     (beginning-of-line)
768     (setq start (point))
769     (goto-char end)
770     (skip-chars-backward " \t\n")
771     (forward-line 1)
772     (setq end (point))
773     (narrow-to-region start end)
774     (let ((width (shr-buffer-width))
775           column)
776       (goto-char (point-min))
777       (while (not (eobp))
778         (end-of-line)
779         (when (and (< (setq column (current-column)) width)
780                    (< (setq column (shr-previous-newline-padding-width column))
781                       width))
782           (let ((overlay (make-overlay (point) (1+ (point)))))
783             (overlay-put overlay 'before-string
784                          (concat
785                           (mapconcat
786                            (lambda (overlay)
787                              (let ((string (plist-get
788                                             (overlay-properties overlay)
789                                             'before-string)))
790                                (if (not string)
791                                    ""
792                                  (overlay-put overlay 'before-string "")
793                                  string)))
794                            (overlays-at (point))
795                            "")
796                           (propertize (make-string (- width column) ? )
797                                       'face (list :background color))))))
798         (forward-line 1)))))
799
800 (defun shr-previous-newline-padding-width (width)
801   (let ((overlays (overlays-at (point)))
802         (previous-width 0))
803     (if (null overlays)
804         width
805       (dolist (overlay overlays)
806         (setq previous-width
807               (+ previous-width
808                  (length (plist-get (overlay-properties overlay)
809                                     'before-string)))))
810       (+ width previous-width))))
811
812 (defun shr-put-color-1 (start end type color)
813   (let* ((old-props (get-text-property start 'face))
814          (do-put (and (listp old-props)
815                       (not (memq type old-props))))
816          change)
817     (while (< start end)
818       (setq change (next-single-property-change start 'face nil end))
819       (when do-put
820         (put-text-property start change 'face
821                            (nconc (list type color) old-props)))
822       (setq old-props (get-text-property change 'face))
823       (setq do-put (and (listp old-props)
824                         (not (memq type old-props))))
825       (setq start change))
826     (when (and do-put
827                (> end start))
828       (put-text-property start end 'face
829                          (nconc (list type color old-props))))))
830
831 ;;; Tag-specific rendering rules.
832
833 (defun shr-tag-body (cont)
834   (let* ((start (point))
835          (fgcolor (cdr (or (assq :fgcolor cont)
836                            (assq :text cont))))
837          (bgcolor (cdr (assq :bgcolor cont)))
838          (shr-stylesheet (list (cons 'color fgcolor)
839                                (cons 'background-color bgcolor))))
840     (shr-generic cont)
841     (shr-colorize-region start (point) fgcolor bgcolor)))
842
843 (defun shr-tag-style (cont)
844   )
845
846 (defun shr-tag-script (cont)
847   )
848
849 (defun shr-tag-comment (cont)
850   )
851
852 (defun shr-tag-sup (cont)
853   (let ((start (point)))
854     (shr-generic cont)
855     (put-text-property start (point) 'display '(raise 0.5))))
856
857 (defun shr-tag-sub (cont)
858   (let ((start (point)))
859     (shr-generic cont)
860     (put-text-property start (point) 'display '(raise -0.5))))
861
862 (defun shr-tag-label (cont)
863   (shr-generic cont)
864   (shr-ensure-paragraph))
865
866 (defun shr-tag-p (cont)
867   (shr-ensure-paragraph)
868   (shr-indent)
869   (shr-generic cont)
870   (shr-ensure-paragraph))
871
872 (defun shr-tag-div (cont)
873   (shr-ensure-newline)
874   (shr-indent)
875   (shr-generic cont)
876   (shr-ensure-newline))
877
878 (defun shr-tag-s (cont)
879   (shr-fontize-cont cont 'shr-strike-through))
880
881 (defun shr-tag-del (cont)
882   (shr-fontize-cont cont 'shr-strike-through))
883
884 (defun shr-tag-b (cont)
885   (shr-fontize-cont cont 'bold))
886
887 (defun shr-tag-i (cont)
888   (shr-fontize-cont cont 'italic))
889
890 (defun shr-tag-em (cont)
891   (shr-fontize-cont cont 'bold))
892
893 (defun shr-tag-strong (cont)
894   (shr-fontize-cont cont 'bold))
895
896 (defun shr-tag-u (cont)
897   (shr-fontize-cont cont 'underline))
898
899 (defun shr-parse-style (style)
900   (when style
901     (save-match-data
902       (when (string-match "\n" style)
903         (setq style (replace-match " " t t style))))
904     (let ((plist nil))
905       (dolist (elem (split-string style ";"))
906         (when elem
907           (setq elem (split-string elem ":"))
908           (when (and (car elem)
909                      (cadr elem))
910             (let ((name (replace-regexp-in-string "^ +\\| +$" "" (car elem)))
911                   (value (replace-regexp-in-string "^ +\\| +$" "" (cadr elem))))
912               (when (string-match " *!important\\'" value)
913                 (setq value (substring value 0 (match-beginning 0))))
914               (push (cons (intern name obarray)
915                           value)
916                     plist)))))
917       plist)))
918
919 (defun shr-tag-base (cont)
920   (setq shr-base (cdr (assq :href cont))))
921
922 (defun shr-tag-a (cont)
923   (let ((url (cdr (assq :href cont)))
924         (title (cdr (assq :title cont)))
925         (start (point))
926         shr-start)
927     (shr-generic cont)
928     (shr-urlify (or shr-start start) (shr-expand-url url) title)))
929
930 (defun shr-tag-object (cont)
931   (let ((start (point))
932         url)
933     (dolist (elem cont)
934       (when (eq (car elem) 'embed)
935         (setq url (or url (cdr (assq :src (cdr elem))))))
936       (when (and (eq (car elem) 'param)
937                  (equal (cdr (assq :name (cdr elem))) "movie"))
938         (setq url (or url (cdr (assq :value (cdr elem)))))))
939     (when url
940       (shr-insert " [multimedia] ")
941       (shr-urlify start (shr-expand-url url)))
942     (shr-generic cont)))
943
944 (defun shr-tag-video (cont)
945   (let ((image (cdr (assq :poster cont)))
946         (url (cdr (assq :src cont)))
947         (start (point)))
948     (shr-tag-img nil image)
949     (shr-urlify start (shr-expand-url url))))
950
951 (defun shr-tag-img (cont &optional url)
952   (when (or url
953             (and cont
954                  (cdr (assq :src cont))))
955     (when (and (> (current-column) 0)
956                (not (eq shr-state 'image)))
957       (insert "\n"))
958     (let ((alt (cdr (assq :alt cont)))
959           (url (shr-expand-url (or url (cdr (assq :src cont))))))
960       (let ((start (point-marker)))
961         (when (zerop (length alt))
962           (setq alt "*"))
963         (cond
964          ((or (member (cdr (assq :height cont)) '("0" "1"))
965               (member (cdr (assq :width cont)) '("0" "1")))
966           ;; Ignore zero-sized or single-pixel images.
967           )
968          ((and (not shr-inhibit-images)
969                (string-match "\\`cid:" url))
970           (let ((url (substring url (match-end 0)))
971                 image)
972             (if (or (not shr-content-function)
973                     (not (setq image (funcall shr-content-function url))))
974                 (insert alt)
975               (funcall shr-put-image-function image alt))))
976          ((or shr-inhibit-images
977               (and shr-blocked-images
978                    (string-match shr-blocked-images url)))
979           (setq shr-start (point))
980           (let ((shr-state 'space))
981             (if (> (string-width alt) 8)
982                 (shr-insert (truncate-string-to-width alt 8))
983               (shr-insert alt))))
984          ((and (not shr-ignore-cache)
985                (url-is-cached (shr-encode-url url)))
986           (funcall shr-put-image-function (shr-get-image-data url) alt))
987          (t
988           (insert alt " ")
989           (when (and shr-ignore-cache
990                      (url-is-cached (shr-encode-url url)))
991             (let ((file (url-cache-create-filename (shr-encode-url url))))
992               (when (file-exists-p file)
993                 (delete-file file))))
994           (url-queue-retrieve
995            (shr-encode-url url) 'shr-image-fetched
996            (list (current-buffer) start (set-marker (make-marker) (1- (point))))
997            t t)))
998         (when (zerop shr-table-depth) ;; We are not in a table.
999           (put-text-property start (point) 'keymap shr-map)
1000           (put-text-property start (point) 'shr-alt alt)
1001           (put-text-property start (point) 'image-url url)
1002           (put-text-property start (point) 'image-displayer
1003                              (shr-image-displayer shr-content-function))
1004           (put-text-property start (point) 'help-echo alt))
1005         (setq shr-state 'image)))))
1006
1007 (defun shr-tag-pre (cont)
1008   (let ((shr-folding-mode 'none))
1009     (shr-ensure-newline)
1010     (shr-indent)
1011     (shr-generic cont)
1012     (shr-ensure-newline)))
1013
1014 (defun shr-tag-blockquote (cont)
1015   (shr-ensure-paragraph)
1016   (shr-indent)
1017   (let ((shr-indentation (+ shr-indentation 4)))
1018     (shr-generic cont))
1019   (shr-ensure-paragraph))
1020
1021 (defun shr-tag-ul (cont)
1022   (shr-ensure-paragraph)
1023   (let ((shr-list-mode 'ul))
1024     (shr-generic cont))
1025   (shr-ensure-paragraph))
1026
1027 (defun shr-tag-ol (cont)
1028   (shr-ensure-paragraph)
1029   (let ((shr-list-mode 1))
1030     (shr-generic cont))
1031   (shr-ensure-paragraph))
1032
1033 (defun shr-tag-li (cont)
1034   (shr-ensure-paragraph)
1035   (shr-indent)
1036   (let* ((bullet
1037           (if (numberp shr-list-mode)
1038               (prog1
1039                   (format "%d " shr-list-mode)
1040                 (setq shr-list-mode (1+ shr-list-mode)))
1041             "* "))
1042          (shr-indentation (+ shr-indentation (length bullet))))
1043     (insert bullet)
1044     (shr-generic cont)))
1045
1046 (defun shr-tag-br (cont)
1047   (unless (bolp)
1048     (insert "\n")
1049     (shr-indent))
1050   (shr-generic cont))
1051
1052 (defun shr-tag-h1 (cont)
1053   (shr-heading cont 'bold 'underline))
1054
1055 (defun shr-tag-h2 (cont)
1056   (shr-heading cont 'bold))
1057
1058 (defun shr-tag-h3 (cont)
1059   (shr-heading cont 'italic))
1060
1061 (defun shr-tag-h4 (cont)
1062   (shr-heading cont))
1063
1064 (defun shr-tag-h5 (cont)
1065   (shr-heading cont))
1066
1067 (defun shr-tag-h6 (cont)
1068   (shr-heading cont))
1069
1070 (defun shr-tag-hr (cont)
1071   (shr-ensure-newline)
1072   (insert (make-string shr-width shr-hr-line) "\n"))
1073
1074 (defun shr-tag-title (cont)
1075   (shr-heading cont 'bold 'underline))
1076
1077 (defun shr-tag-font (cont)
1078   (let* ((start (point))
1079          (color (cdr (assq :color cont)))
1080          (shr-stylesheet (nconc (list (cons 'color color))
1081                                 shr-stylesheet)))
1082     (shr-generic cont)
1083     (when color
1084       (shr-colorize-region start (point) color
1085                            (cdr (assq 'background-color shr-stylesheet))))))
1086
1087 ;;; Table rendering algorithm.
1088
1089 ;; Table rendering is the only complicated thing here.  We do this by
1090 ;; first counting how many TDs there are in each TR, and registering
1091 ;; how wide they think they should be ("width=45%", etc).  Then we
1092 ;; render each TD separately (this is done in temporary buffers, so
1093 ;; that we can use all the rendering machinery as if we were in the
1094 ;; main buffer).  Now we know how much space each TD really takes, so
1095 ;; we then render everything again with the new widths, and finally
1096 ;; insert all these boxes into the main buffer.
1097 (defun shr-tag-table-1 (cont)
1098   (setq cont (or (cdr (assq 'tbody cont))
1099                  cont))
1100   (let* ((shr-inhibit-images t)
1101          (shr-table-depth (1+ shr-table-depth))
1102          (shr-kinsoku-shorten t)
1103          ;; Find all suggested widths.
1104          (columns (shr-column-specs cont))
1105          ;; Compute how many characters wide each TD should be.
1106          (suggested-widths (shr-pro-rate-columns columns))
1107          ;; Do a "test rendering" to see how big each TD is (this can
1108          ;; be smaller (if there's little text) or bigger (if there's
1109          ;; unbreakable text).
1110          (sketch (shr-make-table cont suggested-widths))
1111          ;; Compute the "natural" width by setting each column to 500
1112          ;; characters and see how wide they really render.
1113          (natural (shr-make-table cont (make-vector (length columns) 500)))
1114          (sketch-widths (shr-table-widths sketch natural 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 natural-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) column))
1260           (setq i (1+ i)))))
1261     (dolist (row natural-table)
1262       (let ((i 0))
1263         (dolist (column row)
1264           (aset natural-widths i (max (aref natural-widths i) column))
1265           (setq i (1+ i)))))
1266     (let ((extra (- (apply '+ (append suggested-widths nil))
1267                     (apply '+ (append widths nil))))
1268           (expanded-columns 0))
1269       ;; We have extra, unused space, so divide this space amongst the
1270       ;; columns.
1271       (when (> extra 0)
1272         ;; If the natural width is wider than the rendered width, we
1273         ;; want to allow the column to expand.
1274         (dotimes (i length)
1275           (when (> (aref natural-widths i) (aref widths i))
1276             (setq expanded-columns (1+ expanded-columns))))
1277         (dotimes (i length)
1278           (when (> (aref natural-widths i) (aref widths i))
1279             (aset widths i (min
1280                             (aref natural-widths i)
1281                             (+ (/ extra expanded-columns)
1282                                (aref widths i))))))))
1283     widths))
1284
1285 (defun shr-make-table (cont widths &optional fill)
1286   (let ((trs nil))
1287     (dolist (row cont)
1288       (when (eq (car row) 'tr)
1289         (let ((tds nil)
1290               (columns (cdr row))
1291               (i 0)
1292               column)
1293           (while (< i (length widths))
1294             (setq column (pop columns))
1295             (when (or (memq (car column) '(td th))
1296                       (null column))
1297               (push (shr-render-td (cdr column) (aref widths i) fill)
1298                     tds)
1299               (setq i (1+ i))))
1300           (push (nreverse tds) trs))))
1301     (nreverse trs)))
1302
1303 (defun shr-render-td (cont width fill)
1304   (with-temp-buffer
1305     (let ((bgcolor (cdr (assq :bgcolor cont)))
1306           (fgcolor (cdr (assq :fgcolor cont)))
1307           (style (cdr (assq :style cont)))
1308           (shr-stylesheet shr-stylesheet)
1309           overlays actual-colors)
1310       (when style
1311         (setq style (and (string-match "color" style)
1312                          (shr-parse-style style))))
1313       (when bgcolor
1314         (setq style (nconc (list (cons 'background-color bgcolor)) style)))
1315       (when fgcolor
1316         (setq style (nconc (list (cons 'color fgcolor)) style)))
1317       (when style
1318         (setq shr-stylesheet (append style shr-stylesheet)))
1319       (let ((cache (cdr (assoc (cons width cont) shr-content-cache))))
1320         (if cache
1321             (progn
1322               (insert (car cache))
1323               (let ((end (length (car cache))))
1324                 (dolist (overlay (cadr cache))
1325                   (let ((new-overlay
1326                          (make-overlay (1+ (- end (nth 0 overlay)))
1327                                        (1+ (- end (nth 1 overlay)))))
1328                         (properties (nth 2 overlay)))
1329                     (while properties
1330                       (overlay-put new-overlay
1331                                    (pop properties) (pop properties)))))))
1332           (let ((shr-width width)
1333                 (shr-indentation 0))
1334             (shr-descend (cons 'td cont)))
1335           ;; Delete padding at the bottom of the TDs.
1336           (delete-region
1337            (point)
1338            (progn
1339              (skip-chars-backward " \t\n")
1340              (end-of-line)
1341              (point)))
1342           (push (list (cons width cont) (buffer-string)
1343                       (shr-overlays-in-region (point-min) (point-max)))
1344                 shr-content-cache)))
1345       (goto-char (point-min))
1346       (let ((max 0))
1347         (while (not (eobp))
1348           (end-of-line)
1349           (setq max (max max (current-column)))
1350           (forward-line 1))
1351         (when fill
1352           (goto-char (point-min))
1353           ;; If the buffer is totally empty, then put a single blank
1354           ;; line here.
1355           (if (zerop (buffer-size))
1356               (insert (make-string width ? ))
1357             ;; Otherwise, fill the buffer.
1358             (while (not (eobp))
1359               (end-of-line)
1360               (when (> (- width (current-column)) 0)
1361                 (insert (make-string (- width (current-column)) ? )))
1362               (forward-line 1)))
1363           (when style
1364             (setq actual-colors
1365                   (shr-colorize-region
1366                    (point-min) (point-max)
1367                    (cdr (assq 'color shr-stylesheet))
1368                    (cdr (assq 'background-color shr-stylesheet))))))
1369         (if fill
1370             (list max
1371                   (count-lines (point-min) (point-max))
1372                   (split-string (buffer-string) "\n")
1373                   (shr-collect-overlays)
1374                   (car actual-colors))
1375           max)))))
1376
1377 (defun shr-buffer-width ()
1378   (goto-char (point-min))
1379   (let ((max 0))
1380     (while (not (eobp))
1381       (end-of-line)
1382       (setq max (max max (current-column)))
1383       (forward-line 1))
1384     max))
1385
1386 (defun shr-collect-overlays ()
1387   (save-excursion
1388     (goto-char (point-min))
1389     (let ((overlays nil))
1390       (while (not (eobp))
1391         (push (shr-overlays-in-region (point) (line-end-position))
1392               overlays)
1393         (forward-line 1))
1394       (nreverse overlays))))
1395
1396 (defun shr-overlays-in-region (start end)
1397   (let (result)
1398     (dolist (overlay (overlays-in start end))
1399       (push (list (if (> start (overlay-start overlay))
1400                       (- end start)
1401                     (- end (overlay-start overlay)))
1402                   (if (< end (overlay-end overlay))
1403                       0
1404                     (- end (overlay-end overlay)))
1405                   (overlay-properties overlay))
1406             result))
1407     (nreverse result)))
1408
1409 (defun shr-pro-rate-columns (columns)
1410   (let ((total-percentage 0)
1411         (widths (make-vector (length columns) 0)))
1412     (dotimes (i (length columns))
1413       (setq total-percentage (+ total-percentage (aref columns i))))
1414     (setq total-percentage (/ 1.0 total-percentage))
1415     (dotimes (i (length columns))
1416       (aset widths i (max (truncate (* (aref columns i)
1417                                        total-percentage
1418                                        (- shr-width (1+ (length columns)))))
1419                           10)))
1420     widths))
1421
1422 ;; Return a summary of the number and shape of the TDs in the table.
1423 (defun shr-column-specs (cont)
1424   (let ((columns (make-vector (shr-max-columns cont) 1)))
1425     (dolist (row cont)
1426       (when (eq (car row) 'tr)
1427         (let ((i 0))
1428           (dolist (column (cdr row))
1429             (when (memq (car column) '(td th))
1430               (let ((width (cdr (assq :width (cdr column)))))
1431                 (when (and width
1432                            (string-match "\\([0-9]+\\)%" width)
1433                            (not (zerop (setq width (string-to-number
1434                                                     (match-string 1 width))))))
1435                   (aset columns i (/ width 100.0))))
1436               (setq i (1+ i)))))))
1437     columns))
1438
1439 (defun shr-count (cont elem)
1440   (let ((i 0))
1441     (dolist (sub cont)
1442       (when (eq (car sub) elem)
1443         (setq i (1+ i))))
1444     i))
1445
1446 (defun shr-max-columns (cont)
1447   (let ((max 0))
1448     (dolist (row cont)
1449       (when (eq (car row) 'tr)
1450         (setq max (max max (+ (shr-count (cdr row) 'td)
1451                               (shr-count (cdr row) 'th))))))
1452     max))
1453
1454 (provide 'shr)
1455
1456 ;;; shr.el ends here