emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/engine-mode f36d8bf785 69/71: Prefer HTTPS to HTTP


From: ELPA Syncer
Subject: [nongnu] elpa/engine-mode f36d8bf785 69/71: Prefer HTTPS to HTTP
Date: Wed, 21 Dec 2022 09:59:17 -0500 (EST)

branch: elpa/engine-mode
commit f36d8bf785de6a2839e779a1b71f54daf907f958
Author: Stefan Kangas <stefankangas@gmail.com>
Commit: Harry R. Schwartz <hello@harryrschwartz.com>

    Prefer HTTPS to HTTP
---
 LICENSE.md     |  8 ++++----
 README.md      | 20 ++++++++++----------
 engine-mode.el |  2 +-
 3 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/LICENSE.md b/LICENSE.md
index 98466e58f0..13f1e064c2 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -1,7 +1,7 @@
 GNU GENERAL PUBLIC LICENSE
 Version 3, 29 June 2007
 
-Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.
 
@@ -645,7 +645,7 @@ 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 Also add information on how to contact you by electronic and paper mail.
 
@@ -664,11 +664,11 @@ might be different; for a GUI interface, you would use an 
"about box".
 You should also get your employer (if you work as a programmer) or school,
 if any, to sign a "copyright disclaimer" for the program, if necessary.
 For more information on this, and how to apply and follow the GNU GPL, see
-<http://www.gnu.org/licenses/>.
+<https://www.gnu.org/licenses/>.
 
 The GNU General Public License does not permit incorporating your program
 into proprietary programs.  If your program is a subroutine library, you
 may consider it more useful to permit linking proprietary applications with
 the library.  If this is what you want to do, use the GNU Lesser General
 Public License instead of this License.  But first, please read
-<http://www.gnu.org/philosophy/why-not-lgpl.html>.
+<https://www.gnu.org/philosophy/why-not-lgpl.html>.
diff --git a/README.md b/README.md
index f7d80e26c4..f94bb37ce7 100644
--- a/README.md
+++ b/README.md
@@ -114,7 +114,7 @@ override that on a case-by-case basis with the `:docstring` 
keyword argument:
 
 ```emacs
 (defengine ctan
-  "http://www.ctan.org/search/?x=1&PORTAL=on&phrase=%s";
+  "https://www.ctan.org/search/?x=1&PORTAL=on&phrase=%s";
   :docstring "Search the Comprehensive TeX Archive Network (ctan.org)")
 ```
 
@@ -156,7 +156,7 @@ to import them into Emacs.
 
 ```emacs
 (defengine amazon
-  
"http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords=%s";)
+  
"https://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords=%s";)
 
 (defengine duckduckgo
   "https://duckduckgo.com/?q=%s";
@@ -166,24 +166,24 @@ to import them into Emacs.
   "https://github.com/search?ref=simplesearch&q=%s";)
 
 (defengine google
-  "http://www.google.com/search?ie=utf-8&oe=utf-8&q=%s";
+  "https://www.google.com/search?ie=utf-8&oe=utf-8&q=%s";
   :keybinding "g")
 
 (defengine google-images
-  
"http://www.google.com/images?hl=en&source=hp&biw=1440&bih=795&gbv=2&aq=f&aqi=&aql=&oq=&q=%s";)
+  
"https://www.google.com/images?hl=en&source=hp&biw=1440&bih=795&gbv=2&aq=f&aqi=&aql=&oq=&q=%s";)
 
 (defengine google-maps
-  "http://maps.google.com/maps?q=%s";
+  "https://maps.google.com/maps?q=%s";
   :docstring "Mappin' it up.")
 
 (defengine project-gutenberg
-  "http://www.gutenberg.org/ebooks/search/?query=%s";)
+  "https://www.gutenberg.org/ebooks/search/?query=%s";)
 
 (defengine qwant
   "https://www.qwant.com/?q=%s";)
 
 (defengine rfcs
-  "http://pretty-rfc.herokuapp.com/search?q=%s";)
+  "https://pretty-rfc.herokuapp.com/search?q=%s";)
 
 (defengine stack-overflow
   "https://stackoverflow.com/search?q=%s";)
@@ -192,7 +192,7 @@ to import them into Emacs.
   "https://twitter.com/search?q=%s";)
 
 (defengine wikipedia
-  "http://www.wikipedia.org/search-redirect.php?language=en&go=Go&search=%s";
+  "https://www.wikipedia.org/search-redirect.php?language=en&go=Go&search=%s";
   :keybinding "w"
   :docstring "Searchin' the wikis.")
 
@@ -200,10 +200,10 @@ to import them into Emacs.
   
"https://www.wikipedia.org/search-redirect.php?family=wiktionary&language=en&go=Go&search=%s";)
 
 (defengine wolfram-alpha
-  "http://www.wolframalpha.com/input/?i=%s";)
+  "https://www.wolframalpha.com/input/?i=%s";)
 
 (defengine youtube
-  "http://www.youtube.com/results?aq=f&oq=&search_query=%s";)
+  "https://www.youtube.com/results?aq=f&oq=&search_query=%s";)
 ```
 
 [the talk @hrs gave at EmacsNYC]: https://www.youtube.com/watch?v=MBhJBMYfWUo
diff --git a/engine-mode.el b/engine-mode.el
index 94c3ce6e05..cc08d9a355 100644
--- a/engine-mode.el
+++ b/engine-mode.el
@@ -159,7 +159,7 @@ Keybindings are in the `engine-mode-map', so they're 
prefixed.
 For example, to search Wikipedia, use:
 
   (defengine wikipedia
-    
\"http://www.wikipedia.org/search-redirect.php?language=en&go=Go&search=%s\";
+    
\"https://www.wikipedia.org/search-redirect.php?language=en&go=Go&search=%s\";
     :keybinding \"w\"
     :docstring \"Search Wikipedia!\")
 



reply via email to

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