* eww.el: Start writing a new, tiny web browser.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Mon, 10 Jun 2013 09:10:49 +0000 (11:10 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Mon, 10 Jun 2013 09:12:32 +0000 (11:12 +0200)
lisp/eww.el [new file with mode: 0644]

diff --git a/lisp/eww.el b/lisp/eww.el
new file mode 100644 (file)
index 0000000..e23e390
--- /dev/null
@@ -0,0 +1,119 @@
+;;; eww.el --- Emacs Web Wowser
+
+;; Copyright (C) 2013 Free Software Foundation, Inc.
+
+;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
+;; Keywords: html
+
+;; This file is part of GNU Emacs.
+
+;; GNU Emacs is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; GNU Emacs is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;;; Code:
+
+(eval-when-compile (require 'cl))
+(require 'shr)
+(require 'url)
+(require 'cl-lib)
+
+(defvar eww-current-url nil)
+
+(defun eww (url)
+  "Fetch URL and render the page."
+  (interactive "sUrl: ")
+  (url-retrieve url 'eww-render (list url)))
+
+(defun eww-render (status url)
+  (let* ((headers (eww-parse-headers))
+        (content-type
+         (mail-header-parse-content-type
+          (or (cdr (assoc "content-type" headers))
+              "text/plain")))
+        (charset (intern
+                  (downcase
+                   (or (cdr (assq 'charset (cdr content-type)))
+                       "utf8"))))
+        (data-buffer (current-buffer)))
+    (unwind-protect
+       (cond
+        ((equal (car content-type) "text/html")
+         (eww-display-html charset url))
+        ((string-match "^image/" (car content-type))
+         (eww-display-image))
+        (t
+         (eww-display-raw charset)))
+      (kill-buffer data-buffer))))
+
+(defun eww-parse-headers ()
+  (let ((headers nil))
+    (while (and (not (eobp))
+               (not (eolp)))
+      (when (looking-at "\\([^:]+\\): *\\(.*\\)")
+       (push (cons (downcase (match-string 1))
+                   (match-string 2))
+             headers))
+      (forward-line 1))
+    (unless (eobp)
+      (forward-line 1))
+    headers))
+
+(defun eww-display-html (charset url)
+  (unless (eq charset 'utf8)
+    (decode-coding-region (point) (point-max) charset))
+  (let ((document
+        (list
+         'base (list (cons 'href url))
+         (libxml-parse-html-region (point) (point-max)))))
+    (eww-setup-buffer)
+    (setq eww-current-url url)
+    (shr-insert-document document)
+    (goto-char (point-min))))
+
+(defun eww-display-raw (charset)
+  (let ((data (buffer-substring (point) (point-max))))
+    (eww-setup-buffer)
+    (insert data)
+    (goto-char (point-min))))
+
+(defun eww-display-image ()
+  (let ((data (buffer-substring (point) (point-max))))
+    (eww-setup-buffer)
+    (shr-put-image data nil)
+    (goto-char (point-min))))
+
+(defun eww-setup-buffer ()
+  (pop-to-buffer (get-buffer-create "*eww*"))
+  (erase-buffer)
+  (eww-mode))
+
+(defvar eww-mode-map
+  (let ((map (make-sparse-keymap)))
+    (define-key map "q" 'eww-quit)
+    map))
+
+(defun eww-mode ()
+  "Mode for browsing the web.
+
+\\{eww-mode-map}"
+  (interactive)
+  (setq major-mode 'eww-mode
+       mode-name "eww")
+  (set (make-local-variable 'eww-current-url) 'author)
+  (use-local-map eww-mode-map))
+
+(provide 'eww)
+
+;;; eww.el ends here