]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert "Fix about:protocols in EWW"
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 4 Aug 2022 09:09:40 +0000 (11:09 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 4 Aug 2022 09:09:40 +0000 (11:09 +0200)
This reverts commit b49c1740105dd3715315aa433674c95f44aaeac4.

We're making this obsolete instead.

lisp/net/eww.el
lisp/url/url-about.el
lisp/url/url-http.el

index 0ee5ebff8184dfe4126d2b72bc75ab6ab85b8bc3..b7b2e08975218214fe47eb643f56677533496bfd 100644 (file)
@@ -450,9 +450,6 @@ For more information, see Info node `(eww) Top'."
        ;; Don't mangle file: URLs at all.
         ((string-match-p "\\`ftp://" url)
          (user-error "FTP is not supported"))
-        ((string-match-p "\\`about:" url)
-         ;; Treat this as an about: url.  (bug#56885)
-         url)
         (t
         ;; Anything that starts with something that vaguely looks
         ;; like a protocol designator is interpreted as a full URL.
index ee94fde8b4c2e2bb7b4454fb411963ffe1d0ba5a..a50986d511a5519125aefd288c1009bb35dc0445 100644 (file)
@@ -93,7 +93,7 @@
     (if (fboundp func)
        (progn
          (set-buffer (generate-new-buffer " *about-data*"))
-         (insert "Content-type: text/html\n\n")
+         (insert "Content-type: text/plain\n\n")
          (funcall func url)
          (current-buffer))
       (error "URL does not know about `%s'" item))))
index e2d28974b663e30366e3eed6001ba8d98413ff6f..125f8436f68b697b32834df0e91093d46c30a511 100644 (file)
@@ -237,32 +237,28 @@ request.")
     (if (not (url-p url-current-lastloc))
         (setq url-current-lastloc (url-generic-parse-url url-current-lastloc)))
     (let ((referer (copy-sequence url-current-lastloc)))
-      ;; In the case of `url-about', there is actually no host.
-      (if (url-host referer)
-          (progn
-            (setf (url-host referer) (puny-encode-domain (url-host referer)))
-            (let ((referer-string (url-recreate-url referer)))
-              (when (and (not (memq url-privacy-level '(low high paranoid)))
-                         (not (and (listp url-privacy-level)
-                                   (memq 'lastloc url-privacy-level))))
-                ;; url-privacy-level allows referer.  But url-lastloc-privacy-level
-                ;; may restrict who we send it to.
-                (cl-case url-lastloc-privacy-level
-                  (host-match
-                   (let ((referer-host (url-host referer))
-                         (url-host (url-host url)))
-                     (when (string= referer-host url-host)
-                       referer-string)))
-                  (domain-match
-                   (let ((referer-domain (url-domain referer))
-                         (url-domain (url-domain url)))
-                     (when (and referer-domain
-                                url-domain
-                                (string= referer-domain url-domain))
-                       referer-string)))
-                  (otherwise
-                   referer-string)))))
-        nil))))
+      (setf (url-host referer) (puny-encode-domain (url-host referer)))
+      (let ((referer-string (url-recreate-url referer)))
+        (when (and (not (memq url-privacy-level '(low high paranoid)))
+                   (not (and (listp url-privacy-level)
+                             (memq 'lastloc url-privacy-level))))
+          ;; url-privacy-level allows referer.  But url-lastloc-privacy-level
+          ;; may restrict who we send it to.
+          (cl-case url-lastloc-privacy-level
+            (host-match
+             (let ((referer-host (url-host referer))
+                   (url-host (url-host url)))
+               (when (string= referer-host url-host)
+                 referer-string)))
+            (domain-match
+             (let ((referer-domain (url-domain referer))
+                   (url-domain (url-domain url)))
+               (when (and referer-domain
+                          url-domain
+                          (string= referer-domain url-domain))
+                 referer-string)))
+            (otherwise
+             referer-string)))))))
 
 ;; Building an HTTP request
 (defun url-http-user-agent-string ()