emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master be9761bc5e4: Prefer HTTPS to HTTP for Google Groups


From: Stefan Kangas
Subject: master be9761bc5e4: Prefer HTTPS to HTTP for Google Groups
Date: Mon, 23 Oct 2023 18:02:11 -0400 (EDT)

branch: master
commit be9761bc5e47f7395174fd8837cc3abae8142b1f
Author: Stefan Kangas <stefankangas@gmail.com>
Commit: Stefan Kangas <stefankangas@gmail.com>

    Prefer HTTPS to HTTP for Google Groups
    
    * lisp/gnus/nnweb.el (nnweb-type-definition): Prefer HTTPS to HTTP
    when accessing Google Groups.
---
 lisp/gnus/nnweb.el | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/lisp/gnus/nnweb.el b/lisp/gnus/nnweb.el
index d3bf138edeb..779ec911682 100644
--- a/lisp/gnus/nnweb.el
+++ b/lisp/gnus/nnweb.el
@@ -46,24 +46,24 @@ Valid types include `google', `dejanews', and `gmane'.")
 
 (defvar nnweb-type-definition
   '((google
-     (id . "http://www.google.com/groups?as_umsgid=%s&hl=en&dmode=source";)
-     (result . "http://groups.google.com/group/%s/msg/%s?dmode=source";)
+     (id . "https://www.google.com/groups?as_umsgid=%s&hl=en&dmode=source";)
+     (result . "https://groups.google.com/group/%s/msg/%s?dmode=source";)
      (article . nnweb-google-wash-article)
      (reference . identity)
      (map . nnweb-google-create-mapping)
      (search . nnweb-google-search)
-     (address . "http://groups.google.com/groups";)
-     (base    . "http://groups.google.com";)
+     (address . "https://groups.google.com/groups";)
+     (base    . "https://groups.google.com";)
      (identifier . nnweb-google-identity))
     (dejanews ;; alias of google
-     (id . "http://www.google.com/groups?as_umsgid=%s&hl=en&dmode=source";)
-     (result . "http://groups.google.com/group/%s/msg/%s?dmode=source";)
+     (id . "https://www.google.com/groups?as_umsgid=%s&hl=en&dmode=source";)
+     (result . "https://groups.google.com/group/%s/msg/%s?dmode=source";)
      (article . nnweb-google-wash-article)
      (reference . identity)
      (map . nnweb-google-create-mapping)
      (search . nnweb-google-search)
-     (address . "http://groups.google.com/groups";)
-     (base    . "http://groups.google.com";)
+     (address . "https://groups.google.com/groups";)
+     (base    . "https://groups.google.com";)
      (identifier . nnweb-google-identity))
     (gmane
      (article . nnweb-gmane-wash-article)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]