1 ;;; eww.el --- Emacs Web Wowser
3 ;; Copyright (C) 2013 Free Software Foundation, Inc.
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
8 ;; This file is part of GNU Emacs.
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.
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.
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/>.
27 (eval-when-compile (require 'cl
))
28 (require 'format-spec
)
39 (defcustom eww-header-line-format
"%t: %u"
41 - %t is replaced by the title.
42 - %u is replaced by the URL."
47 (defcustom eww-search-prefix
"https://duckduckgo.com/html/?q="
48 "Prefix URL to search engine"
53 (defcustom eww-download-path
"~/Downloads/"
54 "Path where files will downloaded."
59 (defface eww-form-submit
60 '((((type x w32 ns
) (class color
)) ; Like default mode line
61 :box
(:line-width
2 :style released-button
)
62 :background
"#808080" :foreground
"black"))
63 "Face for eww buffer buttons."
67 (defface eww-form-checkbox
68 '((((type x w32 ns
) (class color
)) ; Like default mode line
69 :box
(:line-width
2 :style released-button
)
70 :background
"lightgrey" :foreground
"black"))
71 "Face for eww buffer buttons."
75 (defface eww-form-select
76 '((((type x w32 ns
) (class color
)) ; Like default mode line
77 :box
(:line-width
2 :style released-button
)
78 :background
"lightgrey" :foreground
"black"))
79 "Face for eww buffer buttons."
83 (defface eww-form-text
84 '((t (:background
"#505050"
86 :box
(:line-width
1))))
87 "Face for eww text inputs."
91 (defvar eww-current-url nil
)
92 (defvar eww-current-title
""
93 "Title of current page.")
94 (defvar eww-history nil
)
95 (defvar eww-history-position
0)
97 (defvar eww-next-url nil
)
98 (defvar eww-previous-url nil
)
99 (defvar eww-up-url nil
)
100 (defvar eww-home-url nil
)
101 (defvar eww-start-url nil
)
102 (defvar eww-contents-url nil
)
106 "Fetch URL and render the page.
107 If the input doesn't look like an URL or a domain name, the
108 word(s) will be searched for via `eww-search-prefix'."
109 (interactive "sEnter URL or keywords: ")
110 (if (and (= (length (split-string url
)) 1)
111 (> (length (split-string url
"\\.")) 1))
113 (unless (string-match-p "\\`[a-zA-Z][-a-zA-Z0-9+.]*://" url
)
114 (setq url
(concat "http://" url
)))
115 ;; some site don't redirect final /
116 (when (string= (url-filename (url-generic-parse-url url
)) "")
117 (setq url
(concat url
"/"))))
118 (unless (string-match-p "\\'file:" url
)
119 (setq url
(concat eww-search-prefix
120 (replace-regexp-in-string " " "+" url
)))))
121 (url-retrieve url
'eww-render
(list url
)))
124 (defun eww-open-file (file)
125 "Render a file using EWW."
126 (interactive "fFile: ")
127 (eww (concat "file://" (expand-file-name file
))))
129 (defun eww-render (status url
&optional point
)
130 (let ((redirect (plist-get status
:redirect
)))
132 (setq url redirect
)))
133 (set (make-local-variable 'eww-next-url
) nil
)
134 (set (make-local-variable 'eww-previous-url
) nil
)
135 (set (make-local-variable 'eww-up-url
) nil
)
136 (set (make-local-variable 'eww-home-url
) nil
)
137 (set (make-local-variable 'eww-start-url
) nil
)
138 (set (make-local-variable 'eww-contents-url
) nil
)
139 (let* ((headers (eww-parse-headers))
141 (and (string-match "#\\(.*\\)" url
)
142 (match-string 1 url
)))
144 (mail-header-parse-content-type
145 (or (cdr (assoc "content-type" headers
))
149 (or (cdr (assq 'charset
(cdr content-type
)))
150 (eww-detect-charset (equal (car content-type
)
153 (data-buffer (current-buffer)))
157 ((equal (car content-type
) "text/html")
158 (eww-display-html charset url
))
159 ((string-match "^image/" (car content-type
))
162 (eww-display-raw charset
)))
163 (setq eww-history-position
0)
168 (let ((point (next-single-property-change
169 (point-min) 'shr-target-id
)))
171 (goto-char (1+ point
)))))))
172 (kill-buffer data-buffer
))))
174 (defun eww-parse-headers ()
176 (goto-char (point-min))
177 (while (and (not (eobp))
179 (when (looking-at "\\([^:]+\\): *\\(.*\\)")
180 (push (cons (downcase (match-string 1))
188 (defun eww-detect-charset (html-p)
189 (let ((case-fold-search t
)
193 "<meta[\t\n\r ]+[^>]*charset=\"?\\([^\t\n\r \"/>]+\\)[\\\"'.*]" nil t
)
197 "[\t\n\r ]*<\\?xml[\t\n\r ]+[^>]*encoding=\"\\([^\"]+\\)")
200 (defun eww-display-html (charset url
)
201 (unless (eq charset
'utf8
)
202 (decode-coding-region (point) (point-max) charset
))
205 'base
(list (cons 'href url
))
206 (libxml-parse-html-region (point) (point-max)))))
208 (setq eww-current-url url
)
209 (eww-update-header-line-format)
210 (let ((inhibit-read-only t
)
211 (after-change-functions nil
)
213 (shr-external-rendering-functions
214 '((title . eww-tag-title
)
215 (form . eww-tag-form
)
216 (input . eww-tag-input
)
217 (textarea . eww-tag-textarea
)
218 (body . eww-tag-body
)
219 (select . eww-tag-select
)
220 (link . eww-tag-link
)
222 (shr-insert-document document
))
223 (goto-char (point-min))))
225 (defun eww-handle-link (cont)
226 (let* ((rel (assq :rel cont
))
227 (href (assq :href cont
))
229 ;; The text associated with :rel is case-insensitive.
230 (if rel
(downcase (cdr rel
)))
231 '(("next" . eww-next-url
)
232 ;; Texinfo uses "previous", but HTML specifies
233 ;; "prev", so recognize both.
234 ("previous" . eww-previous-url
)
235 ("prev" . eww-previous-url
)
236 ;; HTML specifies "start" but also "contents",
237 ;; and Gtk seems to use "home". Recognize
238 ;; them all; but store them in different
239 ;; variables so that we can readily choose the
241 ("start" . eww-start-url
)
242 ("home" . eww-home-url
)
243 ("contents" . eww-contents-url
)
244 ("up" . eww-up-url
)))))
247 (set (cdr where
) (cdr href
)))))
249 (defun eww-tag-link (cont)
250 (eww-handle-link cont
)
253 (defun eww-tag-a (cont)
254 (eww-handle-link cont
)
257 (defun eww-update-header-line-format ()
258 (if eww-header-line-format
259 (setq header-line-format
260 (replace-regexp-in-string
262 (format-spec eww-header-line-format
263 `((?u .
,eww-current-url
)
264 (?t .
,eww-current-title
)))))
265 (setq header-line-format nil
)))
267 (defun eww-tag-title (cont)
268 (setq eww-current-title
"")
270 (when (eq (car sub
) 'text
)
271 (setq eww-current-title
(concat eww-current-title
(cdr sub
)))))
272 (eww-update-header-line-format))
274 (defun eww-tag-body (cont)
275 (let* ((start (point))
276 (fgcolor (cdr (or (assq :fgcolor cont
)
278 (bgcolor (cdr (assq :bgcolor cont
)))
279 (shr-stylesheet (list (cons 'color fgcolor
)
280 (cons 'background-color bgcolor
))))
282 (eww-colorize-region start
(point) fgcolor bgcolor
)))
284 (defun eww-colorize-region (start end fg
&optional bg
)
286 (let ((new-colors (shr-color-check fg bg
)))
289 (add-face-text-property start end
290 (list :foreground
(cadr new-colors
))
293 (add-face-text-property start end
294 (list :background
(car new-colors
))
297 (defun eww-display-raw (charset)
298 (let ((data (buffer-substring (point) (point-max))))
300 (let ((inhibit-read-only t
))
302 (goto-char (point-min))))
304 (defun eww-display-image ()
305 (let ((data (buffer-substring (point) (point-max))))
307 (let ((inhibit-read-only t
))
308 (shr-put-image data nil
))
309 (goto-char (point-min))))
311 (defun eww-setup-buffer ()
312 (pop-to-buffer (get-buffer-create "*eww*"))
313 (let ((inhibit-read-only t
))
316 (unless (eq major-mode
'eww-mode
)
320 (let ((map (make-sparse-keymap)))
321 (suppress-keymap map
)
322 (define-key map
"q" 'eww-quit
)
323 (define-key map
"g" 'eww-reload
)
324 (define-key map
[tab] 'shr-next-link)
325 (define-key map [backtab] 'shr-previous-link)
326 (define-key map [delete] 'scroll-down-command)
327 (define-key map "\177" 'scroll-down-command)
328 (define-key map " " 'scroll-up-command)
329 (define-key map "l" 'eww-back-url)
330 (define-key map "f" 'eww-forward-url)
331 (define-key map "n" 'eww-next-url)
332 (define-key map "p" 'eww-previous-url)
333 (define-key map "u" 'eww-up-url)
334 (define-key map "t" 'eww-top-url)
335 (define-key map "&" 'eww-browse-with-external-browser)
336 (define-key map "d" 'eww-download)
337 (define-key map "w" 'eww-copy-page-url)
338 (define-key map "C" 'url-cookie-list)
340 (define-key map "b" 'eww-add-bookmark)
341 (define-key map "B" 'eww-list-bookmarks)
342 (define-key map [(meta n)] 'eww-next-bookmark)
343 (define-key map [(meta p)] 'eww-previous-bookmark)
345 (easy-menu-define nil map ""
348 ["Reload" eww-reload t]
349 ["Back to previous page" eww-back-url
350 :active (not (zerop (length eww-history)))]
351 ["Forward to next page" eww-forward-url
352 :active (not (zerop eww-history-position))]
353 ["Browse with external browser" eww-browse-with-external-browser t]
354 ["Download" eww-download t]
355 ["Copy page URL" eww-copy-page-url t]
356 ["Add bookmark" eww-add-bookmark t]
357 ["List bookmarks" eww-copy-page-url t]
358 ["List cookies" url-cookie-list t]))
361 (define-derived-mode eww-mode nil "eww"
362 "Mode for browsing the web.
365 (set (make-local-variable 'eww-current-url) 'author)
366 (set (make-local-variable 'browse-url-browser-function) 'eww-browse-url)
367 (set (make-local-variable 'after-change-functions) 'eww-process-text-input)
368 (set (make-local-variable 'eww-history) nil)
369 (set (make-local-variable 'eww-history-position) 0)
370 (buffer-disable-undo)
371 ;;(setq buffer-read-only t)
374 (defun eww-save-history ()
375 (push (list :url eww-current-url
376 :title eww-current-title
378 :text (buffer-string))
382 (defun eww-browse-url (url &optional new-window)
383 (when (and (equal major-mode 'eww-mode)
389 "Exit the Emacs Web Wowser."
391 (setq eww-history nil)
392 (kill-buffer (current-buffer)))
394 (defun eww-back-url ()
395 "Go to the previously displayed page."
397 (when (>= eww-history-position (length eww-history))
398 (error "No previous page"))
400 (setq eww-history-position (+ eww-history-position 2))
401 (eww-restore-history (elt eww-history (1- eww-history-position))))
403 (defun eww-forward-url ()
404 "Go to the next displayed page."
406 (when (zerop eww-history-position)
407 (error "No next page"))
409 (eww-restore-history (elt eww-history (1- eww-history-position))))
411 (defun eww-restore-history (elem)
412 (let ((inhibit-read-only t))
414 (insert (plist-get elem :text))
415 (goto-char (plist-get elem :point))
416 (setq eww-current-url (plist-get elem :url)
417 eww-current-title (plist-get elem :title))))
419 (defun eww-next-url ()
420 "Go to the page marked `next'.
421 A page is marked `next' if rel=\"next\" appears in a <link>
425 (eww-browse-url (shr-expand-url eww-next-url eww-current-url))
426 (error "No `next' on this page")))
428 (defun eww-previous-url ()
429 "Go to the page marked `previous'.
430 A page is marked `previous' if rel=\"previous\" appears in a <link>
434 (eww-browse-url (shr-expand-url eww-previous-url eww-current-url))
435 (error "No `previous' on this page")))
438 "Go to the page marked `up'.
439 A page is marked `up' if rel=\"up\" appears in a <link>
443 (eww-browse-url (shr-expand-url eww-up-url eww-current-url))
444 (error "No `up' on this page")))
446 (defun eww-top-url ()
447 "Go to the page marked `top'.
448 A page is marked `top' if rel=\"start\", rel=\"home\", or rel=\"contents\"
449 appears in a <link> or <a> tag."
451 (let ((best-url (or eww-start-url
455 (eww-browse-url (shr-expand-url best-url eww-current-url))
456 (error "No `top' for this page"))))
459 "Reload the current page."
461 (url-retrieve eww-current-url 'eww-render
462 (list eww-current-url (point))))
466 (defvar eww-form nil)
468 (defvar eww-submit-map
469 (let ((map (make-sparse-keymap)))
470 (define-key map "\r" 'eww-submit)
471 (define-key map [(control c) (control c)] 'eww-submit)
474 (defvar eww-checkbox-map
475 (let ((map (make-sparse-keymap)))
476 (define-key map [space] 'eww-toggle-checkbox)
477 (define-key map "\r" 'eww-toggle-checkbox)
478 (define-key map [(control c) (control c)] 'eww-submit)
482 (let ((map (make-keymap)))
483 (set-keymap-parent map text-mode-map)
484 (define-key map "\r" 'eww-submit)
485 (define-key map [(control a)] 'eww-beginning-of-text)
486 (define-key map [(control c) (control c)] 'eww-submit)
487 (define-key map [(control e)] 'eww-end-of-text)
488 (define-key map [tab] 'shr-next-link
)
489 (define-key map
[backtab] 'shr-previous-link)
492 (defvar eww-textarea-map
493 (let ((map (make-keymap)))
494 (set-keymap-parent map text-mode-map)
495 (define-key map "\r" 'forward-line)
496 (define-key map [(control c) (control c)] 'eww-submit)
497 (define-key map [tab] 'shr-next-link)
498 (define-key map [backtab] 'shr-previous-link
)
501 (defvar eww-select-map
502 (let ((map (make-sparse-keymap)))
503 (define-key map
"\r" 'eww-change-select
)
504 (define-key map
[(control c
) (control c
)] 'eww-submit
)
507 (defun eww-beginning-of-text ()
508 "Move to the start of the input field."
510 (goto-char (eww-beginning-of-field)))
512 (defun eww-end-of-text ()
513 "Move to the end of the text in the input field."
515 (goto-char (eww-end-of-field))
516 (let ((start (eww-beginning-of-field)))
517 (while (and (equal (following-char) ?
)
520 (when (> (point) start
)
523 (defun eww-beginning-of-field ()
527 ((not (eq (get-text-property (point) 'eww-form
)
528 (get-text-property (1- (point)) 'eww-form
)))
531 (previous-single-property-change
532 (point) 'eww-form nil
(point-min)))))
534 (defun eww-end-of-field ()
535 (1- (next-single-property-change
536 (point) 'eww-form nil
(point-max))))
538 (defun eww-tag-form (cont)
540 (list (assq :method cont
)
541 (assq :action cont
)))
543 (shr-ensure-paragraph)
548 (when (> (point) start
)
549 (put-text-property start
(1+ start
)
550 'eww-form eww-form
))))
552 (defun eww-form-submit (cont)
553 (let ((start (point))
554 (value (cdr (assq :value cont
))))
556 (if (zerop (length value
))
560 (add-face-text-property start
(point) 'eww-form-submit
)
561 (put-text-property start
(point) 'eww-form
562 (list :eww-form eww-form
565 :name
(cdr (assq :name cont
))))
566 (put-text-property start
(point) 'keymap eww-submit-map
)
569 (defun eww-form-checkbox (cont)
570 (let ((start (point)))
571 (if (cdr (assq :checked cont
))
574 (add-face-text-property start
(point) 'eww-form-checkbox
)
575 (put-text-property start
(point) 'eww-form
576 (list :eww-form eww-form
577 :value
(cdr (assq :value cont
))
578 :type
(downcase (cdr (assq :type cont
)))
579 :checked
(cdr (assq :checked cont
))
580 :name
(cdr (assq :name cont
))))
581 (put-text-property start
(point) 'keymap eww-checkbox-map
)
584 (defun eww-form-text (cont)
585 (let ((start (point))
586 (type (downcase (or (cdr (assq :type cont
))
588 (value (or (cdr (assq :value cont
)) ""))
589 (width (string-to-number
590 (or (cdr (assq :size cont
))
593 (when (< (length value
) width
)
594 (insert (make-string (- width
(length value
)) ?
)))
595 (put-text-property start
(point) 'face
'eww-form-text
)
596 (put-text-property start
(point) 'local-map eww-text-map
)
597 (put-text-property start
(point) 'inhibit-read-only t
)
598 (put-text-property start
(point) 'eww-form
599 (list :eww-form eww-form
602 :name
(cdr (assq :name cont
))))
605 (defun eww-process-text-input (beg end length
)
606 (let* ((form (get-text-property end
'eww-form
))
607 (properties (text-properties-at end
))
608 (type (plist-get form
:type
)))
610 (member type
'("text" "password" "textarea")))
613 ;; Delete some space at the end.
616 (if (equal type
"textarea")
617 (1- (line-end-position))
619 (let ((new (- end beg
)))
620 (while (and (> new
0)
621 (eql (following-char) ?
))
622 (delete-region (point) (1+ (point)))
623 (setq new
(1- new
))))
624 (set-text-properties beg end properties
)))
629 (if (equal type
"textarea")
630 (1- (line-end-position))
632 (let ((start (point)))
633 (insert (make-string length ?
))
634 (set-text-properties start
(point) properties
)))))
635 (let ((value (buffer-substring-no-properties
636 (eww-beginning-of-field)
637 (eww-end-of-field))))
638 (when (string-match " +\\'" value
)
639 (setq value
(substring value
0 (match-beginning 0))))
640 (plist-put form
:value value
)
641 (when (equal type
"password")
642 ;; Display passwords as asterisks.
643 (let ((start (eww-beginning-of-field)))
644 (put-text-property start
(+ start
(length value
))
645 'display
(make-string (length value
) ?
*))))))))
647 (defun eww-tag-textarea (cont)
648 (let ((start (point))
649 (value (or (cdr (assq :value cont
)) ""))
650 (lines (string-to-number
651 (or (cdr (assq :rows cont
))
653 (width (string-to-number
654 (or (cdr (assq :cols cont
))
660 (when (< (count-lines start
(point)) lines
)
661 (dotimes (i (- lines
(count-lines start
(point))))
663 (setq end
(point-marker))
665 (while (< (point) end
)
667 (let ((pad (- width
(- (point) (line-beginning-position)))))
669 (insert (make-string pad ?
))))
670 (add-face-text-property (line-beginning-position)
671 (point) 'eww-form-text
)
672 (put-text-property (line-beginning-position) (point)
673 'local-map eww-textarea-map
)
675 (put-text-property start
(point) 'eww-form
676 (list :eww-form eww-form
679 :name
(cdr (assq :name cont
))))))
681 (defun eww-tag-input (cont)
682 (let ((type (downcase (or (cdr (assq :type cont
))
686 ((or (equal type
"checkbox")
687 (equal type
"radio"))
688 (eww-form-checkbox cont
))
689 ((equal type
"submit")
690 (eww-form-submit cont
))
691 ((equal type
"hidden")
692 (let ((form eww-form
)
693 (name (cdr (assq :name cont
))))
694 ;; Don't add <input type=hidden> elements repeatedly.
696 (or (not (consp (car form
)))
697 (not (eq (caar form
) 'hidden
))
698 (not (equal (plist-get (cdr (car form
)) :name
)
700 (setq form
(cdr form
)))
702 (nconc eww-form
(list
705 :value
(cdr (assq :value cont
))))))))
707 (eww-form-text cont
)))
708 (unless (= start
(point))
709 (put-text-property start
(1+ start
) 'help-echo
"Input field"))))
711 (defun eww-tag-select (cont)
712 (shr-ensure-paragraph)
713 (let ((menu (list :name
(cdr (assq :name cont
))
719 (when (eq (car elem
) 'option
)
720 (when (cdr (assq :selected
(cdr elem
)))
721 (nconc menu
(list :value
722 (cdr (assq :value
(cdr elem
))))))
723 (let ((display (or (cdr (assq 'text
(cdr elem
))) "")))
724 (setq max
(max max
(length display
)))
726 :value
(cdr (assq :value
(cdr elem
)))
730 (setq options
(nreverse options
))
731 ;; If we have no selected values, default to the first value.
732 (unless (plist-get menu
:value
)
733 (nconc menu
(list :value
(nth 2 (car options
)))))
735 (let ((selected (eww-select-display menu
)))
737 (make-string (- max
(length selected
)) ?
)))
738 (put-text-property start
(point) 'eww-form menu
)
739 (add-face-text-property start
(point) 'eww-form-select
)
740 (put-text-property start
(point) 'keymap eww-select-map
)
741 (shr-ensure-paragraph))))
743 (defun eww-select-display (select)
744 (let ((value (plist-get select
:value
))
746 (dolist (elem select
)
747 (when (and (consp elem
)
748 (eq (car elem
) 'item
)
749 (equal value
(plist-get (cdr elem
) :value
)))
750 (setq display
(plist-get (cdr elem
) :display
))))
753 (defun eww-change-select ()
754 "Change the value of the select drop-down menu under point."
756 (let* ((input (get-text-property (point) 'eww-form
))
757 (properties (text-properties-at (point)))
758 (completion-ignore-case t
)
761 (mapcar (lambda (elem)
763 (eq (car elem
) 'item
)
764 (cons (plist-get (cdr elem
) :display
)
765 (plist-get (cdr elem
) :value
))))
768 (completing-read "Change value: " options nil
'require-match
))
769 (inhibit-read-only t
))
770 (plist-put input
:value
(cdr (assoc-string display options t
)))
772 (eww-update-field display
))))
774 (defun eww-update-field (string)
775 (let ((properties (text-properties-at (point)))
776 (start (eww-beginning-of-field))
777 (end (1+ (eww-end-of-field))))
778 (delete-region start end
)
780 (make-string (- (- end start
) (length string
)) ?
))
781 (set-text-properties start end properties
)
784 (defun eww-toggle-checkbox ()
785 "Toggle the value of the checkbox under point."
787 (let* ((input (get-text-property (point) 'eww-form
))
788 (type (plist-get input
:type
)))
789 (if (equal type
"checkbox")
792 (if (plist-get input
:checked
)
794 (plist-put input
:checked nil
)
795 (eww-update-field "[ ]"))
796 (plist-put input
:checked t
)
797 (eww-update-field "[X]"))))
798 ;; Radio button. Switch all other buttons off.
799 (let ((name (plist-get input
:name
)))
801 (dolist (elem (eww-inputs (plist-get input
:eww-form
)))
802 (when (equal (plist-get (cdr elem
) :name
) name
)
803 (goto-char (car elem
))
804 (if (not (eq (cdr elem
) input
))
806 (plist-put input
:checked nil
)
807 (eww-update-field "[ ]"))
808 (plist-put input
:checked t
)
809 (eww-update-field "[X]")))))
812 (defun eww-inputs (form)
813 (let ((start (point-min))
816 (< start
(point-max)))
817 (when (or (get-text-property start
'eww-form
)
818 (setq start
(next-single-property-change start
'eww-form
)))
819 (when (eq (plist-get (get-text-property start
'eww-form
) :eww-form
)
821 (push (cons start
(get-text-property start
'eww-form
))
823 (setq start
(next-single-property-change start
'eww-form
))))
826 (defun eww-input-value (input)
827 (let ((type (plist-get input
:type
))
828 (value (plist-get input
:value
)))
830 ((equal type
"textarea")
833 (goto-char (point-min))
834 (while (re-search-forward "^ +\n\\| +$" nil t
)
835 (replace-match "" t t
))
838 (if (string-match " +\\'" value
)
839 (substring value
0 (match-beginning 0))
843 "Submit the current form."
845 (let* ((this-input (get-text-property (point) 'eww-form
))
846 (form (plist-get this-input
:eww-form
))
848 (dolist (elem (sort (eww-inputs form
)
850 (< (car o1
) (car o2
)))))
851 (let* ((input (cdr elem
))
852 (input-start (car elem
))
853 (name (plist-get input
:name
)))
856 ((member (plist-get input
:type
) '("checkbox" "radio"))
857 (when (plist-get input
:checked
)
858 (push (cons name
(plist-get input
:value
))
860 ((equal (plist-get input
:type
) "submit")
861 ;; We want the values from buttons if we hit a button if
862 ;; we hit enter on it, or if it's the first button after
863 ;; the field we did hit return on.
864 (when (or (eq input this-input
)
865 (and (not (eq input this-input
))
867 (> input-start
(point))))
869 (push (cons name
(plist-get input
:value
))
872 (push (cons name
(eww-input-value input
))
875 (when (and (consp elem
)
876 (eq (car elem
) 'hidden
))
877 (push (cons (plist-get (cdr elem
) :name
)
878 (plist-get (cdr elem
) :value
))
880 (if (and (stringp (cdr (assq :method form
)))
881 (equal (downcase (cdr (assq :method form
))) "post"))
882 (let ((url-request-method "POST")
883 (url-request-extra-headers
884 '(("Content-Type" .
"application/x-www-form-urlencoded")))
885 (url-request-data (mm-url-encode-www-form-urlencoded values
)))
886 (eww-browse-url (shr-expand-url (cdr (assq :action form
))
890 (if (cdr (assq :action form
))
891 (shr-expand-url (cdr (assq :action form
))
895 (mm-url-encode-www-form-urlencoded values
))))))
897 (defun eww-browse-with-external-browser ()
898 "Browse the current URL with an external browser.
899 The browser to used is specified by the `shr-external-browser' variable."
901 (funcall shr-external-browser eww-current-url
))
903 (defun eww-copy-page-url ()
905 (message "%s" eww-current-url
)
906 (kill-new eww-current-url
))
908 (defun eww-download ()
909 "Download URL under point to `eww-download-directory'."
911 (let ((url (get-text-property (point) 'shr-url
)))
913 (message "No URL under point")
914 (url-retrieve url
'eww-download-callback
(list url
)))))
916 (defun eww-download-callback (status url
)
917 (unless (plist-get status
:error
)
918 (let* ((obj (url-generic-parse-url url
))
919 (path (car (url-path-and-query obj
)))
920 (file (eww-make-unique-file-name (file-name-nondirectory path
)
923 (message "Saved %s" file
))))
925 (defun eww-make-unique-file-name (file directory
)
927 ((zerop (length file
))
929 ((string-match "\\`[.]" file
)
930 (setq file
(concat "!" file
))))
933 (while (file-exists-p (expand-file-name file directory
))
935 (if (string-match "\\`\\(.*\\)\\([.][^.]+\\)" file
)
936 (format "%s(%d)%s" (match-string 1 file
)
937 count
(match-string 2 file
))
938 (format "%s(%d)" file count
)))
939 (setq count
(1+ count
)))
940 (expand-file-name file directory
)))
944 (defvar eww-bookmarks nil
)
946 (defun eww-add-bookmark ()
947 "Add the current page to the bookmarks."
950 (dolist (bookmark eww-bookmarks
)
951 (when (equal eww-current-url
952 (plist-get bookmark
:url
))
953 (error "Already bookmarked")))
954 (let ((title (replace-regexp-in-string "[\n\t\r]" " " eww-current-title
)))
955 (setq title
(replace-regexp-in-string "\\` +\\| +\\'" "" title
))
956 (push (list :url eww-current-url
958 :time
(current-time-string))
960 (eww-write-bookmarks)
961 (message "Bookmarked %s (%s)" eww-current-url eww-current-title
))
963 (defun eww-write-bookmarks ()
964 (with-temp-file (expand-file-name "eww-bookmarks" user-emacs-directory
)
965 (insert ";; Auto-generated file; don't edit\n")
966 (pp eww-bookmarks
(current-buffer))))
968 (defun eww-read-bookmarks ()
969 (let ((file (expand-file-name "eww-bookmarks" user-emacs-directory
)))
971 (unless (zerop (or (nth 7 (file-attributes file
)) 0))
973 (insert-file-contents file
)
974 (read (current-buffer)))))))
976 (defun eww-list-bookmarks ()
977 "Display the bookmarks."
979 (eww-bookmark-prepare)
980 (pop-to-buffer "*eww bookmarks*"))
982 (defun eww-bookmark-prepare ()
984 (when (null eww-bookmarks
)
985 (error "No bookmarks are defined"))
986 (set-buffer (get-buffer-create "*eww bookmarks*"))
988 (let ((format "%-40s %s")
989 (inhibit-read-only t
)
992 (setq header-line-format
(concat " " (format format
"URL" "Title")))
993 (dolist (bookmark eww-bookmarks
)
995 (setq url
(plist-get bookmark
:url
))
996 (when (> (length url
) 40)
997 (setq url
(substring url
0 40)))
998 (insert (format format url
999 (plist-get bookmark
:title
))
1001 (put-text-property start
(1+ start
) 'eww-bookmark bookmark
))
1002 (goto-char (point-min))))
1004 (defvar eww-bookmark-kill-ring nil
)
1006 (defun eww-bookmark-kill ()
1007 "Kill the current bookmark."
1009 (let* ((start (line-beginning-position))
1010 (bookmark (get-text-property start
'eww-bookmark
))
1011 (inhibit-read-only t
))
1013 (error "No bookmark on the current line"))
1015 (push (buffer-substring start
(point)) eww-bookmark-kill-ring
)
1016 (delete-region start
(point))
1017 (setq eww-bookmarks
(delq bookmark eww-bookmarks
))
1018 (eww-write-bookmarks)))
1020 (defun eww-bookmark-yank ()
1021 "Yank a previously killed bookmark to the current line."
1023 (unless eww-bookmark-kill-ring
1024 (error "No previously killed bookmark"))
1026 (let ((inhibit-read-only t
)
1029 (insert (pop eww-bookmark-kill-ring
))
1030 (setq bookmark
(get-text-property start
'eww-bookmark
))
1031 (if (= start
(point-min))
1032 (push bookmark eww-bookmarks
)
1033 (let ((line (count-lines start
(point))))
1034 (setcdr (nthcdr (1- line
) eww-bookmarks
)
1035 (cons bookmark
(nthcdr line eww-bookmarks
)))))
1036 (eww-write-bookmarks)))
1038 (defun eww-bookmark-quit ()
1039 "Kill the current buffer."
1041 (kill-buffer (current-buffer)))
1043 (defun eww-bookmark-browse ()
1044 "Browse the bookmark under point in eww."
1046 (let ((bookmark (get-text-property (line-beginning-position) 'eww-bookmark
)))
1048 (error "No bookmark on the current line"))
1049 ;; We wish to leave this window, but if it's the only window here,
1050 ;; just let it remain.
1053 (eww (plist-get bookmark
:url
))))
1055 (defun eww-next-bookmark ()
1056 "Go to the next bookmark in the list."
1060 (unless (get-buffer "*eww bookmarks*")
1062 (eww-bookmark-prepare))
1063 (with-current-buffer (get-buffer "*eww bookmarks*")
1064 (when (and (not first
)
1067 (setq bookmark
(get-text-property (line-beginning-position)
1070 (error "No next bookmark")))
1071 (eww-browse-url (plist-get bookmark
:url
))))
1073 (defun eww-previous-bookmark ()
1074 "Go to the previous bookmark in the list."
1078 (unless (get-buffer "*eww bookmarks*")
1080 (eww-bookmark-prepare))
1081 (with-current-buffer (get-buffer "*eww bookmarks*")
1083 (goto-char (point-max))
1084 (beginning-of-line))
1085 ;; On the final line.
1089 (error "No previous bookmark")
1091 (setq bookmark
(get-text-property (line-beginning-position)
1093 (eww-browse-url (plist-get bookmark
:url
))))
1095 (defvar eww-bookmark-mode-map
1096 (let ((map (make-sparse-keymap)))
1097 (suppress-keymap map
)
1098 (define-key map
"q" 'eww-bookmark-quit
)
1099 (define-key map
[(control k
)] 'eww-bookmark-kill
)
1100 (define-key map
[(control y
)] 'eww-bookmark-yank
)
1101 (define-key map
"\r" 'eww-bookmark-browse
)
1104 (define-derived-mode eww-bookmark-mode nil
"eww bookmarks"
1105 "Mode for listing bookmarks.
1107 \\{eww-bookmark-mode-map}"
1108 (buffer-disable-undo)
1109 (setq buffer-read-only t
1114 ;;; eww.el ends here