diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-09-22 23:53:39 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-09-23 00:12:52 -0700 |
commit | 946a56a10fed769646a8b7c4ebc53f53c84be896 (patch) | |
tree | 33a93593b428789b7e49376427eac09d21082808 /admin | |
parent | 78669517dc3db4d6d51fb26d71073fc0c196ab5d (diff) | |
download | emacs-946a56a10fed769646a8b7c4ebc53f53c84be896.tar.gz emacs-946a56a10fed769646a8b7c4ebc53f53c84be896.tar.bz2 emacs-946a56a10fed769646a8b7c4ebc53f53c84be896.zip |
Update some URLs
This mostly changes http: to https: in URLs. It also updates
some URLs that have moved, removes some URLs that no longer
work, recommends against using procmail (procmail.org no
longer works), and removes some mentions of the
no-longer-existing Gmane, LPF and VTW.
It doesn't update all URLs, just the ones I had time for.
* GNUmakefile (help):
* admin/admin.el (manual-doctype-string):
* admin/charsets/Makefile.in (${charsetdir}/ALTERNATIVNYJ.map):
* admin/charsets/mapconv:
* lisp/net/soap-client.el (soap-create-envelope):
* lisp/org/org.el (org-doi-server-url):
* lisp/textmodes/bibtex.el (bibtex-generate-url-list):
Prefer https: to http: un URLs.
Diffstat (limited to 'admin')
-rw-r--r-- | admin/admin.el | 2 | ||||
-rwxr-xr-x | admin/automerge | 2 | ||||
-rw-r--r-- | admin/charsets/Makefile.in | 6 | ||||
-rw-r--r-- | admin/charsets/cp932.awk | 3 | ||||
-rw-r--r-- | admin/charsets/eucjp-ms.awk | 2 | ||||
-rwxr-xr-x | admin/charsets/mapconv | 9 | ||||
-rw-r--r-- | admin/charsets/mapfiles/README | 6 | ||||
-rw-r--r-- | admin/grammars/js.wy | 2 | ||||
-rw-r--r-- | admin/notes/bugtracker | 8 | ||||
-rw-r--r-- | admin/notes/copyright | 8 | ||||
-rw-r--r-- | admin/notes/emba | 3 | ||||
-rw-r--r-- | admin/notes/nextstep | 3 | ||||
-rw-r--r-- | admin/notes/spelling | 2 |
13 files changed, 24 insertions, 32 deletions
diff --git a/admin/admin.el b/admin/admin.el index 5968e32b05e..76f55008629 100644 --- a/admin/admin.el +++ b/admin/admin.el @@ -337,7 +337,7 @@ Optional argument TYPE is type of output (nil means all)." (defconst manual-doctype-string "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" -\"http://www.w3.org/TR/html4/loose.dtd\">\n\n") +\"https://www.w3.org/TR/html4/loose.dtd\">\n\n") (defconst manual-meta-string "<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"> diff --git a/admin/automerge b/admin/automerge index 405fd9ed614..21a2cf0ee02 100755 --- a/admin/automerge +++ b/admin/automerge @@ -236,7 +236,7 @@ git fetch || die "fetch error" ## Rebasing would be incorrect, since it would rewrite the ## (already published) release branch commits. - ## Ref eg http://lists.gnu.org/r/emacs-devel/2014-12/msg01435.html + ## Ref eg https://lists.gnu.org/r/emacs-devel/2014-12/msg01435.html ## Instead, we throw away what we just did, and do the merge again. echo "Resetting..." git reset --hard $rev diff --git a/admin/charsets/Makefile.in b/admin/charsets/Makefile.in index 9f6b3e9e94d..efeac266e57 100644 --- a/admin/charsets/Makefile.in +++ b/admin/charsets/Makefile.in @@ -141,7 +141,7 @@ ${charsetdir}/VSCII-2.map: ${GLIBC_CHARMAPS}/TCVN5712-1.gz ${mapconv} ${compact} ${charsetdir}/ALTERNATIVNYJ.map: ${charsetdir}/IBM866.map ${AM_V_GEN}(echo "# Modified from $(notdir $<) according to the chart at" && \ - echo "# http://www.cyrillic.com/ref/cyrillic/koi-8alt.html," && \ + echo "# https://web.archive.org/web/20100131045151/http://www.cyrillic.com/ref/cyrillic/koi-8alt.html" && \ echo "# with guesses for the Unicodes of the glyphs." && \ sed -e '1 d' \ -e '/0xF2/ s/ .*/ 0x2019/' \ @@ -226,8 +226,8 @@ ${lispintdir}/eucjp-ms.el: ${GLIBC_CHARMAPS}/EUC-JP-MS.gz ${eucjp_ms} # As Uni2JIS doesn't contain mappings of characters added to Unicode # recently, we add them manually here (including one correction for -# U+005C vs U+FF3C). These changes are based on bogytech's blog at -# http://bogytech.blogspot.jp/search/label/emacs. +# U+005C vs U+FF3C). These changes are based on bogytech's blog at: +# https://bogytech.blogspot.com/search/label/emacs ${charsetdir}/JISC6226.map: ${mapfiledir}/Uni2JIS ${mapconv} ${kuten} ${AM_V_GEN}(${run_mapconv} $< '/^[^#].*0-/' YASUOKA ${kuten} \ | sed -e '/0x2140/s/005C/FF3C/' && \ diff --git a/admin/charsets/cp932.awk b/admin/charsets/cp932.awk index 7fd3e9111f5..27fdf021488 100644 --- a/admin/charsets/cp932.awk +++ b/admin/charsets/cp932.awk @@ -22,8 +22,7 @@ # Add a sort key 0, 1, 2, or 3 at the tail of each line as a comment # to realize the round trip mapping to Unicode works as described in -# this page: -# http://support.microsoft.com/default.aspx?scid=kb;EN-US;170559 +# https://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP932.TXT # Each sort key means as below: # 0: JISX0208 characters. # 1: NEC special characters. diff --git a/admin/charsets/eucjp-ms.awk b/admin/charsets/eucjp-ms.awk index 94e27d00651..0c9f94d0f48 100644 --- a/admin/charsets/eucjp-ms.awk +++ b/admin/charsets/eucjp-ms.awk @@ -21,7 +21,7 @@ # Commentary: # eucJP-ms is one of eucJP-open encoding defined at this page: -# http://home.m05.itscom.net/numa/cde/ucs-conv/appendix.html +# https://web.archive.org/web/20120207064433/http://home.m05.itscom.net/numa/cde/ucs-conv/appendix.html # This program reads the mapping file EUC-JP-MS (of glibc) and # generates the Elisp file eucjp-ms.el that defines two translation # tables 'eucjp-ms-decode' and 'eucjp-ms-encode'. diff --git a/admin/charsets/mapconv b/admin/charsets/mapconv index 8e19972f3df..2af715a7763 100755 --- a/admin/charsets/mapconv +++ b/admin/charsets/mapconv @@ -51,17 +51,18 @@ case "$3" in SOURCE="";; CZYBORRA) BASE="$BASE.gz"; - SOURCE="http://czyborra.com/charsets/${BASE}";; + SOURCE="https://czyborra.com/charsets/${BASE}";; IANA) - SOURCE="http://www.iana.org/assignments/charset-reg/${BASE}";; + SOURCE="https://www.iana.org/assignments/charset-reg/${BASE}";; UNICODE) - SOURCE="http://www.unicode.org/Public/MAPPINGS/VENDORS/ADOBE/${BASE}";; + SOURCE="https://www.unicode.org/Public/MAPPINGS/VENDORS/ADOBE/${BASE}";; UNICODE2) - SOURCE="http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/${BASE}";; + SOURCE="https://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/${BASE}";; YASUOKA) BASE="$BASE.Z"; SOURCE="http://kanji.zinbun.kyoto-u.ac.jp/~yasuoka/ftp/CJKtable/${BASE}";; KANJI-DATABASE) + # FIXME: This URL no longer works. SOURCE="http://kanji-database.cvs.sourceforge.net/viewvc/*checkout*/kanji-database/kanji-database/data/cns2ucsdkw.txt?revision=1.4";; *) printf 'Unknown file type: %s\n' "$3" diff --git a/admin/charsets/mapfiles/README b/admin/charsets/mapfiles/README index 7e4493bdc65..4cc615bf89f 100644 --- a/admin/charsets/mapfiles/README +++ b/admin/charsets/mapfiles/README @@ -15,7 +15,7 @@ files based on freely available information. * CP932.TXT Available at: - <http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP932.TXT> + <https://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP932.TXT> * PTCP154 @@ -42,8 +42,8 @@ Available at: * stdenc.txt and symbol.txt Available at: - <http://www.unicode.org/Public/MAPPINGS/VENDORS/ADOBE/stdenc.txt> - <http://www.unicode.org/Public/MAPPINGS/VENDORS/ADOBE/symbol.txt> + <https://www.unicode.org/Public/MAPPINGS/VENDORS/ADOBE/stdenc.txt> + <https://www.unicode.org/Public/MAPPINGS/VENDORS/ADOBE/symbol.txt> (2) Newly created files diff --git a/admin/grammars/js.wy b/admin/grammars/js.wy index ff048d82e9a..f5aca81d047 100644 --- a/admin/grammars/js.wy +++ b/admin/grammars/js.wy @@ -25,7 +25,7 @@ ;; The grammar itself is transcribed from the ECMAScript Language ;; Specification published at ;; -;; http://www.ecma-international.org/publications/standards/Ecma-262.htm +;; https://www.ecma-international.org/publications/standards/Ecma-262.htm ;; ;; and redistributed under the following license: diff --git a/admin/notes/bugtracker b/admin/notes/bugtracker index b890b891666..ac54f8de029 100644 --- a/admin/notes/bugtracker +++ b/admin/notes/bugtracker @@ -76,7 +76,7 @@ cc everyone on replies.) (Many people think the submitter SHOULD be automatically subscribed to subsequent discussion, but this does not seem to be implemented. -See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=37078 +See https://bugs.debian.org/37078 See also https://debbugs.gnu.org/5439 ) Do NOT send a separate copy to the bug list address, since this may @@ -155,7 +155,7 @@ Package: emacs Version: 23.0.60 Severity: minor -Remember to fix FOO, as discussed on emacs-devel at http://... . +Remember to fix FOO, as discussed on emacs-devel at https://... . ** Not interested in tracker control messages (tags being set, etc)? Discard mails matching: @@ -280,7 +280,7 @@ tag:tag # all bugs with given tag *** Usertags -See <http://wiki.debian.org/bugs.debian.org/usertags> +See <https://wiki.debian.org/bugs.debian.org/usertags> "Usertags" are very similar to tags: a set of labels that can be added to a bug. There are two differences between normal tags and user tags: @@ -385,7 +385,7 @@ will be assigned proper numbers). NB you cannot clone a merged bug. You'd think that trying to do so would just give you an unmerged copy of the specified bug number, but no: -http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=474742 +https://bugs.debian.org/474742 You must unmerge, clone, then re-merge. diff --git a/admin/notes/copyright b/admin/notes/copyright index e22db6bc557..5a0cf4d8d1f 100644 --- a/admin/notes/copyright +++ b/admin/notes/copyright @@ -193,14 +193,14 @@ lib-src/etags.c After some investigation in Feb 2007, then to the best of our knowledge we believe that the original 1984 Emacs version was based on the version in BSD4.2. See for example this 1985 post from Ken Arnold: - <http://groups.google.com/group/mod.sources/browse_thread/thread/ffe5c55845a640a9> + <https://groups.google.com/group/mod.sources/browse_thread/thread/ffe5c55845a640a9> I have received enough requests for the current source to ctags to post it. Here is the latest version (what will go out with 4.3, modulo any bugs fixed during the beta period). It is the 4.2 ctags with recognition of yacc and lex tags added. See also a 1984 version of ctags (no copyright) posted to net.sources: - <http://groups.google.com/group/net.sources/msg/a21b6c21be12a98d> + <https://groups.google.com/group/net.sources/msg/a21b6c21be12a98d> Version of etags.c in emacs-16.56 duplicates comment typos. Accordingly, in Feb 2007 we added a 1984 copyright for the @@ -350,9 +350,7 @@ added or not, rms says (2007-02-25, "oldXmenu issues"): insque.c had no copyright notice until 2005. The version of insque.c added to Emacs 1992-01-27 is essentially the same as insremque.c added to glic three days later by Roland McGrath, with an FSF copyright and -GPL, but no ChangeLog entry: -<http://sources.redhat.com/cgi-bin/cvsweb.cgi/~checkout~/libc/misc/insremque.c?\ -rev=1.1&cvsroot=glibc> +GPL, but no ChangeLog entry. To the best of his recollection, McGrath (who has a copyright assignment) was the author of this file (email from roland at frob.com to rms, 2007-02-23, "Where did insque.c come from?"). The FSF diff --git a/admin/notes/emba b/admin/notes/emba index cb0dbc48095..40fc88b88ae 100644 --- a/admin/notes/emba +++ b/admin/notes/emba @@ -19,9 +19,6 @@ when a job fails. It sends notifications about test status to If you want to receive these notifications, please subscribe at <https://lists.gnu.org/mailman/listinfo/emacs-buildstatus>. -Alternatively, these notifications can be read via gmane at -<nntp+news.gmane.org:gmane.emacs.buildstatus>. - The messages contain a URL to the log file of the failed job, like <https://emba.gnu.org/emacs/emacs/-/jobs/739/raw>. diff --git a/admin/notes/nextstep b/admin/notes/nextstep index a2e5ce2c9b0..b053294880b 100644 --- a/admin/notes/nextstep +++ b/admin/notes/nextstep @@ -65,9 +65,6 @@ functions are: Currently ctrl-g is not detected in as many circumstances as other emacsen. It is not certain whether this is due to the means of event loop integration, or errors of omission in the NS code. This is an area for improvement. -Also, see the article here and its containing thread: - -http://article.gmane.org/gmane.emacs.devel/92021/match=handling%5fsignal diff --git a/admin/notes/spelling b/admin/notes/spelling index a63d4bba849..b783227a37a 100644 --- a/admin/notes/spelling +++ b/admin/notes/spelling @@ -8,4 +8,4 @@ Re "behavior" vs "behaviour", etc. - It's probably (IMHO --ttn, 2017-10-13) not a high priority to change existing text; use your best judgement (ask if unsure). -- http://lists.gnu.org/archive/html/emacs-devel/2005-06/msg00489.html +- https://lists.gnu.org/r/emacs-devel/2005-06/msg00489.html |