]> code.delx.au - gnu-emacs/blob - lisp/net/eww.el
Merge from origin/emacs-24
[gnu-emacs] / lisp / net / eww.el
1 ;;; eww.el --- Emacs Web Wowser -*- lexical-binding:t -*-
2
3 ;; Copyright (C) 2013-2015 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 ;;; Code:
26
27 (eval-when-compile (require 'cl))
28 (require 'format-spec)
29 (require 'shr)
30 (require 'url)
31 (require 'url-queue)
32 (require 'url-util) ; for url-get-url-at-point
33 (require 'mm-url)
34 (eval-when-compile (require 'subr-x)) ;; for string-trim
35
36 (defgroup eww nil
37 "Emacs Web Wowser"
38 :version "25.1"
39 :link '(custom-manual "(eww) Top")
40 :group 'web
41 :prefix "eww-")
42
43 (defcustom eww-header-line-format "%t: %u"
44 "Header line format.
45 - %t is replaced by the title.
46 - %u is replaced by the URL."
47 :version "24.4"
48 :group 'eww
49 :type 'string)
50
51 (defcustom eww-search-prefix "https://duckduckgo.com/html/?q="
52 "Prefix URL to search engine"
53 :version "24.4"
54 :group 'eww
55 :type 'string)
56
57 (defcustom eww-download-directory "~/Downloads/"
58 "Directory where files will downloaded."
59 :version "24.4"
60 :group 'eww
61 :type 'string)
62
63 (defcustom eww-suggest-uris
64 '(eww-links-at-point
65 url-get-url-at-point
66 eww-current-url)
67 "List of functions called to form the list of default URIs for `eww'.
68 Each of the elements is a function returning either a string or a list
69 of strings. The results will be joined into a single list with
70 duplicate entries (if any) removed."
71 :version "25.1"
72 :group 'eww
73 :type 'hook
74 :options '(eww-links-at-point
75 url-get-url-at-point
76 eww-current-url))
77
78 (defcustom eww-bookmarks-directory user-emacs-directory
79 "Directory where bookmark files will be stored."
80 :version "25.1"
81 :group 'eww
82 :type 'string)
83
84 (defcustom eww-desktop-remove-duplicates t
85 "Whether to remove duplicates from the history when saving desktop data.
86 If non-nil, repetitive EWW history entries (comprising of the URI, the
87 title, and the point position) will not be saved as part of the Emacs
88 desktop. Otherwise, such entries will be retained."
89 :version "25.1"
90 :group 'eww
91 :type 'boolean)
92
93 (defcustom eww-restore-desktop nil
94 "How to restore EWW buffers on `desktop-restore'.
95 If t or 'auto, the buffers will be reloaded automatically.
96 If nil, buffers will require manual reload, and will contain the text
97 specified in `eww-restore-reload-prompt' instead of the actual Web
98 page contents."
99 :version "25.1"
100 :group 'eww
101 :type '(choice (const :tag "Restore all automatically" t)
102 (const :tag "Require manual reload" nil)))
103
104 (defcustom eww-restore-reload-prompt
105 "\n\n *** Use \\[eww-reload] to reload this buffer. ***\n"
106 "The string to put in the buffers not reloaded on `desktop-restore'.
107 This prompt will be used if `eww-restore-desktop' is nil.
108
109 The string will be passed through `substitute-command-keys'."
110 :version "25.1"
111 :group 'eww
112 :type 'string)
113
114 (defcustom eww-history-limit 50
115 "Maximum number of entries to retain in the history."
116 :version "25.1"
117 :group 'eww
118 :type '(choice (const :tag "Unlimited" nil)
119 integer))
120
121 (defcustom eww-use-external-browser-for-content-type
122 "\\`\\(video/\\|audio/\\|application/ogg\\)"
123 "Always use external browser for specified content-type."
124 :version "24.4"
125 :group 'eww
126 :type '(choice (const :tag "Never" nil)
127 regexp))
128
129 (defcustom eww-after-render-hook nil
130 "A hook called after eww has finished rendering the buffer."
131 :version "25.1"
132 :group 'eww
133 :type 'hook)
134
135 (defcustom eww-form-checkbox-selected-symbol "[X]"
136 "Symbol used to represent a selected checkbox.
137 See also `eww-form-checkbox-symbol'."
138 :version "24.4"
139 :group 'eww
140 :type '(choice (const "[X]")
141 (const "☒") ; Unicode BALLOT BOX WITH X
142 (const "☑") ; Unicode BALLOT BOX WITH CHECK
143 string))
144
145 (defcustom eww-form-checkbox-symbol "[ ]"
146 "Symbol used to represent a checkbox.
147 See also `eww-form-checkbox-selected-symbol'."
148 :version "24.4"
149 :group 'eww
150 :type '(choice (const "[ ]")
151 (const "☐") ; Unicode BALLOT BOX
152 string))
153
154 (defface eww-form-submit
155 '((((type x w32 ns) (class color)) ; Like default mode line
156 :box (:line-width 2 :style released-button)
157 :background "#808080" :foreground "black"))
158 "Face for eww buffer buttons."
159 :version "24.4"
160 :group 'eww)
161
162 (defface eww-form-file
163 '((((type x w32 ns) (class color)) ; Like default mode line
164 :box (:line-width 2 :style released-button)
165 :background "#808080" :foreground "black"))
166 "Face for eww buffer buttons."
167 :version "25.1"
168 :group 'eww)
169
170 (defface eww-form-checkbox
171 '((((type x w32 ns) (class color)) ; Like default mode line
172 :box (:line-width 2 :style released-button)
173 :background "lightgrey" :foreground "black"))
174 "Face for eww buffer buttons."
175 :version "24.4"
176 :group 'eww)
177
178 (defface eww-form-select
179 '((((type x w32 ns) (class color)) ; Like default mode line
180 :box (:line-width 2 :style released-button)
181 :background "lightgrey" :foreground "black"))
182 "Face for eww buffer buttons."
183 :version "24.4"
184 :group 'eww)
185
186 (defface eww-form-text
187 '((t (:background "#505050"
188 :foreground "white"
189 :box (:line-width 1))))
190 "Face for eww text inputs."
191 :version "24.4"
192 :group 'eww)
193
194 (defface eww-form-textarea
195 '((t (:background "#C0C0C0"
196 :foreground "black"
197 :box (:line-width 1))))
198 "Face for eww textarea inputs."
199 :version "24.4"
200 :group 'eww)
201
202 (defface eww-invalid-certificate
203 '((default :weight bold)
204 (((class color)) :foreground "red"))
205 "Face for web pages with invalid certificates."
206 :version "25.1"
207 :group 'eww)
208
209 (defface eww-valid-certificate
210 '((default :weight bold)
211 (((class color)) :foreground "ForestGreen"))
212 "Face for web pages with valid certificates."
213 :version "25.1"
214 :group 'eww)
215
216 (defvar eww-data nil)
217 (defvar eww-history nil)
218 (defvar eww-history-position 0)
219
220 (defvar eww-local-regex "localhost"
221 "When this regex is found in the URL, it's not a keyword but an address.")
222
223 (defvar eww-link-keymap
224 (let ((map (copy-keymap shr-map)))
225 (define-key map "\r" 'eww-follow-link)
226 map))
227
228 (defun eww-suggested-uris nil
229 "Return the list of URIs to suggest at the `eww' prompt.
230 This list can be customized via `eww-suggest-uris'."
231 (let ((obseen (make-vector 42 0))
232 (uris nil))
233 (dolist (fun eww-suggest-uris)
234 (let ((ret (funcall fun)))
235 (dolist (uri (if (stringp ret) (list ret) ret))
236 (when (and uri (not (intern-soft uri obseen)))
237 (intern uri obseen)
238 (push uri uris)))))
239 (nreverse uris)))
240
241 ;;;###autoload
242 (defun eww (url)
243 "Fetch URL and render the page.
244 If the input doesn't look like an URL or a domain name, the
245 word(s) will be searched for via `eww-search-prefix'."
246 (interactive
247 (let* ((uris (eww-suggested-uris))
248 (prompt (concat "Enter URL or keywords"
249 (if uris (format " (default %s)" (car uris)) "")
250 ": ")))
251 (list (read-string prompt nil nil uris))))
252 (setq url (string-trim url))
253 (cond ((string-match-p "\\`file:/" url))
254 ;; Don't mangle file: URLs at all.
255 ((string-match-p "\\`ftp://" url)
256 (user-error "FTP is not supported."))
257 (t
258 ;; Anything that starts with something that vaguely looks
259 ;; like a protocol designator is interpreted as a full URL.
260 (if (or (string-match "\\`[A-Za-z]+:" url)
261 ;; Also try to match "naked" URLs like
262 ;; en.wikipedia.org/wiki/Free software
263 (string-match "\\`[A-Za-z_]+\\.[A-Za-z._]+/" url)
264 (and (= (length (split-string url)) 1)
265 (or (and (not (string-match-p "\\`[\"\'].*[\"\']\\'" url))
266 (> (length (split-string url "[.:]")) 1))
267 (string-match eww-local-regex url))))
268 (progn
269 (unless (string-match-p "\\`[a-zA-Z][-a-zA-Z0-9+.]*://" url)
270 (setq url (concat "http://" url)))
271 ;; Some sites do not redirect final /
272 (when (string= (url-filename (url-generic-parse-url url)) "")
273 (setq url (concat url "/"))))
274 (setq url (concat eww-search-prefix
275 (replace-regexp-in-string " " "+" url))))))
276 (if (eq major-mode 'eww-mode)
277 (when (or (plist-get eww-data :url)
278 (plist-get eww-data :dom))
279 (eww-save-history))
280 (eww-setup-buffer)
281 (plist-put eww-data :url url)
282 (plist-put eww-data :title "")
283 (eww-update-header-line-format)
284 (let ((inhibit-read-only t))
285 (insert (format "Loading %s..." url))
286 (goto-char (point-min))))
287 (url-retrieve url 'eww-render
288 (list url nil (current-buffer))))
289
290 ;;;###autoload (defalias 'browse-web 'eww)
291
292 ;;;###autoload
293 (defun eww-open-file (file)
294 "Render a file using EWW."
295 (interactive "fFile: ")
296 (eww (concat "file://"
297 (and (memq system-type '(windows-nt ms-dos))
298 "/")
299 (expand-file-name file))))
300
301 ;;;###autoload
302 (defun eww-search-words (&optional beg end)
303 "Search the web for the text between the point and marker.
304 See the `eww-search-prefix' variable for the search engine used."
305 (interactive "r")
306 (eww (buffer-substring beg end)))
307
308 (defun eww-render (status url &optional point buffer encode)
309 (let ((redirect (plist-get status :redirect)))
310 (when redirect
311 (setq url redirect)))
312 (let* ((headers (eww-parse-headers))
313 (content-type
314 (mail-header-parse-content-type
315 (or (cdr (assoc "content-type" headers))
316 "text/plain")))
317 (charset (intern
318 (downcase
319 (or (cdr (assq 'charset (cdr content-type)))
320 (eww-detect-charset (equal (car content-type)
321 "text/html"))
322 "utf-8"))))
323 (data-buffer (current-buffer)))
324 ;; Save the https peer status.
325 (with-current-buffer buffer
326 (plist-put eww-data :peer (plist-get status :peer)))
327 (unwind-protect
328 (progn
329 (cond
330 ((and eww-use-external-browser-for-content-type
331 (string-match-p eww-use-external-browser-for-content-type
332 (car content-type)))
333 (eww-browse-with-external-browser url))
334 ((equal (car content-type) "text/html")
335 (eww-display-html charset url nil point buffer encode))
336 ((equal (car content-type) "application/pdf")
337 (eww-display-pdf))
338 ((string-match-p "\\`image/" (car content-type))
339 (eww-display-image buffer))
340 (t
341 (eww-display-raw buffer encode)))
342 (with-current-buffer buffer
343 (plist-put eww-data :url url)
344 (eww-update-header-line-format)
345 (setq eww-history-position 0)
346 (run-hooks 'eww-after-render-hook)))
347 (kill-buffer data-buffer))))
348
349 (defun eww-parse-headers ()
350 (let ((headers nil))
351 (goto-char (point-min))
352 (while (and (not (eobp))
353 (not (eolp)))
354 (when (looking-at "\\([^:]+\\): *\\(.*\\)")
355 (push (cons (downcase (match-string 1))
356 (match-string 2))
357 headers))
358 (forward-line 1))
359 (unless (eobp)
360 (forward-line 1))
361 headers))
362
363 (defun eww-detect-charset (html-p)
364 (let ((case-fold-search t)
365 (pt (point)))
366 (or (and html-p
367 (re-search-forward
368 "<meta[\t\n\r ]+[^>]*charset=\"?\\([^\t\n\r \"/>]+\\)[\\\"'.*]" nil t)
369 (goto-char pt)
370 (match-string 1))
371 (and (looking-at
372 "[\t\n\r ]*<\\?xml[\t\n\r ]+[^>]*encoding=\"\\([^\"]+\\)")
373 (match-string 1)))))
374
375 (declare-function libxml-parse-html-region "xml.c"
376 (start end &optional base-url))
377
378 (defun eww-display-html (charset url &optional document point buffer encode)
379 (unless (fboundp 'libxml-parse-html-region)
380 (error "This function requires Emacs to be compiled with libxml2"))
381 (unless (buffer-live-p buffer)
382 (error "Buffer %s doesn't exist" buffer))
383 ;; There should be a better way to abort loading images
384 ;; asynchronously.
385 (setq url-queue nil)
386 (let ((document
387 (or document
388 (list
389 'base (list (cons 'href url))
390 (progn
391 (when (or (and encode
392 (not (eq charset encode)))
393 (not (eq charset 'utf-8)))
394 (condition-case nil
395 (decode-coding-region (point) (point-max)
396 (or encode charset))
397 (coding-system-error nil)))
398 (libxml-parse-html-region (point) (point-max))))))
399 (source (and (null document)
400 (buffer-substring (point) (point-max)))))
401 (with-current-buffer buffer
402 (plist-put eww-data :source source)
403 (plist-put eww-data :dom document)
404 (let ((inhibit-read-only t)
405 (inhibit-modification-hooks t)
406 (shr-target-id (url-target (url-generic-parse-url url)))
407 (shr-external-rendering-functions
408 '((title . eww-tag-title)
409 (form . eww-tag-form)
410 (input . eww-tag-input)
411 (textarea . eww-tag-textarea)
412 (body . eww-tag-body)
413 (select . eww-tag-select)
414 (link . eww-tag-link)
415 (a . eww-tag-a))))
416 (erase-buffer)
417 (shr-insert-document document)
418 (cond
419 (point
420 (goto-char point))
421 (shr-target-id
422 (goto-char (point-min))
423 (let ((point (next-single-property-change
424 (point-min) 'shr-target-id)))
425 (when point
426 (goto-char point))))
427 (t
428 (goto-char (point-min))
429 ;; Don't leave point inside forms, because the normal eww
430 ;; commands aren't available there.
431 (while (and (not (eobp))
432 (get-text-property (point) 'eww-form))
433 (forward-line 1)))))
434 (eww-size-text-inputs))))
435
436 (defun eww-handle-link (dom)
437 (let* ((rel (dom-attr dom 'rel))
438 (href (dom-attr dom 'href))
439 (where (assoc
440 ;; The text associated with :rel is case-insensitive.
441 (if rel (downcase rel))
442 '(("next" . :next)
443 ;; Texinfo uses "previous", but HTML specifies
444 ;; "prev", so recognize both.
445 ("previous" . :previous)
446 ("prev" . :previous)
447 ;; HTML specifies "start" but also "contents",
448 ;; and Gtk seems to use "home". Recognize
449 ;; them all; but store them in different
450 ;; variables so that we can readily choose the
451 ;; "best" one.
452 ("start" . :start)
453 ("home" . :home)
454 ("contents" . :contents)
455 ("up" . :up)))))
456 (and href
457 where
458 (plist-put eww-data (cdr where) href))))
459
460 (defun eww-tag-link (dom)
461 (eww-handle-link dom)
462 (shr-generic dom))
463
464 (defun eww-tag-a (dom)
465 (eww-handle-link dom)
466 (let ((start (point)))
467 (shr-tag-a dom)
468 (put-text-property start (point) 'keymap eww-link-keymap)))
469
470 (defun eww-update-header-line-format ()
471 (setq header-line-format
472 (and eww-header-line-format
473 (let ((title (plist-get eww-data :title))
474 (peer (plist-get eww-data :peer)))
475 (when (zerop (length title))
476 (setq title "[untitled]"))
477 ;; This connection has is https.
478 (when peer
479 (setq title
480 (propertize title 'face
481 (if (plist-get peer :warnings)
482 'eww-invalid-certificate
483 'eww-valid-certificate))))
484 (replace-regexp-in-string
485 "%" "%%"
486 (format-spec
487 eww-header-line-format
488 `((?u . ,(or (plist-get eww-data :url) ""))
489 (?t . ,title))))))))
490
491 (defun eww-tag-title (dom)
492 (plist-put eww-data :title
493 (replace-regexp-in-string
494 "^ \\| $" ""
495 (replace-regexp-in-string "[ \t\r\n]+" " " (dom-text dom))))
496 (eww-update-header-line-format))
497
498 (defun eww-tag-body (dom)
499 (let* ((start (point))
500 (fgcolor (or (dom-attr dom 'fgcolor) (dom-attr dom 'text)))
501 (bgcolor (dom-attr dom 'bgcolor))
502 (shr-stylesheet (list (cons 'color fgcolor)
503 (cons 'background-color bgcolor))))
504 (shr-generic dom)
505 (shr-colorize-region start (point) fgcolor bgcolor)))
506
507 (defun eww-display-raw (buffer &optional encode)
508 (let ((data (buffer-substring (point) (point-max))))
509 (unless (buffer-live-p buffer)
510 (error "Buffer %s doesn't exist" buffer))
511 (with-current-buffer buffer
512 (let ((inhibit-read-only t))
513 (erase-buffer)
514 (insert data)
515 (unless (eq encode 'utf-8)
516 (encode-coding-region (point-min) (1+ (length data)) 'utf-8)
517 (condition-case nil
518 (decode-coding-region (point-min) (1+ (length data)) encode)
519 (coding-system-error nil))))
520 (goto-char (point-min)))))
521
522 (defun eww-display-image (buffer)
523 (let ((data (shr-parse-image-data)))
524 (unless (buffer-live-p buffer)
525 (error "Buffer %s doesn't exist" buffer))
526 (with-current-buffer buffer
527 (let ((inhibit-read-only t))
528 (erase-buffer)
529 (shr-put-image data nil))
530 (goto-char (point-min)))))
531
532 (declare-function mailcap-view-mime "mailcap" (type))
533 (defun eww-display-pdf ()
534 (let ((data (buffer-substring (point) (point-max))))
535 (switch-to-buffer (get-buffer-create "*eww pdf*"))
536 (let ((coding-system-for-write 'raw-text)
537 (inhibit-read-only t))
538 (erase-buffer)
539 (insert data)
540 (mailcap-view-mime "application/pdf")))
541 (goto-char (point-min)))
542
543 (defun eww-setup-buffer ()
544 (switch-to-buffer (get-buffer-create "*eww*"))
545 (let ((inhibit-read-only t))
546 (remove-overlays)
547 (erase-buffer))
548 (unless (eq major-mode 'eww-mode)
549 (eww-mode)))
550
551 (defun eww-current-url nil
552 "Return URI of the Web page the current EWW buffer is visiting."
553 (plist-get eww-data :url))
554
555 (defun eww-links-at-point ()
556 "Return list of URIs, if any, linked at point."
557 (remq nil
558 (list (get-text-property (point) 'shr-url)
559 (get-text-property (point) 'image-url))))
560
561 (defun eww-view-source ()
562 "View the HTML source code of the current page."
563 (interactive)
564 (let ((buf (get-buffer-create "*eww-source*"))
565 (source (plist-get eww-data :source)))
566 (with-current-buffer buf
567 (let ((inhibit-read-only t))
568 (delete-region (point-min) (point-max))
569 (insert (or source "no source"))
570 (goto-char (point-min))
571 (when (fboundp 'html-mode)
572 (html-mode))))
573 (view-buffer buf)))
574
575 (defun eww-readable ()
576 "View the main \"readable\" parts of the current web page.
577 This command uses heuristics to find the parts of the web page that
578 contains the main textual portion, leaving out navigation menus and
579 the like."
580 (interactive)
581 (let* ((old-data eww-data)
582 (dom (with-temp-buffer
583 (insert (plist-get old-data :source))
584 (condition-case nil
585 (decode-coding-region (point-min) (point-max) 'utf-8)
586 (coding-system-error nil))
587 (libxml-parse-html-region (point-min) (point-max)))))
588 (eww-score-readability dom)
589 (eww-save-history)
590 (eww-display-html nil nil
591 (eww-highest-readability dom)
592 nil (current-buffer))
593 (dolist (elem '(:source :url :title :next :previous :up))
594 (plist-put eww-data elem (plist-get old-data elem)))
595 (eww-update-header-line-format)))
596
597 (defun eww-score-readability (node)
598 (let ((score -1))
599 (cond
600 ((memq (dom-tag node) '(script head comment))
601 (setq score -2))
602 ((eq (dom-tag node) 'meta)
603 (setq score -1))
604 ((eq (dom-tag node) 'img)
605 (setq score 2))
606 ((eq (dom-tag node) 'a)
607 (setq score (- (length (split-string (dom-text node))))))
608 (t
609 (dolist (elem (dom-children node))
610 (if (stringp elem)
611 (setq score (+ score (length (split-string elem))))
612 (setq score (+ score
613 (or (cdr (assoc :eww-readability-score (cdr elem)))
614 (eww-score-readability elem))))))))
615 ;; Cache the score of the node to avoid recomputing all the time.
616 (dom-set-attribute node :eww-readability-score score)
617 score))
618
619 (defun eww-highest-readability (node)
620 (let ((result node)
621 highest)
622 (dolist (elem (dom-non-text-children node))
623 (when (> (or (dom-attr
624 (setq highest (eww-highest-readability elem))
625 :eww-readability-score)
626 most-negative-fixnum)
627 (or (dom-attr result :eww-readability-score)
628 most-negative-fixnum))
629 (setq result highest)))
630 result))
631
632 (defvar eww-mode-map
633 (let ((map (make-sparse-keymap)))
634 (set-keymap-parent map special-mode-map)
635 (define-key map "g" 'eww-reload) ;FIXME: revert-buffer-function instead!
636 (define-key map "G" 'eww)
637 (define-key map [?\t] 'shr-next-link)
638 (define-key map [?\M-\t] 'shr-previous-link)
639 (define-key map [backtab] 'shr-previous-link)
640 (define-key map [delete] 'scroll-down-command)
641 (define-key map "l" 'eww-back-url)
642 (define-key map "r" 'eww-forward-url)
643 (define-key map "n" 'eww-next-url)
644 (define-key map "p" 'eww-previous-url)
645 (define-key map "u" 'eww-up-url)
646 (define-key map "t" 'eww-top-url)
647 (define-key map "&" 'eww-browse-with-external-browser)
648 (define-key map "d" 'eww-download)
649 (define-key map "w" 'eww-copy-page-url)
650 (define-key map "C" 'url-cookie-list)
651 (define-key map "v" 'eww-view-source)
652 (define-key map "R" 'eww-readable)
653 (define-key map "H" 'eww-list-histories)
654 (define-key map "E" 'eww-set-character-encoding)
655 (define-key map "S" 'eww-list-buffers)
656
657 (define-key map "b" 'eww-add-bookmark)
658 (define-key map "B" 'eww-list-bookmarks)
659 (define-key map [(meta n)] 'eww-next-bookmark)
660 (define-key map [(meta p)] 'eww-previous-bookmark)
661
662 (easy-menu-define nil map ""
663 '("Eww"
664 ["Exit" quit-window t]
665 ["Close browser" quit-window t]
666 ["Reload" eww-reload t]
667 ["Back to previous page" eww-back-url
668 :active (not (zerop (length eww-history)))]
669 ["Forward to next page" eww-forward-url
670 :active (not (zerop eww-history-position))]
671 ["Browse with external browser" eww-browse-with-external-browser t]
672 ["Download" eww-download t]
673 ["View page source" eww-view-source]
674 ["Copy page URL" eww-copy-page-url t]
675 ["List histories" eww-list-histories t]
676 ["List buffers" eww-list-buffers t]
677 ["Add bookmark" eww-add-bookmark t]
678 ["List bookmarks" eww-list-bookmarks t]
679 ["List cookies" url-cookie-list t]
680 ["Character Encoding" eww-set-character-encoding]))
681 map))
682
683 (defvar eww-tool-bar-map
684 (let ((map (make-sparse-keymap)))
685 (dolist (tool-bar-item
686 '((quit-window . "close")
687 (eww-reload . "refresh")
688 (eww-back-url . "left-arrow")
689 (eww-forward-url . "right-arrow")
690 (eww-view-source . "show")
691 (eww-copy-page-url . "copy")
692 (eww-add-bookmark . "bookmark_add"))) ;; ...
693 (tool-bar-local-item-from-menu
694 (car tool-bar-item) (cdr tool-bar-item) map eww-mode-map))
695 map)
696 "Tool bar for `eww-mode'.")
697
698 (define-derived-mode eww-mode special-mode "eww"
699 "Mode for browsing the web."
700 (setq-local eww-data (list :title ""))
701 (setq-local browse-url-browser-function #'eww-browse-url)
702 (add-hook 'after-change-functions #'eww-process-text-input nil t)
703 (setq-local eww-history nil)
704 (setq-local eww-history-position 0)
705 (when (boundp 'tool-bar-map)
706 (setq-local tool-bar-map eww-tool-bar-map))
707 ;; desktop support
708 (setq-local desktop-save-buffer #'eww-desktop-misc-data)
709 ;; multi-page isearch support
710 (setq-local multi-isearch-next-buffer-function #'eww-isearch-next-buffer)
711 (setq truncate-lines t)
712 (buffer-disable-undo)
713 (setq buffer-read-only t))
714
715 ;;;###autoload
716 (defun eww-browse-url (url &optional new-window)
717 (cond (new-window
718 (switch-to-buffer (generate-new-buffer "*eww*"))
719 (eww-mode)))
720 (eww url))
721
722 (defun eww-back-url ()
723 "Go to the previously displayed page."
724 (interactive)
725 (when (>= eww-history-position (length eww-history))
726 (user-error "No previous page"))
727 (eww-save-history)
728 (setq eww-history-position (+ eww-history-position 2))
729 (eww-restore-history (elt eww-history (1- eww-history-position))))
730
731 (defun eww-forward-url ()
732 "Go to the next displayed page."
733 (interactive)
734 (when (zerop eww-history-position)
735 (user-error "No next page"))
736 (eww-save-history)
737 (eww-restore-history (elt eww-history (1- eww-history-position))))
738
739 (defun eww-restore-history (elem)
740 (let ((inhibit-read-only t)
741 (inhibit-modification-hooks t)
742 (text (plist-get elem :text)))
743 (setq eww-data elem)
744 (if (null text)
745 (eww-reload) ; FIXME: restore :point?
746 (erase-buffer)
747 (insert text)
748 (goto-char (plist-get elem :point))
749 (eww-update-header-line-format))))
750
751 (defun eww-next-url ()
752 "Go to the page marked `next'.
753 A page is marked `next' if rel=\"next\" appears in a <link>
754 or <a> tag."
755 (interactive)
756 (if (plist-get eww-data :next)
757 (eww-browse-url (shr-expand-url (plist-get eww-data :next)
758 (plist-get eww-data :url)))
759 (user-error "No `next' on this page")))
760
761 (defun eww-previous-url ()
762 "Go to the page marked `previous'.
763 A page is marked `previous' if rel=\"previous\" appears in a <link>
764 or <a> tag."
765 (interactive)
766 (if (plist-get eww-data :previous)
767 (eww-browse-url (shr-expand-url (plist-get eww-data :previous)
768 (plist-get eww-data :url)))
769 (user-error "No `previous' on this page")))
770
771 (defun eww-up-url ()
772 "Go to the page marked `up'.
773 A page is marked `up' if rel=\"up\" appears in a <link>
774 or <a> tag."
775 (interactive)
776 (if (plist-get eww-data :up)
777 (eww-browse-url (shr-expand-url (plist-get eww-data :up)
778 (plist-get eww-data :url)))
779 (user-error "No `up' on this page")))
780
781 (defun eww-top-url ()
782 "Go to the page marked `top'.
783 A page is marked `top' if rel=\"start\", rel=\"home\", or rel=\"contents\"
784 appears in a <link> or <a> tag."
785 (interactive)
786 (let ((best-url (or (plist-get eww-data :start)
787 (plist-get eww-data :contents)
788 (plist-get eww-data :home))))
789 (if best-url
790 (eww-browse-url (shr-expand-url best-url (plist-get eww-data :url)))
791 (user-error "No `top' for this page"))))
792
793 (defun eww-reload (&optional local encode)
794 "Reload the current page.
795 If LOCAL (the command prefix), don't reload the page from the
796 network, but just re-display the HTML already fetched."
797 (interactive "P")
798 (let ((url (plist-get eww-data :url)))
799 (if local
800 (if (null (plist-get eww-data :dom))
801 (error "No current HTML data")
802 (eww-display-html 'utf-8 url (plist-get eww-data :dom)
803 (point) (current-buffer)))
804 (url-retrieve url 'eww-render
805 (list url (point) (current-buffer) encode)))))
806
807 ;; Form support.
808
809 (defvar eww-form nil)
810
811 (defvar eww-submit-map
812 (let ((map (make-sparse-keymap)))
813 (define-key map "\r" 'eww-submit)
814 (define-key map [(control c) (control c)] 'eww-submit)
815 map))
816
817 (defvar eww-submit-file
818 (let ((map (make-sparse-keymap)))
819 (define-key map "\r" 'eww-select-file)
820 (define-key map [(control c) (control c)] 'eww-submit)
821 map))
822
823 (defvar eww-checkbox-map
824 (let ((map (make-sparse-keymap)))
825 (define-key map " " 'eww-toggle-checkbox)
826 (define-key map "\r" 'eww-toggle-checkbox)
827 (define-key map [(control c) (control c)] 'eww-submit)
828 map))
829
830 (defvar eww-text-map
831 (let ((map (make-keymap)))
832 (set-keymap-parent map text-mode-map)
833 (define-key map "\r" 'eww-submit)
834 (define-key map [(control a)] 'eww-beginning-of-text)
835 (define-key map [(control c) (control c)] 'eww-submit)
836 (define-key map [(control e)] 'eww-end-of-text)
837 (define-key map [?\t] 'shr-next-link)
838 (define-key map [?\M-\t] 'shr-previous-link)
839 map))
840
841 (defvar eww-textarea-map
842 (let ((map (make-keymap)))
843 (set-keymap-parent map text-mode-map)
844 (define-key map "\r" 'forward-line)
845 (define-key map [(control c) (control c)] 'eww-submit)
846 (define-key map [?\t] 'shr-next-link)
847 (define-key map [?\M-\t] 'shr-previous-link)
848 map))
849
850 (defvar eww-select-map
851 (let ((map (make-sparse-keymap)))
852 (define-key map "\r" 'eww-change-select)
853 (define-key map [(control c) (control c)] 'eww-submit)
854 map))
855
856 (defun eww-beginning-of-text ()
857 "Move to the start of the input field."
858 (interactive)
859 (goto-char (eww-beginning-of-field)))
860
861 (defun eww-end-of-text ()
862 "Move to the end of the text in the input field."
863 (interactive)
864 (goto-char (eww-end-of-field))
865 (let ((start (eww-beginning-of-field)))
866 (while (and (equal (following-char) ? )
867 (> (point) start))
868 (forward-char -1))
869 (when (> (point) start)
870 (forward-char 1))))
871
872 (defun eww-beginning-of-field ()
873 (cond
874 ((bobp)
875 (point))
876 ((not (eq (get-text-property (point) 'eww-form)
877 (get-text-property (1- (point)) 'eww-form)))
878 (point))
879 (t
880 (previous-single-property-change
881 (point) 'eww-form nil (point-min)))))
882
883 (defun eww-end-of-field ()
884 (1- (next-single-property-change
885 (point) 'eww-form nil (point-max))))
886
887 (defun eww-tag-form (dom)
888 (let ((eww-form (list (cons :method (dom-attr dom 'method))
889 (cons :action (dom-attr dom 'action))))
890 (start (point)))
891 (shr-ensure-paragraph)
892 (shr-generic dom)
893 (unless (bolp)
894 (insert "\n"))
895 (insert "\n")
896 (when (> (point) start)
897 (put-text-property start (1+ start)
898 'eww-form eww-form))))
899
900 (defun eww-form-submit (dom)
901 (let ((start (point))
902 (value (dom-attr dom 'value)))
903 (setq value
904 (if (zerop (length value))
905 "Submit"
906 value))
907 (insert value)
908 (add-face-text-property start (point) 'eww-form-submit)
909 (put-text-property start (point) 'eww-form
910 (list :eww-form eww-form
911 :value value
912 :type "submit"
913 :name (dom-attr dom 'name)))
914 (put-text-property start (point) 'keymap eww-submit-map)
915 (insert " ")))
916
917 (defun eww-form-checkbox (dom)
918 (let ((start (point)))
919 (if (dom-attr dom 'checked)
920 (insert eww-form-checkbox-selected-symbol)
921 (insert eww-form-checkbox-symbol))
922 (add-face-text-property start (point) 'eww-form-checkbox)
923 (put-text-property start (point) 'eww-form
924 (list :eww-form eww-form
925 :value (dom-attr dom 'value)
926 :type (downcase (dom-attr dom 'type))
927 :checked (dom-attr dom 'checked)
928 :name (dom-attr dom 'name)))
929 (put-text-property start (point) 'keymap eww-checkbox-map)
930 (insert " ")))
931
932 (defun eww-form-file (dom)
933 (let ((start (point))
934 (value (dom-attr dom 'value)))
935 (setq value
936 (if (zerop (length value))
937 " No file selected"
938 value))
939 (insert "Browse")
940 (add-face-text-property start (point) 'eww-form-file)
941 (insert value)
942 (put-text-property start (point) 'eww-form
943 (list :eww-form eww-form
944 :value (dom-attr dom 'value)
945 :type (downcase (dom-attr dom 'type))
946 :name (dom-attr dom 'name)))
947 (put-text-property start (point) 'keymap eww-submit-file)
948 (insert " ")))
949
950 (defun eww-select-file ()
951 "Change the value of the upload file menu under point."
952 (interactive)
953 (let* ((input (get-text-property (point) 'eww-form)))
954 (let ((filename
955 (let ((insert-default-directory t))
956 (read-file-name "filename: "))))
957 (eww-update-field filename (length "Browse"))
958 (plist-put input :filename filename))))
959
960 (defun eww-form-text (dom)
961 (let ((start (point))
962 (type (downcase (or (dom-attr dom 'type) "text")))
963 (value (or (dom-attr dom 'value) ""))
964 (width (string-to-number (or (dom-attr dom 'size) "40")))
965 (readonly-property (if (or (dom-attr dom 'disabled)
966 (dom-attr dom 'readonly))
967 'read-only
968 'inhibit-read-only)))
969 (insert value)
970 (when (< (length value) width)
971 (insert (make-string (- width (length value)) ? )))
972 (put-text-property start (point) 'face 'eww-form-text)
973 (put-text-property start (point) 'inhibit-read-only t)
974 (put-text-property start (point) 'local-map eww-text-map)
975 (put-text-property start (point) readonly-property t)
976 (put-text-property start (point) 'eww-form
977 (list :eww-form eww-form
978 :value value
979 :type type
980 :name (dom-attr dom 'name)))
981 (insert " ")))
982
983 (defconst eww-text-input-types '("text" "password" "textarea"
984 "color" "date" "datetime" "datetime-local"
985 "email" "month" "number" "search" "tel"
986 "time" "url" "week")
987 "List of input types which represent a text input.
988 See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
989
990 (defun eww-process-text-input (beg end replace-length)
991 (when-let (pos (and (< (1+ end) (point-max))
992 (> (1- end) (point-min))
993 (cond
994 ((get-text-property (1+ end) 'eww-form)
995 (1+ end))
996 ((get-text-property (1- end) 'eww-form)
997 (1- end)))))
998 (let* ((form (get-text-property pos 'eww-form))
999 (properties (text-properties-at pos))
1000 (inhibit-read-only t)
1001 (length (- end beg replace-length))
1002 (type (plist-get form :type)))
1003 (when (and form
1004 (member type eww-text-input-types))
1005 (cond
1006 ((> length 0)
1007 ;; Delete some space at the end.
1008 (save-excursion
1009 (goto-char
1010 (if (equal type "textarea")
1011 (1- (line-end-position))
1012 (eww-end-of-field)))
1013 (while (and (> length 0)
1014 (eql (following-char) ? ))
1015 (delete-region (1- (point)) (point))
1016 (cl-decf length))))
1017 ((< length 0)
1018 ;; Add padding.
1019 (save-excursion
1020 (goto-char (1- end))
1021 (goto-char
1022 (if (equal type "textarea")
1023 (1- (line-end-position))
1024 (1+ (eww-end-of-field))))
1025 (let ((start (point)))
1026 (insert (make-string (abs length) ? ))
1027 (set-text-properties start (point) properties))
1028 (goto-char (1- end)))))
1029 (set-text-properties (plist-get form :start) (plist-get form :end)
1030 properties)
1031 (let ((value (buffer-substring-no-properties
1032 (eww-beginning-of-field)
1033 (eww-end-of-field))))
1034 (when (string-match " +\\'" value)
1035 (setq value (substring value 0 (match-beginning 0))))
1036 (plist-put form :value value)
1037 (when (equal type "password")
1038 ;; Display passwords as asterisks.
1039 (let ((start (eww-beginning-of-field)))
1040 (put-text-property start (+ start (length value))
1041 'display (make-string (length value) ?*)))))))))
1042
1043 (defun eww-tag-textarea (dom)
1044 (let ((start (point))
1045 (value (or (dom-attr dom 'value) ""))
1046 (lines (string-to-number (or (dom-attr dom 'rows) "10")))
1047 (width (string-to-number (or (dom-attr dom 'cols) "10")))
1048 end)
1049 (shr-ensure-newline)
1050 (insert value)
1051 (shr-ensure-newline)
1052 (when (< (count-lines start (point)) lines)
1053 (dotimes (_ (- lines (count-lines start (point))))
1054 (insert "\n")))
1055 (setq end (point-marker))
1056 (goto-char start)
1057 (while (< (point) end)
1058 (end-of-line)
1059 (let ((pad (- width (- (point) (line-beginning-position)))))
1060 (when (> pad 0)
1061 (insert (make-string pad ? ))))
1062 (add-face-text-property (line-beginning-position)
1063 (point) 'eww-form-textarea)
1064 (put-text-property (line-beginning-position) (point) 'inhibit-read-only t)
1065 (put-text-property (line-beginning-position) (point)
1066 'local-map eww-textarea-map)
1067 (forward-line 1))
1068 (put-text-property start (point) 'eww-form
1069 (list :eww-form eww-form
1070 :value value
1071 :type "textarea"
1072 :name (dom-attr dom 'name)))))
1073
1074 (defun eww-tag-input (dom)
1075 (let ((type (downcase (or (dom-attr dom 'type) "text")))
1076 (start (point)))
1077 (cond
1078 ((or (equal type "checkbox")
1079 (equal type "radio"))
1080 (eww-form-checkbox dom))
1081 ((equal type "file")
1082 (eww-form-file dom))
1083 ((equal type "submit")
1084 (eww-form-submit dom))
1085 ((equal type "hidden")
1086 (let ((form eww-form)
1087 (name (dom-attr dom 'name)))
1088 ;; Don't add <input type=hidden> elements repeatedly.
1089 (while (and form
1090 (or (not (consp (car form)))
1091 (not (eq (caar form) 'hidden))
1092 (not (equal (plist-get (cdr (car form)) :name)
1093 name))))
1094 (setq form (cdr form)))
1095 (unless form
1096 (nconc eww-form (list
1097 (list 'hidden
1098 :name name
1099 :value (dom-attr dom 'value)))))))
1100 (t
1101 (eww-form-text dom)))
1102 (unless (= start (point))
1103 (put-text-property start (1+ start) 'help-echo "Input field"))))
1104
1105 (defun eww-tag-select (dom)
1106 (shr-ensure-paragraph)
1107 (let ((menu (list :name (dom-attr dom 'name)
1108 :eww-form eww-form))
1109 (options nil)
1110 (start (point))
1111 (max 0)
1112 opelem)
1113 (if (eq (dom-tag dom) 'optgroup)
1114 (dolist (groupelem (dom-children dom))
1115 (unless (dom-attr groupelem 'disabled)
1116 (setq opelem (append opelem (list groupelem)))))
1117 (setq opelem (list dom)))
1118 (dolist (elem opelem)
1119 (when (eq (dom-tag elem) 'option)
1120 (when (dom-attr elem 'selected)
1121 (nconc menu (list :value (dom-attr elem 'value))))
1122 (let ((display (dom-text elem)))
1123 (setq max (max max (length display)))
1124 (push (list 'item
1125 :value (dom-attr elem 'value)
1126 :display display)
1127 options))))
1128 (when options
1129 (setq options (nreverse options))
1130 ;; If we have no selected values, default to the first value.
1131 (unless (plist-get menu :value)
1132 (nconc menu (list :value (nth 2 (car options)))))
1133 (nconc menu options)
1134 (let ((selected (eww-select-display menu)))
1135 (insert selected
1136 (make-string (- max (length selected)) ? )))
1137 (put-text-property start (point) 'eww-form menu)
1138 (add-face-text-property start (point) 'eww-form-select)
1139 (put-text-property start (point) 'keymap eww-select-map)
1140 (unless (= start (point))
1141 (put-text-property start (1+ start) 'help-echo "select field"))
1142 (shr-ensure-paragraph))))
1143
1144 (defun eww-select-display (select)
1145 (let ((value (plist-get select :value))
1146 display)
1147 (dolist (elem select)
1148 (when (and (consp elem)
1149 (eq (car elem) 'item)
1150 (equal value (plist-get (cdr elem) :value)))
1151 (setq display (plist-get (cdr elem) :display))))
1152 display))
1153
1154 (defun eww-change-select ()
1155 "Change the value of the select drop-down menu under point."
1156 (interactive)
1157 (let* ((input (get-text-property (point) 'eww-form))
1158 (completion-ignore-case t)
1159 (options
1160 (delq nil
1161 (mapcar (lambda (elem)
1162 (and (consp elem)
1163 (eq (car elem) 'item)
1164 (cons (plist-get (cdr elem) :display)
1165 (plist-get (cdr elem) :value))))
1166 input)))
1167 (display
1168 (completing-read "Change value: " options nil 'require-match))
1169 (inhibit-read-only t))
1170 (plist-put input :value (cdr (assoc-string display options t)))
1171 (goto-char
1172 (eww-update-field display))))
1173
1174 (defun eww-update-field (string &optional offset)
1175 (if (not offset) (setq offset 0))
1176 (let ((properties (text-properties-at (point)))
1177 (start (+ (eww-beginning-of-field) offset))
1178 (current-end (1+ (eww-end-of-field)))
1179 (new-end (1+ (+ (eww-beginning-of-field) (length string)))))
1180 (delete-region start current-end)
1181 (forward-char offset)
1182 (insert string
1183 (make-string (- (- (+ new-end offset) start) (length string)) ? ))
1184 (if (= 0 offset) (set-text-properties start new-end properties))
1185 start))
1186
1187 (defun eww-toggle-checkbox ()
1188 "Toggle the value of the checkbox under point."
1189 (interactive)
1190 (let* ((input (get-text-property (point) 'eww-form))
1191 (type (plist-get input :type)))
1192 (if (equal type "checkbox")
1193 (goto-char
1194 (1+
1195 (if (plist-get input :checked)
1196 (progn
1197 (plist-put input :checked nil)
1198 (eww-update-field eww-form-checkbox-symbol))
1199 (plist-put input :checked t)
1200 (eww-update-field eww-form-checkbox-selected-symbol))))
1201 ;; Radio button. Switch all other buttons off.
1202 (let ((name (plist-get input :name)))
1203 (save-excursion
1204 (dolist (elem (eww-inputs (plist-get input :eww-form)))
1205 (when (equal (plist-get (cdr elem) :name) name)
1206 (goto-char (car elem))
1207 (if (not (eq (cdr elem) input))
1208 (progn
1209 (plist-put input :checked nil)
1210 (eww-update-field eww-form-checkbox-symbol))
1211 (plist-put input :checked t)
1212 (eww-update-field eww-form-checkbox-selected-symbol)))))
1213 (forward-char 1)))))
1214
1215 (defun eww-inputs (form)
1216 (let ((start (point-min))
1217 (inputs nil))
1218 (while (and start
1219 (< start (point-max)))
1220 (when (or (get-text-property start 'eww-form)
1221 (setq start (next-single-property-change start 'eww-form)))
1222 (when (eq (plist-get (get-text-property start 'eww-form) :eww-form)
1223 form)
1224 (push (cons start (get-text-property start 'eww-form))
1225 inputs))
1226 (setq start (next-single-property-change start 'eww-form))))
1227 (nreverse inputs)))
1228
1229 (defun eww-size-text-inputs ()
1230 (let ((start (point-min)))
1231 (while (and start
1232 (< start (point-max)))
1233 (when (or (get-text-property start 'eww-form)
1234 (setq start (next-single-property-change start 'eww-form)))
1235 (let ((props (get-text-property start 'eww-form)))
1236 (plist-put props :start start)
1237 (setq start (next-single-property-change
1238 start 'eww-form nil (point-max)))
1239 (plist-put props :end start))))))
1240
1241 (defun eww-input-value (input)
1242 (let ((type (plist-get input :type))
1243 (value (plist-get input :value)))
1244 (cond
1245 ((equal type "textarea")
1246 (with-temp-buffer
1247 (insert value)
1248 (goto-char (point-min))
1249 (while (re-search-forward "^ +\n\\| +$" nil t)
1250 (replace-match "" t t))
1251 (buffer-string)))
1252 (t
1253 (if (string-match " +\\'" value)
1254 (substring value 0 (match-beginning 0))
1255 value)))))
1256
1257 (defun eww-submit ()
1258 "Submit the current form."
1259 (interactive)
1260 (let* ((this-input (get-text-property (point) 'eww-form))
1261 (form (plist-get this-input :eww-form))
1262 values next-submit)
1263 (dolist (elem (sort (eww-inputs form)
1264 (lambda (o1 o2)
1265 (< (car o1) (car o2)))))
1266 (let* ((input (cdr elem))
1267 (input-start (car elem))
1268 (name (plist-get input :name)))
1269 (when name
1270 (cond
1271 ((member (plist-get input :type) '("checkbox" "radio"))
1272 (when (plist-get input :checked)
1273 (push (cons name (plist-get input :value))
1274 values)))
1275 ((equal (plist-get input :type) "file")
1276 (push (cons "file"
1277 (list (cons "filedata"
1278 (with-temp-buffer
1279 (insert-file-contents
1280 (plist-get input :filename))
1281 (buffer-string)))
1282 (cons "name" (plist-get input :name))
1283 (cons "filename" (plist-get input :filename))))
1284 values))
1285 ((equal (plist-get input :type) "submit")
1286 ;; We want the values from buttons if we hit a button if
1287 ;; we hit enter on it, or if it's the first button after
1288 ;; the field we did hit return on.
1289 (when (or (eq input this-input)
1290 (and (not (eq input this-input))
1291 (null next-submit)
1292 (> input-start (point))))
1293 (setq next-submit t)
1294 (push (cons name (plist-get input :value))
1295 values)))
1296 (t
1297 (push (cons name (eww-input-value input))
1298 values))))))
1299 (dolist (elem form)
1300 (when (and (consp elem)
1301 (eq (car elem) 'hidden))
1302 (push (cons (plist-get (cdr elem) :name)
1303 (or (plist-get (cdr elem) :value) ""))
1304 values)))
1305 (if (and (stringp (cdr (assq :method form)))
1306 (equal (downcase (cdr (assq :method form))) "post"))
1307 (let ((mtype))
1308 (dolist (x values mtype)
1309 (if (equal (car x) "file")
1310 (progn
1311 (setq mtype "multipart/form-data"))))
1312 (cond ((equal mtype "multipart/form-data")
1313 (let ((boundary (mml-compute-boundary '())))
1314 (let ((url-request-method "POST")
1315 (url-request-extra-headers
1316 (list (cons "Content-Type"
1317 (concat "multipart/form-data; boundary="
1318 boundary))))
1319 (url-request-data
1320 (mm-url-encode-multipart-form-data values boundary)))
1321 (eww-browse-url (shr-expand-url
1322 (cdr (assq :action form))
1323 (plist-get eww-data :url))))))
1324 (t
1325 (let ((url-request-method "POST")
1326 (url-request-extra-headers
1327 '(("Content-Type" .
1328 "application/x-www-form-urlencoded")))
1329 (url-request-data
1330 (mm-url-encode-www-form-urlencoded values)))
1331 (eww-browse-url (shr-expand-url
1332 (cdr (assq :action form))
1333 (plist-get eww-data :url)))))))
1334 (eww-browse-url
1335 (concat
1336 (if (cdr (assq :action form))
1337 (shr-expand-url (cdr (assq :action form)) (plist-get eww-data :url))
1338 (plist-get eww-data :url))
1339 "?"
1340 (mm-url-encode-www-form-urlencoded values))))))
1341
1342 (defun eww-browse-with-external-browser (&optional url)
1343 "Browse the current URL with an external browser.
1344 The browser to used is specified by the `shr-external-browser' variable."
1345 (interactive)
1346 (funcall shr-external-browser (or url (plist-get eww-data :url))))
1347
1348 (defun eww-follow-link (&optional external mouse-event)
1349 "Browse the URL under point.
1350 If EXTERNAL is single prefix, browse the URL using `shr-external-browser'.
1351 If EXTERNAL is double prefix, browse in new buffer."
1352 (interactive (list current-prefix-arg last-nonmenu-event))
1353 (mouse-set-point mouse-event)
1354 (let ((url (get-text-property (point) 'shr-url)))
1355 (cond
1356 ((not url)
1357 (message "No link under point"))
1358 ((string-match "^mailto:" url)
1359 (browse-url-mail url))
1360 ((and (consp external) (<= (car external) 4))
1361 (funcall shr-external-browser url))
1362 ;; This is a #target url in the same page as the current one.
1363 ((and (url-target (url-generic-parse-url url))
1364 (eww-same-page-p url (plist-get eww-data :url)))
1365 (let ((dom (plist-get eww-data :dom)))
1366 (eww-save-history)
1367 (eww-display-html 'utf-8 url dom nil (current-buffer))))
1368 (t
1369 (eww-browse-url url external)))))
1370
1371 (defun eww-same-page-p (url1 url2)
1372 "Return non-nil if both URLs represent the same page.
1373 Differences in #targets are ignored."
1374 (let ((obj1 (url-generic-parse-url url1))
1375 (obj2 (url-generic-parse-url url2)))
1376 (setf (url-target obj1) nil)
1377 (setf (url-target obj2) nil)
1378 (equal (url-recreate-url obj1) (url-recreate-url obj2))))
1379
1380 (defun eww-copy-page-url ()
1381 "Copy the URL of the current page into the kill ring."
1382 (interactive)
1383 (message "%s" (plist-get eww-data :url))
1384 (kill-new (plist-get eww-data :url)))
1385
1386 (defun eww-download ()
1387 "Download URL under point to `eww-download-directory'."
1388 (interactive)
1389 (let ((url (get-text-property (point) 'shr-url)))
1390 (if (not url)
1391 (message "No URL under point")
1392 (url-retrieve url 'eww-download-callback (list url)))))
1393
1394 (defun eww-download-callback (status url)
1395 (unless (plist-get status :error)
1396 (let* ((obj (url-generic-parse-url url))
1397 (path (car (url-path-and-query obj)))
1398 (file (eww-make-unique-file-name (file-name-nondirectory path)
1399 eww-download-directory)))
1400 (goto-char (point-min))
1401 (re-search-forward "\r?\n\r?\n")
1402 (write-region (point) (point-max) file)
1403 (message "Saved %s" file))))
1404
1405 (defun eww-make-unique-file-name (file directory)
1406 (cond
1407 ((zerop (length file))
1408 (setq file "!"))
1409 ((string-match "\\`[.]" file)
1410 (setq file (concat "!" file))))
1411 (let ((count 1))
1412 (while (file-exists-p (expand-file-name file directory))
1413 (setq file
1414 (if (string-match "\\`\\(.*\\)\\([.][^.]+\\)" file)
1415 (format "%s(%d)%s" (match-string 1 file)
1416 count (match-string 2 file))
1417 (format "%s(%d)" file count)))
1418 (setq count (1+ count)))
1419 (expand-file-name file directory)))
1420
1421 (defun eww-set-character-encoding (charset)
1422 "Set character encoding."
1423 (interactive "zUse character set (default utf-8): ")
1424 (if (null charset)
1425 (eww-reload nil 'utf-8)
1426 (eww-reload nil charset)))
1427
1428 ;;; Bookmarks code
1429
1430 (defvar eww-bookmarks nil)
1431
1432 (defun eww-add-bookmark ()
1433 "Bookmark the current page."
1434 (interactive)
1435 (eww-read-bookmarks)
1436 (dolist (bookmark eww-bookmarks)
1437 (when (equal (plist-get eww-data :url) (plist-get bookmark :url))
1438 (user-error "Already bookmarked")))
1439 (when (y-or-n-p "Bookmark this page?")
1440 (let ((title (replace-regexp-in-string "[\n\t\r]" " "
1441 (plist-get eww-data :title))))
1442 (setq title (replace-regexp-in-string "\\` +\\| +\\'" "" title))
1443 (push (list :url (plist-get eww-data :url)
1444 :title title
1445 :time (current-time-string))
1446 eww-bookmarks))
1447 (eww-write-bookmarks)
1448 (message "Bookmarked %s (%s)" (plist-get eww-data :url)
1449 (plist-get eww-data :title))))
1450
1451 (defun eww-write-bookmarks ()
1452 (with-temp-file (expand-file-name "eww-bookmarks" eww-bookmarks-directory)
1453 (insert ";; Auto-generated file; don't edit\n")
1454 (pp eww-bookmarks (current-buffer))))
1455
1456 (defun eww-read-bookmarks ()
1457 (let ((file (expand-file-name "eww-bookmarks" eww-bookmarks-directory)))
1458 (setq eww-bookmarks
1459 (unless (zerop (or (nth 7 (file-attributes file)) 0))
1460 (with-temp-buffer
1461 (insert-file-contents file)
1462 (read (current-buffer)))))))
1463
1464 ;;;###autoload
1465 (defun eww-list-bookmarks ()
1466 "Display the bookmarks."
1467 (interactive)
1468 (eww-bookmark-prepare)
1469 (pop-to-buffer "*eww bookmarks*"))
1470
1471 (defun eww-bookmark-prepare ()
1472 (eww-read-bookmarks)
1473 (unless eww-bookmarks
1474 (user-error "No bookmarks are defined"))
1475 (set-buffer (get-buffer-create "*eww bookmarks*"))
1476 (eww-bookmark-mode)
1477 (let* ((width (/ (window-width) 2))
1478 (format (format "%%-%ds %%s" width))
1479 (inhibit-read-only t)
1480 start title)
1481 (erase-buffer)
1482 (setq header-line-format (concat " " (format format "Title" "URL")))
1483 (dolist (bookmark eww-bookmarks)
1484 (setq start (point)
1485 title (plist-get bookmark :title))
1486 (when (> (length title) width)
1487 (setq title (substring title 0 width)))
1488 (insert (format format title (plist-get bookmark :url)) "\n")
1489 (put-text-property start (1+ start) 'eww-bookmark bookmark))
1490 (goto-char (point-min))))
1491
1492 (defvar eww-bookmark-kill-ring nil)
1493
1494 (defun eww-bookmark-kill ()
1495 "Kill the current bookmark."
1496 (interactive)
1497 (let* ((start (line-beginning-position))
1498 (bookmark (get-text-property start 'eww-bookmark))
1499 (inhibit-read-only t))
1500 (unless bookmark
1501 (user-error "No bookmark on the current line"))
1502 (forward-line 1)
1503 (push (buffer-substring start (point)) eww-bookmark-kill-ring)
1504 (delete-region start (point))
1505 (setq eww-bookmarks (delq bookmark eww-bookmarks))
1506 (eww-write-bookmarks)))
1507
1508 (defun eww-bookmark-yank ()
1509 "Yank a previously killed bookmark to the current line."
1510 (interactive)
1511 (unless eww-bookmark-kill-ring
1512 (user-error "No previously killed bookmark"))
1513 (beginning-of-line)
1514 (let ((inhibit-read-only t)
1515 (start (point))
1516 bookmark)
1517 (insert (pop eww-bookmark-kill-ring))
1518 (setq bookmark (get-text-property start 'eww-bookmark))
1519 (if (= start (point-min))
1520 (push bookmark eww-bookmarks)
1521 (let ((line (count-lines start (point))))
1522 (setcdr (nthcdr (1- line) eww-bookmarks)
1523 (cons bookmark (nthcdr line eww-bookmarks)))))
1524 (eww-write-bookmarks)))
1525
1526 (defun eww-bookmark-browse ()
1527 "Browse the bookmark under point in eww."
1528 (interactive)
1529 (let ((bookmark (get-text-property (line-beginning-position) 'eww-bookmark)))
1530 (unless bookmark
1531 (user-error "No bookmark on the current line"))
1532 (quit-window)
1533 (eww-browse-url (plist-get bookmark :url))))
1534
1535 (defun eww-next-bookmark ()
1536 "Go to the next bookmark in the list."
1537 (interactive)
1538 (let ((first nil)
1539 bookmark)
1540 (unless (get-buffer "*eww bookmarks*")
1541 (setq first t)
1542 (eww-bookmark-prepare))
1543 (with-current-buffer (get-buffer "*eww bookmarks*")
1544 (when (and (not first)
1545 (not (eobp)))
1546 (forward-line 1))
1547 (setq bookmark (get-text-property (line-beginning-position)
1548 'eww-bookmark))
1549 (unless bookmark
1550 (user-error "No next bookmark")))
1551 (eww-browse-url (plist-get bookmark :url))))
1552
1553 (defun eww-previous-bookmark ()
1554 "Go to the previous bookmark in the list."
1555 (interactive)
1556 (let ((first nil)
1557 bookmark)
1558 (unless (get-buffer "*eww bookmarks*")
1559 (setq first t)
1560 (eww-bookmark-prepare))
1561 (with-current-buffer (get-buffer "*eww bookmarks*")
1562 (if first
1563 (goto-char (point-max))
1564 (beginning-of-line))
1565 ;; On the final line.
1566 (when (eolp)
1567 (forward-line -1))
1568 (if (bobp)
1569 (user-error "No previous bookmark")
1570 (forward-line -1))
1571 (setq bookmark (get-text-property (line-beginning-position)
1572 'eww-bookmark)))
1573 (eww-browse-url (plist-get bookmark :url))))
1574
1575 (defvar eww-bookmark-mode-map
1576 (let ((map (make-sparse-keymap)))
1577 (suppress-keymap map)
1578 (define-key map "q" 'quit-window)
1579 (define-key map [(control k)] 'eww-bookmark-kill)
1580 (define-key map [(control y)] 'eww-bookmark-yank)
1581 (define-key map "\r" 'eww-bookmark-browse)
1582
1583 (easy-menu-define nil map
1584 "Menu for `eww-bookmark-mode-map'."
1585 '("Eww Bookmark"
1586 ["Exit" quit-window t]
1587 ["Browse" eww-bookmark-browse
1588 :active (get-text-property (line-beginning-position) 'eww-bookmark)]
1589 ["Kill" eww-bookmark-kill
1590 :active (get-text-property (line-beginning-position) 'eww-bookmark)]
1591 ["Yank" eww-bookmark-yank
1592 :active eww-bookmark-kill-ring]))
1593 map))
1594
1595 (define-derived-mode eww-bookmark-mode nil "eww bookmarks"
1596 "Mode for listing bookmarks.
1597
1598 \\{eww-bookmark-mode-map}"
1599 (buffer-disable-undo)
1600 (setq buffer-read-only t
1601 truncate-lines t))
1602
1603 ;;; History code
1604
1605 (defun eww-save-history ()
1606 (plist-put eww-data :point (point))
1607 (plist-put eww-data :text (buffer-string))
1608 (push eww-data eww-history)
1609 (setq eww-data (list :title ""))
1610 ;; Don't let the history grow infinitely. We store quite a lot of
1611 ;; data per page.
1612 (when-let (tail (and eww-history-limit
1613 (nthcdr eww-history-limit eww-history)))
1614 (setcdr tail nil)))
1615
1616 (defvar eww-current-buffer)
1617
1618 (defun eww-list-histories ()
1619 "List the eww-histories."
1620 (interactive)
1621 (when (null eww-history)
1622 (error "No eww-histories are defined"))
1623 (let ((eww-history-trans eww-history)
1624 (buffer (current-buffer)))
1625 (set-buffer (get-buffer-create "*eww history*"))
1626 (eww-history-mode)
1627 (setq-local eww-current-buffer buffer)
1628 (let ((inhibit-read-only t)
1629 (domain-length 0)
1630 (title-length 0)
1631 url title format start)
1632 (erase-buffer)
1633 (dolist (history eww-history-trans)
1634 (setq start (point))
1635 (setq domain-length (max domain-length (length (plist-get history :url))))
1636 (setq title-length (max title-length (length (plist-get history :title)))))
1637 (setq format (format "%%-%ds %%-%ds" title-length domain-length)
1638 header-line-format
1639 (concat " " (format format "Title" "URL")))
1640 (dolist (history eww-history-trans)
1641 (setq start (point))
1642 (setq url (plist-get history :url))
1643 (setq title (plist-get history :title))
1644 (insert (format format title url))
1645 (insert "\n")
1646 (put-text-property start (1+ start) 'eww-history history))
1647 (goto-char (point-min)))
1648 (pop-to-buffer "*eww history*")))
1649
1650 (defun eww-history-browse ()
1651 "Browse the history under point in eww."
1652 (interactive)
1653 (let ((history (get-text-property (line-beginning-position) 'eww-history)))
1654 (unless history
1655 (error "No history on the current line"))
1656 (let ((buffer eww-current-buffer))
1657 (quit-window)
1658 (when buffer
1659 (switch-to-buffer buffer)))
1660 (eww-restore-history history)))
1661
1662 (defvar eww-history-mode-map
1663 (let ((map (make-sparse-keymap)))
1664 (suppress-keymap map)
1665 (define-key map "q" 'quit-window)
1666 (define-key map "\r" 'eww-history-browse)
1667 ;; (define-key map "n" 'next-error-no-select)
1668 ;; (define-key map "p" 'previous-error-no-select)
1669
1670 (easy-menu-define nil map
1671 "Menu for `eww-history-mode-map'."
1672 '("Eww History"
1673 ["Exit" quit-window t]
1674 ["Browse" eww-history-browse
1675 :active (get-text-property (line-beginning-position) 'eww-history)]))
1676 map))
1677
1678 (define-derived-mode eww-history-mode nil "eww history"
1679 "Mode for listing eww-histories.
1680
1681 \\{eww-history-mode-map}"
1682 (buffer-disable-undo)
1683 (setq buffer-read-only t
1684 truncate-lines t))
1685
1686 ;;; eww buffers list
1687
1688 (defun eww-list-buffers ()
1689 "Enlist eww buffers."
1690 (interactive)
1691 (let (buffers-info
1692 (current (current-buffer)))
1693 (dolist (buffer (buffer-list))
1694 (with-current-buffer buffer
1695 (when (derived-mode-p 'eww-mode)
1696 (push (vector buffer (plist-get eww-data :title)
1697 (plist-get eww-data :url))
1698 buffers-info))))
1699 (unless buffers-info
1700 (error "No eww buffers"))
1701 (setq buffers-info (nreverse buffers-info)) ;more recent on top
1702 (set-buffer (get-buffer-create "*eww buffers*"))
1703 (eww-buffers-mode)
1704 (let ((inhibit-read-only t)
1705 (domain-length 0)
1706 (title-length 0)
1707 url title format start)
1708 (erase-buffer)
1709 (dolist (buffer-info buffers-info)
1710 (setq title-length (max title-length
1711 (length (elt buffer-info 1)))
1712 domain-length (max domain-length
1713 (length (elt buffer-info 2)))))
1714 (setq format (format "%%-%ds %%-%ds" title-length domain-length)
1715 header-line-format
1716 (concat " " (format format "Title" "URL")))
1717 (let ((line 0)
1718 (current-buffer-line 1))
1719 (dolist (buffer-info buffers-info)
1720 (setq start (point)
1721 title (elt buffer-info 1)
1722 url (elt buffer-info 2)
1723 line (1+ line))
1724 (insert (format format title url))
1725 (insert "\n")
1726 (let ((buffer (elt buffer-info 0)))
1727 (put-text-property start (1+ start) 'eww-buffer
1728 buffer)
1729 (when (eq current buffer)
1730 (setq current-buffer-line line))))
1731 (goto-char (point-min))
1732 (forward-line (1- current-buffer-line)))))
1733 (pop-to-buffer "*eww buffers*"))
1734
1735 (defun eww-buffer-select ()
1736 "Switch to eww buffer."
1737 (interactive)
1738 (let ((buffer (get-text-property (line-beginning-position)
1739 'eww-buffer)))
1740 (unless buffer
1741 (error "No buffer on current line"))
1742 (quit-window)
1743 (switch-to-buffer buffer)))
1744
1745 (defun eww-buffer-show ()
1746 "Display buffer under point in eww buffer list."
1747 (let ((buffer (get-text-property (line-beginning-position)
1748 'eww-buffer)))
1749 (unless buffer
1750 (error "No buffer on current line"))
1751 (other-window -1)
1752 (switch-to-buffer buffer)
1753 (other-window 1)))
1754
1755 (defun eww-buffer-show-next ()
1756 "Move to next eww buffer in the list and display it."
1757 (interactive)
1758 (forward-line)
1759 (when (eobp)
1760 (goto-char (point-min)))
1761 (eww-buffer-show))
1762
1763 (defun eww-buffer-show-previous ()
1764 "Move to previous eww buffer in the list and display it."
1765 (interactive)
1766 (beginning-of-line)
1767 (when (bobp)
1768 (goto-char (point-max)))
1769 (forward-line -1)
1770 (eww-buffer-show))
1771
1772 (defun eww-buffer-kill ()
1773 "Kill buffer from eww list."
1774 (interactive)
1775 (let* ((start (line-beginning-position))
1776 (buffer (get-text-property start 'eww-buffer))
1777 (inhibit-read-only t))
1778 (unless buffer
1779 (user-error "No buffer on the current line"))
1780 (kill-buffer buffer)
1781 (forward-line 1)
1782 (delete-region start (point)))
1783 (when (eobp)
1784 (forward-line -1))
1785 (eww-buffer-show))
1786
1787 (defvar eww-buffers-mode-map
1788 (let ((map (make-sparse-keymap)))
1789 (suppress-keymap map)
1790 (define-key map "q" 'quit-window)
1791 (define-key map [(control k)] 'eww-buffer-kill)
1792 (define-key map "\r" 'eww-buffer-select)
1793 (define-key map "n" 'eww-buffer-show-next)
1794 (define-key map "p" 'eww-buffer-show-previous)
1795
1796 (easy-menu-define nil map
1797 "Menu for `eww-buffers-mode-map'."
1798 '("Eww Buffers"
1799 ["Exit" quit-window t]
1800 ["Select" eww-buffer-select
1801 :active (get-text-property (line-beginning-position) 'eww-buffer)]
1802 ["Kill" eww-buffer-kill
1803 :active (get-text-property (line-beginning-position) 'eww-buffer)]))
1804 map))
1805
1806 (define-derived-mode eww-buffers-mode nil "eww buffers"
1807 "Mode for listing buffers.
1808
1809 \\{eww-buffers-mode-map}"
1810 (buffer-disable-undo)
1811 (setq buffer-read-only t
1812 truncate-lines t))
1813
1814 ;;; Desktop support
1815
1816 (defvar eww-desktop-data-save
1817 '(:url :title :point)
1818 "List of `eww-data' properties to preserve in the desktop file.
1819 Also used when saving `eww-history'.")
1820
1821 (defun eww-desktop-data-1 (alist)
1822 (let ((acc nil)
1823 (tail alist))
1824 (while tail
1825 (let ((k (car tail))
1826 (v (cadr tail)))
1827 (when (memq k eww-desktop-data-save)
1828 (setq acc (cons k (cons v acc)))))
1829 (setq tail (cddr tail)))
1830 acc))
1831
1832 (defun eww-desktop-history-duplicate (a b)
1833 (let ((tail a) (r t))
1834 (while tail
1835 (if (or (memq (car tail) '(:point)) ; ignore :point
1836 (equal (cadr tail)
1837 (plist-get b (car tail))))
1838 (setq tail (cddr tail))
1839 (setq tail nil
1840 r nil)))
1841 ;; .
1842 r))
1843
1844 (defun eww-desktop-misc-data (_directory)
1845 "Return a property list with data used to restore eww buffers.
1846 This list will contain, as :history, the list, whose first element is
1847 the value of `eww-data', and the tail is `eww-history'.
1848
1849 If `eww-desktop-remove-duplicates' is non-nil, duplicate
1850 entries (if any) will be removed from the list.
1851
1852 Only the properties listed in `eww-desktop-data-save' are included.
1853 Generally, the list should not include the (usually overly large)
1854 :dom, :source and :text properties."
1855 (let ((history (mapcar 'eww-desktop-data-1
1856 (cons eww-data eww-history))))
1857 (list :history (if eww-desktop-remove-duplicates
1858 (cl-remove-duplicates
1859 history :test 'eww-desktop-history-duplicate)
1860 history))))
1861
1862 (defun eww-restore-desktop (file-name buffer-name misc-data)
1863 "Restore an eww buffer from its desktop file record.
1864 If `eww-restore-desktop' is t or 'auto, this function will also
1865 initiate the retrieval of the respective URI in the background.
1866 Otherwise, the restored buffer will contain a prompt to do so by using
1867 \\[eww-reload]."
1868 (with-current-buffer (get-buffer-create buffer-name)
1869 (eww-mode)
1870 ;; NB: eww-history, eww-data are buffer-local per (eww-mode)
1871 (setq eww-history (cdr (plist-get misc-data :history))
1872 eww-data (or (car (plist-get misc-data :history))
1873 ;; backwards compatibility
1874 (list :url (plist-get misc-data :uri))))
1875 (unless file-name
1876 (when (plist-get eww-data :url)
1877 (case eww-restore-desktop
1878 ((t auto) (eww (plist-get eww-data :url)))
1879 ((zerop (buffer-size))
1880 (insert (substitute-command-keys
1881 eww-restore-reload-prompt))))))
1882 ;; .
1883 (current-buffer)))
1884
1885 (add-to-list 'desktop-locals-to-save
1886 'eww-history-position)
1887 (add-to-list 'desktop-buffer-mode-handlers
1888 '(eww-mode . eww-restore-desktop))
1889
1890 ;;; Isearch support
1891
1892 (defun eww-isearch-next-buffer (&optional _buffer wrap)
1893 "Go to the next page to search using `rel' attribute for navigation."
1894 (if wrap
1895 (condition-case nil
1896 (eww-top-url)
1897 (error nil))
1898 (if isearch-forward
1899 (eww-next-url)
1900 (eww-previous-url)))
1901 (current-buffer))
1902
1903 (provide 'eww)
1904
1905 ;;; eww.el ends here