]> git.eshelyaron.com Git - emacs.git/commitdiff
Follow meta refresh tags in eww
authorLars Ingebrigtsen <larsi@gnus.org>
Fri, 25 Dec 2015 17:18:42 +0000 (18:18 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 25 Dec 2015 17:18:42 +0000 (18:18 +0100)
* eww.el (eww-tag-meta): Follow meta refresh tags (bug#22234).

lisp/net/eww.el

index 593ed22dd38aa763826570699562bdc61b11bdd4..742e1e4d1c086c688b874490a8c1fe2423ad5fe3 100644 (file)
@@ -415,6 +415,7 @@ Currently this means either text/html or application/xhtml+xml."
                 (textarea . eww-tag-textarea)
                 (select . eww-tag-select)
                 (link . eww-tag-link)
+                (meta . eww-tag-meta)
                 (a . eww-tag-a)))))
        (erase-buffer)
        (shr-insert-document document)
@@ -460,6 +461,27 @@ Currently this means either text/html or application/xhtml+xml."
         where
         (plist-put eww-data (cdr where) href))))
 
+(defvar eww-redirect-level 1)
+
+(defun eww-tag-meta (dom)
+  (when (and (cl-equalp (dom-attr dom 'http-equiv) "refresh")
+             (< eww-redirect-level 5))
+    (when-let (refresh (dom-attr dom 'content))
+      (when (or (string-match "^\\([0-9]+\\) *;.*url=\"\\([^\"]+\\)\"" refresh)
+                (string-match "^\\([0-9]+\\) *;.*url=\\([^ ]+\\)" refresh))
+        (let ((timeout (match-string 1 refresh))
+              (url (match-string 2 refresh))
+              (eww-redirect-level (1+ eww-redirect-level)))
+          (if (equal timeout "0")
+              (eww (shr-expand-url url))
+            (eww-tag-a
+             (dom-node 'a `((href . ,(shr-expand-url url)))
+                       (format "Auto refresh in %s second%s disabled"
+                               timeout
+                               (if (equal timeout "1")
+                                   ""
+                                 "s"))))))))))
+
 (defun eww-tag-link (dom)
   (eww-handle-link dom)
   (shr-generic dom))