diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/mb/Unicode/Makefile | 14 | ||||
-rwxr-xr-x | src/backend/utils/mb/Unicode/UCS_to_BIG5.pl | 4 | ||||
-rwxr-xr-x | src/backend/utils/mb/Unicode/UCS_to_JOHAB.pl | 4 | ||||
-rwxr-xr-x | src/backend/utils/mb/Unicode/UCS_to_most.pl | 4 | ||||
-rw-r--r-- | src/common/unicode/Makefile | 2 | ||||
-rw-r--r-- | src/common/unicode_norm.c | 8 |
6 files changed, 18 insertions, 18 deletions
diff --git a/src/backend/utils/mb/Unicode/Makefile b/src/backend/utils/mb/Unicode/Makefile index a97e1c6cd72..63710f9ea73 100644 --- a/src/backend/utils/mb/Unicode/Makefile +++ b/src/backend/utils/mb/Unicode/Makefile @@ -119,7 +119,7 @@ DOWNLOAD = wget -O $@ --no-use-server-timestamps #DOWNLOAD = curl -o $@ BIG5.TXT CNS11643.TXT: - $(DOWNLOAD) http://ftp.unicode.org/Public/MAPPINGS/OBSOLETE/EASTASIA/OTHER/$(@F) + $(DOWNLOAD) https://www.unicode.org/Public/MAPPINGS/OBSOLETE/EASTASIA/OTHER/$(@F) euc-jis-2004-std.txt sjis-0213-2004-std.txt: $(DOWNLOAD) http://x0213.org/codetable/$(@F) @@ -131,19 +131,19 @@ GB2312.TXT: $(DOWNLOAD) 'http://trac.greenstone.org/browser/trunk/gsdl/unicode/MAPPINGS/EASTASIA/GB/GB2312.TXT?rev=1842&format=txt' JIS0212.TXT: - $(DOWNLOAD) http://ftp.unicode.org/Public/MAPPINGS/OBSOLETE/EASTASIA/JIS/$(@F) + $(DOWNLOAD) https://www.unicode.org/Public/MAPPINGS/OBSOLETE/EASTASIA/JIS/$(@F) JOHAB.TXT KSX1001.TXT: - $(DOWNLOAD) http://ftp.unicode.org/Public/MAPPINGS/OBSOLETE/EASTASIA/KSC/$(@F) + $(DOWNLOAD) https://www.unicode.org/Public/MAPPINGS/OBSOLETE/EASTASIA/KSC/$(@F) KOI8-R.TXT KOI8-U.TXT: - $(DOWNLOAD) http://ftp.unicode.org/Public/MAPPINGS/VENDORS/MISC/$(@F) + $(DOWNLOAD) https://www.unicode.org/Public/MAPPINGS/VENDORS/MISC/$(@F) $(ISO8859TEXTS): - $(DOWNLOAD) http://ftp.unicode.org/Public/MAPPINGS/ISO8859/$(@F) + $(DOWNLOAD) https://www.unicode.org/Public/MAPPINGS/ISO8859/$(@F) $(filter-out CP8%,$(WINTEXTS)) CP932.TXT CP950.TXT: - $(DOWNLOAD) http://ftp.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/$(@F) + $(DOWNLOAD) https://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/$(@F) $(filter CP8%,$(WINTEXTS)): - $(DOWNLOAD) http://ftp.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/$(@F) + $(DOWNLOAD) https://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/$(@F) diff --git a/src/backend/utils/mb/Unicode/UCS_to_BIG5.pl b/src/backend/utils/mb/Unicode/UCS_to_BIG5.pl index bcdd29b686f..297f7b98938 100755 --- a/src/backend/utils/mb/Unicode/UCS_to_BIG5.pl +++ b/src/backend/utils/mb/Unicode/UCS_to_BIG5.pl @@ -8,8 +8,8 @@ # map files provided by Unicode organization. # Unfortunately it is prohibited by the organization # to distribute the map files. So if you try to use this script, -# you have to obtain the map files from the organization's ftp site. -# ftp://www.unicode.org/Public/MAPPINGS/ +# you have to obtain the map files from the organization's download site. +# https://www.unicode.org/Public/MAPPINGS/ # # Our "big5" comes from BIG5.TXT, with the addition of the characters # in the range 0xf9d6-0xf9dc from CP950.TXT. diff --git a/src/backend/utils/mb/Unicode/UCS_to_JOHAB.pl b/src/backend/utils/mb/Unicode/UCS_to_JOHAB.pl index 222093dff22..8645a7ea6ef 100755 --- a/src/backend/utils/mb/Unicode/UCS_to_JOHAB.pl +++ b/src/backend/utils/mb/Unicode/UCS_to_JOHAB.pl @@ -8,8 +8,8 @@ # map files provided by Unicode organization. # Unfortunately it is prohibited by the organization # to distribute the map files. So if you try to use this script, -# you have to obtain the map files from the organization's ftp site. -# ftp://www.unicode.org/Public/MAPPINGS/ +# you have to obtain the map files from the organization's download site. +# https://www.unicode.org/Public/MAPPINGS/ # We assume the file include three tab-separated columns: # JOHAB code in hex # UCS-2 code in hex diff --git a/src/backend/utils/mb/Unicode/UCS_to_most.pl b/src/backend/utils/mb/Unicode/UCS_to_most.pl index 647417b4bf8..2290feddf4e 100755 --- a/src/backend/utils/mb/Unicode/UCS_to_most.pl +++ b/src/backend/utils/mb/Unicode/UCS_to_most.pl @@ -8,8 +8,8 @@ # map files provided by Unicode organization. # Unfortunately it is prohibited by the organization # to distribute the map files. So if you try to use this script, -# you have to obtain the map files from the organization's ftp site. -# ftp://www.unicode.org/Public/MAPPINGS/ +# you have to obtain the map files from the organization's download site. +# https://www.unicode.org/Public/MAPPINGS/ # We assume the file include three tab-separated columns: # source character set code in hex # UCS-2 code in hex diff --git a/src/common/unicode/Makefile b/src/common/unicode/Makefile index e20ef778f34..334859c9848 100644 --- a/src/common/unicode/Makefile +++ b/src/common/unicode/Makefile @@ -23,7 +23,7 @@ DOWNLOAD = wget -O $@ --no-use-server-timestamps # These files are part of the Unicode Character Database. Download # them on demand. UnicodeData.txt CompositionExclusions.txt NormalizationTest.txt: - $(DOWNLOAD) http://unicode.org/Public/UNIDATA/$(@F) + $(DOWNLOAD) https://www.unicode.org/Public/UNIDATA/$(@F) # Generation of conversion tables used for string normalization with # UTF-8 strings. diff --git a/src/common/unicode_norm.c b/src/common/unicode_norm.c index 89c55332128..7509f814379 100644 --- a/src/common/unicode_norm.c +++ b/src/common/unicode_norm.c @@ -3,7 +3,7 @@ * Normalize a Unicode string to NFKC form * * This implements Unicode normalization, per the documentation at - * http://www.unicode.org/reports/tr15/. + * https://www.unicode.org/reports/tr15/. * * Portions Copyright (c) 2017-2019, PostgreSQL Global Development Group * @@ -109,7 +109,7 @@ get_decomposed_size(pg_wchar code) /* * Fast path for Hangul characters not stored in tables to save memory as * decomposition is algorithmic. See - * http://unicode.org/reports/tr15/tr15-18.html, annex 10 for details on + * https://www.unicode.org/reports/tr15/tr15-18.html, annex 10 for details on * the matter. */ if (code >= SBASE && code < SBASE + SCOUNT) @@ -234,7 +234,7 @@ decompose_code(pg_wchar code, pg_wchar **result, int *current) /* * Fast path for Hangul characters not stored in tables to save memory as * decomposition is algorithmic. See - * http://unicode.org/reports/tr15/tr15-18.html, annex 10 for details on + * https://www.unicode.org/reports/tr15/tr15-18.html, annex 10 for details on * the matter. */ if (code >= SBASE && code < SBASE + SCOUNT) @@ -362,7 +362,7 @@ unicode_normalize_kc(const pg_wchar *input) continue; /* - * Per Unicode (http://unicode.org/reports/tr15/tr15-18.html) annex 4, + * Per Unicode (https://www.unicode.org/reports/tr15/tr15-18.html) annex 4, * a sequence of two adjacent characters in a string is an * exchangeable pair if the combining class (from the Unicode * Character Database) for the first character is greater than the |