diff options
| author | Stefan Kangas <stefankangas@gmail.com> | 2022-12-21 09:07:22 +0100 |
|---|---|---|
| committer | Stefan Kangas <stefankangas@gmail.com> | 2022-12-21 09:07:22 +0100 |
| commit | 96e0311365e91952d5168f858be86831c04a827b (patch) | |
| tree | 46000c69ce1b72bb542e0ce14b47778e9fccc5e2 | |
| parent | 7f0c37eb50110b62320e9d064e85b573a732265a (diff) | |
; Prefer HTTPS to HTTP in URLsexternals/metar
| -rw-r--r-- | metar.el | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -18,7 +18,7 @@ ;; 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/>. ;;; Commentary: @@ -83,7 +83,7 @@ (const :tag "Degree Kelvin" degK) (const :tag "Degree Fahrenheit" degF))))) -(defcustom metar-stations-info-url "http://tgftp.nws.noaa.gov/data/nsd_cccc.txt" +(defcustom metar-stations-info-url "https://tgftp.nws.noaa.gov/data/nsd_cccc.txt" "URL to use for retrieving station meta information." :group 'metar :type 'string) @@ -279,7 +279,7 @@ It must have the signature of `math-convert-units', which is the default." pure)))) (defcustom metar-url - "http://tgftp.nws.noaa.gov/data/observations/metar/stations/%s.TXT" + "https://tgftp.nws.noaa.gov/data/observations/metar/stations/%s.TXT" "URL used to fetch station specific information. %s is replaced with the 4 letter station code." :group 'metar |
