mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-05 22:20:24 -08:00
* admin/syncdoc-type-hierarchy.el (syncdoc-make-type-table): * admin/unidata/unidata-gen.el (unidata-gen-table-word-list): * lisp/arc-mode.el (archive--summarize-descs): * lisp/auth-source.el (auth-source-forget+): * lisp/battery.el (battery-linux-proc-acpi, battery-linux-sysfs): * lisp/calendar/parse-time.el (parse-time-tokenize): * lisp/calendar/time-date.el (decoded-time-add) (decoded-time--alter-month, decoded-time--alter-day): * lisp/cedet/semantic/ede-grammar.el (project-compile-target): * lisp/dired.el (dired-insert-set-properties): * lisp/edmacro.el (edmacro-format-keys): * lisp/epa-file.el (epa-file--replace-text): * lisp/eshell/esh-cmd.el (eshell-for-iterate): * lisp/eshell/esh-io.el (eshell-create-handles) (eshell-duplicate-handles, eshell-protect-handles) (eshell-copy-output-handle, eshell-buffered-print): * lisp/font-lock.el (font-lock-fontify-keywords-region): * lisp/help-fns.el: * lisp/ibuf-ext.el (ibuffer-generate-filter-groups) (ibuffer-insert-filter-group-before): * lisp/ibuffer.el (ibuffer-confirm-operation-on, ibuffer-map-lines): * lisp/image/image-dired-external.el (image-dired-thumb-queue-run): * lisp/image/image-dired.el (image-dired-display-thumbs) (image-dired-line-up): * lisp/imenu.el (imenu--split): * lisp/info-xref.el (info-xref-check-node, info-xref-check-all-custom): * lisp/international/quail.el (quail-insert-decode-map): * lisp/international/rfc1843.el (rfc1843-decode): * lisp/mail/ietf-drums-date.el (ietf-drums-date--tokenize-string): * lisp/mail/ietf-drums.el (ietf-drums-token-to-list): * lisp/mail/rfc2047.el (rfc2047-qp-or-base64): * lisp/mail/rfc2231.el (rfc2231-encode-string): * lisp/mail/yenc.el (yenc-decode-region): * lisp/mh-e/mh-e.el (mh-xargs): * lisp/mh-e/mh-folder.el (mh-recenter): * lisp/mh-e/mh-mime.el (mh-mime-part-index): * lisp/mh-e/mh-search.el (mh-search): * lisp/mh-e/mh-thread.el (mh-thread-current-indentation-level): * lisp/mh-e/mh-utils.el (mh-sub-folders-parse): * lisp/minibuffer.el (minibuffer--sort-by-position) (completion-pcm--pattern-point-idx): * lisp/mpc.el (mpc-cmd-find, mpc-cmd-move, mpc-select-extend) (mpc-songs-refresh, mpc-songpointer-score) (mpc-songpointer-refresh-hairy): * lisp/msb.el (msb--mode-menu-cond, msb--most-recently-used-menu) (msb--split-menus-2, msb--make-keymap-menu): * lisp/net/pop3.el (pop3-send-streaming-command): * lisp/net/puny.el (puny-encode-complex, puny-decode-string-internal): * lisp/net/shr-color.el (shr-color-hue-to-rgb): * lisp/net/soap-client.el (soap-encode-xs-complex-type) (soap-decode-xs-complex-type, soap-resolve-references-for-operation) (soap-wsdl-resolve-references): * lisp/play/5x5.el (5x5-made-move, 5x5-down, 5x5-right): * lisp/play/decipher.el (key, decipher-mode-syntax-table) (decipher-add-undo, decipher-complete-alphabet, decipher--analyze) (decipher--digram-counts, decipher--digram-total): * lisp/play/hanoi.el (hanoi-move-ring): * lisp/play/snake.el (snake-reset-game, snake-update-game): * lisp/profiler.el (profiler-calltree-depth, profiler-calltree-build-1) (profiler-calltree-build-unified) (profiler-calltree-compute-percentages): * lisp/registry.el (registry-reindex): * lisp/simple.el (completion-list-candidate-at-point): * lisp/strokes.el (strokes-xpm-to-compressed-string): * lisp/term.el (term-emulate-terminal, term--handle-colors-list): * lisp/treesit.el (treesit-node-index, treesit-indent-region): * lisp/url/url-cookie.el (url-cookie-parse-file-netscape): * lisp/url/url-dav.el (url-dav-file-name-completion): * lisp/url/url-queue.el (url-queue-setup-runners) (url-queue-run-queue): * lisp/wdired.el (wdired-finish-edit): * lisp/wid-edit.el (widget-move): * lisp/window-tool-bar.el (window-tool-bar-string): * lisp/winner.el (winner-undo): * lisp/xwidget.el (xwidget-webkit-isearch-forward) (xwidget-webkit-isearch-backward): Prefer incf to cl-incf.
255 lines
9.3 KiB
EmacsLisp
255 lines
9.3 KiB
EmacsLisp
;;; puny.el --- translate non-ASCII domain names to ASCII -*- lexical-binding:t -*-
|
|
|
|
;; Copyright (C) 2015-2025 Free Software Foundation, Inc.
|
|
|
|
;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
|
|
;; Keywords: mail, net
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
;; (at your option) any later version.
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; 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 GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Written by looking at
|
|
;; https://stackoverflow.com/questions/183485/can-anyone-recommend-a-good-free-javascript-for-punycode-to-unicode-conversion
|
|
|
|
;;; Code:
|
|
|
|
(eval-when-compile (require 'cl-lib))
|
|
(require 'seq)
|
|
|
|
(defun puny-encode-domain (domain)
|
|
"Encode DOMAIN according to the IDNA/punycode algorithm.
|
|
For instance, \"fśf.org\" => \"xn--ff-2sa.org\"."
|
|
;; The vast majority of domain names are not IDNA domain names, so
|
|
;; add a check first to avoid doing unnecessary work.
|
|
(if (string-match "\\`[[:ascii:]]+\\'" domain)
|
|
domain
|
|
(mapconcat #'puny-encode-string (split-string domain "[.]") ".")))
|
|
|
|
(defun puny-encode-string (string)
|
|
"Encode STRING according to the IDNA/punycode algorithm.
|
|
This is used to encode non-ASCII domain names.
|
|
For instance, \"bücher\" => \"xn--bcher-kva\"."
|
|
(setq string (downcase (string-glyph-compose string)))
|
|
(let ((ascii (seq-filter (lambda (char)
|
|
(< char 128))
|
|
string)))
|
|
(if (= (length ascii) (length string))
|
|
string
|
|
(concat "xn--"
|
|
(if (null ascii)
|
|
""
|
|
(concat ascii "-"))
|
|
(puny-encode-complex (length ascii) string)))))
|
|
|
|
(defun puny-decode-domain (domain)
|
|
"Decode DOMAIN according to the IDNA/punycode algorithm.
|
|
For instance, \"xn--ff-2sa.org\" => \"fśf.org\"."
|
|
(mapconcat #'puny-decode-string (split-string domain "[.]") "."))
|
|
|
|
(defun puny-decode-string (string)
|
|
"Decode an IDNA/punycode-encoded string.
|
|
For instance \"xn--bcher-kva\" => \"bücher\"."
|
|
(if (string-match "\\`xn--" string)
|
|
(condition-case nil
|
|
(puny-decode-string-internal (substring string 4))
|
|
;; If the string is invalid Punycode, just return the string.
|
|
(args-out-of-range string))
|
|
string))
|
|
|
|
(defconst puny-initial-n 128)
|
|
(defconst puny-initial-bias 72)
|
|
(defconst puny-base 36)
|
|
(defconst puny-damp 700)
|
|
(defconst puny-tmin 1)
|
|
(defconst puny-tmax 26)
|
|
(defconst puny-skew 38)
|
|
|
|
;; 0-25 a-z
|
|
;; 26-36 0-9
|
|
(defun puny-encode-digit (d)
|
|
(if (< d 26)
|
|
(+ ?a d)
|
|
(+ ?0 (- d 26))))
|
|
|
|
(defun puny-adapt (delta num-points first-time)
|
|
(let ((delta (if first-time
|
|
(/ delta puny-damp)
|
|
(/ delta 2)))
|
|
(k 0))
|
|
(setq delta (+ delta (/ delta num-points)))
|
|
(while (> delta (/ (* (- puny-base puny-tmin)
|
|
puny-tmax)
|
|
2))
|
|
(setq delta (/ delta (- puny-base puny-tmin))
|
|
k (+ k puny-base)))
|
|
(+ k (/ (* (1+ (- puny-base puny-tmin)) delta)
|
|
(+ delta puny-skew)))))
|
|
|
|
(defun puny-encode-complex (insertion-points string)
|
|
(let ((n puny-initial-n)
|
|
(delta 0)
|
|
(bias puny-initial-bias)
|
|
(h insertion-points)
|
|
result m ijv q)
|
|
(while (< h (length string))
|
|
(setq ijv (cl-loop for char across string
|
|
when (>= char n)
|
|
minimize char))
|
|
(setq m ijv)
|
|
(setq delta (+ delta (* (- m n) (+ h 1)))
|
|
n m)
|
|
(cl-loop for char across string
|
|
when (< char n)
|
|
do (incf delta)
|
|
when (= char ijv)
|
|
do (progn
|
|
(setq q delta)
|
|
(cl-loop with k = puny-base
|
|
for t1 = (cond
|
|
((<= k bias)
|
|
puny-tmin)
|
|
((>= k (+ bias puny-tmax))
|
|
puny-tmax)
|
|
(t
|
|
(- k bias)))
|
|
while (>= q t1)
|
|
do (push (puny-encode-digit
|
|
(+ t1 (mod (- q t1)
|
|
(- puny-base t1))))
|
|
result)
|
|
do (setq q (/ (- q t1) (- puny-base t1))
|
|
k (+ k puny-base)))
|
|
(push (puny-encode-digit q) result)
|
|
(setq bias (puny-adapt delta (+ h 1) (= h insertion-points))
|
|
delta 0
|
|
h (1+ h))))
|
|
(incf delta)
|
|
(incf n))
|
|
(nreverse result)))
|
|
|
|
(defun puny-decode-digit (cp)
|
|
(cond
|
|
((<= cp ?9)
|
|
(+ (- cp ?0) 26))
|
|
((<= cp ?Z)
|
|
(- cp ?A))
|
|
((<= cp ?z)
|
|
(- cp ?a))
|
|
(t
|
|
puny-base)))
|
|
|
|
(defun puny-decode-string-internal (string)
|
|
(with-temp-buffer
|
|
(insert string)
|
|
;; The encoded chars are after any final dash, else the whole string.
|
|
(let ((encoded (buffer-substring
|
|
(if (search-backward "-" nil 'move)
|
|
(1+ (point))
|
|
(point))
|
|
(point-max)))
|
|
(ic 0)
|
|
(i 0)
|
|
(bias puny-initial-bias)
|
|
(n puny-initial-n)
|
|
out)
|
|
(delete-region (point) (point-max))
|
|
(while (< ic (length encoded))
|
|
(let ((old-i i)
|
|
(w 1)
|
|
(k puny-base)
|
|
digit t1)
|
|
(cl-loop do (progn
|
|
(setq digit (puny-decode-digit (aref encoded ic)))
|
|
(incf ic)
|
|
(incf i (* digit w))
|
|
(setq t1 (cond
|
|
((<= k bias)
|
|
puny-tmin)
|
|
((>= k (+ bias puny-tmax))
|
|
puny-tmax)
|
|
(t
|
|
(- k bias)))))
|
|
while (>= digit t1)
|
|
do (setq w (* w (- puny-base t1))
|
|
k (+ k puny-base)))
|
|
(setq out (1+ (buffer-size)))
|
|
(setq bias (puny-adapt (- i old-i) out (= old-i 0))))
|
|
|
|
(setq n (+ n (/ i out))
|
|
i (mod i out))
|
|
(goto-char (point-min))
|
|
(forward-char i)
|
|
(insert (format "%c" n))
|
|
(incf i)))
|
|
(buffer-string)))
|
|
|
|
;; https://www.unicode.org/reports/tr39/#Restriction_Level_Detection
|
|
;; https://www.unicode.org/reports/tr31/#Table_Candidate_Characters_for_Inclusion_in_Identifiers
|
|
|
|
(defun puny-highly-restrictive-string-p (string)
|
|
"Say whether STRING is \"highly restrictive\" in the Unicode IDNA sense.
|
|
See https://www.unicode.org/reports/tr39/#Restriction_Level_Detection
|
|
for details. The main idea is that if you're mixing
|
|
scripts (like latin and cyrillic), you may confuse the user by
|
|
using homographs."
|
|
(let ((scripts
|
|
(delq
|
|
t
|
|
(seq-uniq
|
|
(seq-map (lambda (char)
|
|
(if (memq char
|
|
;; These characters are always allowed
|
|
;; in any string.
|
|
'(#x0027 ; APOSTROPHE
|
|
#x002D ; HYPHEN-MINUS
|
|
#x002E ; FULL STOP
|
|
#x003A ; COLON
|
|
#x00B7 ; MIDDLE DOT
|
|
#x058A ; ARMENIAN HYPHEN
|
|
#x05F3 ; HEBREW PUNCTUATION GERESH
|
|
#x05F4 ; HEBREW PUNCTUATION GERSHAYIM
|
|
#x0F0B ; TIBETAN MARK INTERSYLLABIC TSHEG
|
|
#x200C ; ZERO WIDTH NON-JOINER*
|
|
#x200D ; ZERO WIDTH JOINER*
|
|
#x2010 ; HYPHEN
|
|
#x2019 ; RIGHT SINGLE QUOTATION MARK
|
|
#x2027 ; HYPHENATION POINT
|
|
#x30A0 ; KATAKANA-HIRAGANA DOUBLE HYPHEN
|
|
#x30FB)) ; KATAKANA MIDDLE DOT
|
|
t
|
|
(aref char-script-table char)))
|
|
string)))))
|
|
(or
|
|
;; Every character uses the same script.
|
|
(= (length scripts) 1)
|
|
(seq-some 'identity
|
|
(mapcar (lambda (list)
|
|
(seq-every-p (lambda (script)
|
|
(memq script list))
|
|
scripts))
|
|
'((latin han hiragana kana)
|
|
(latin han bopomofo)
|
|
(latin han hangul)))))))
|
|
|
|
(defun puny-highly-restrictive-domain-p (domain)
|
|
"Say whether DOMAIN is \"highly restrictive\" in the Unicode IDNA sense.
|
|
See `puny-highly-restrictive-string-p' for further details."
|
|
(seq-every-p 'puny-highly-restrictive-string-p (split-string domain "[.]")))
|
|
|
|
(provide 'puny)
|
|
|
|
;;; puny.el ends here
|