diff --git a/cleanup-mars-unicode-tables-tree.sh b/cleanup-mars-unicode-tables-tree.sh deleted file mode 100644 index 45130e8..0000000 --- a/cleanup-mars-unicode-tables-tree.sh +++ /dev/null @@ -1,173 +0,0 @@ -#!/bin/sh -# SPDX-License-Identifier: GPL-2.0-only -# -# cleanup-mars-unicode-tables-tree.sh -# -# Run from the root of the mars-unicode-tables repository. -# This script only reorganizes files and writes repository/license metadata. -# It does not regenerate TAB/*.c. - -set -eu - -die() { - echo "error: $*" >&2 - exit 1 -} - -[ -d .git ] || die "run this from the mars-unicode-tables repository root" - -mkdir -p MAPPINGS/VENDORS -mkdir -p LICENSES -mkdir -p scripts -mkdir -p TAB - -# Move downloaded Unicode mapping vendor tree into the canonical upstream-shaped path. -# Expected messy layout from wget/import: -# VENDORS/MICSFT/... -# VENDORS/APPLE/... -# VENDORS/MISC/... -# -# Target: -# MAPPINGS/VENDORS/MICSFT/... -# MAPPINGS/VENDORS/APPLE/... -# MAPPINGS/VENDORS/MISC/... -if [ -d VENDORS ]; then - for d in VENDORS/*; do - [ -e "$d" ] || continue - base=$(basename "$d") - if [ -e "MAPPINGS/VENDORS/$base" ]; then - echo "merge: $d -> MAPPINGS/VENDORS/$base" - # Copy first, then remove the old tree. This is safer across filesystems. - cp -a "$d"/. "MAPPINGS/VENDORS/$base"/ - rm -rf "$d" - else - echo "move: $d -> MAPPINGS/VENDORS/$base" - mv "$d" "MAPPINGS/VENDORS/$base" - fi - done - rmdir VENDORS 2>/dev/null || true -fi - -# Remove accidental web crawler metadata. -find . -name robots.txt -type f -print -delete - -# Convert downloaded Unicode copyright page into a repo-local Markdown notice. -# Keep this as a short pointer/summary; the original upstream data files remain unchanged. -rm -f copyright.html COPYRIGHT.html COPYRIGHT.txt - -cat > COPYRIGHT.md <<'EOF' -# Copyright and licensing - -This repository contains two kinds of material. - -## Unicode data files - -The files under: - -- `UCD/` -- `MAPPINGS/` - -are imported from the Unicode Consortium public data directories, including: - -- `https://www.unicode.org/Public/17.0.0/ucd/` -- `https://www.unicode.org/Public/MAPPINGS/` - -These files are Unicode Data Files and are covered by the Unicode license terms. -Do not replace these files with Novell NSS `unitables/*.tab` files. - -## MARS-NWE generated/helper files - -Repository helper scripts and generated C table glue maintained by the MARS-NWE -project are licensed as GPL-2.0-only unless a file states otherwise. - -The generated tables are derived from the Unicode data files above and are shaped -for MARS-NWE/libnwcore compatibility, including NSS-compatible symbol names where -needed. -EOF - -cat > LICENSES/README.md <<'EOF' -# Licenses - -## Unicode data - -`UCD/` and `MAPPINGS/` contain Unicode Data Files imported from unicode.org. -They are covered by the Unicode license terms as published by the Unicode -Consortium. - -The source data should remain clearly separated from generated MARS-NWE output. - -## MARS-NWE repository code - -Scripts, build glue, generated-output templates, and other project-authored files -in this repository are GPL-2.0-only unless a file says otherwise. -EOF - -cat > LICENSES/GPL-2.0-only.txt <<'EOF' -GNU GENERAL PUBLIC LICENSE -Version 2, June 1991 - -This repository uses GPL-2.0-only for MARS-NWE-authored scripts and glue files. - -The full GPL-2.0 license text is available from the Free Software Foundation: -https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt -EOF - -# Add SPDX to existing generator if present and not already marked. -if [ -f scripts/gen_unicode_tables.py ]; then - if ! grep -q 'SPDX-License-Identifier:' scripts/gen_unicode_tables.py; then - tmp=$(mktemp) - { - echo '# SPDX-License-Identifier: GPL-2.0-only' - cat scripts/gen_unicode_tables.py - } > "$tmp" - mv "$tmp" scripts/gen_unicode_tables.py - chmod +x scripts/gen_unicode_tables.py 2>/dev/null || true - fi -fi - -# Refresh README conservatively. Keep it factual and independent of generated code. -cat > README.md <<'EOF' -# mars-unicode-tables - -Unicode data and generated table sources for MARS-NWE/libnwcore. - -This repository intentionally keeps upstream Unicode source data separate from -MARS-NWE-generated output. - -## Layout - -- `UCD/` - Unicode Character Database input files, currently imported from Unicode 17.0.0. - -- `MAPPINGS/` - Unicode mapping files from `https://www.unicode.org/Public/MAPPINGS/`, - preserving the upstream `VENDORS/...` hierarchy. - -- `scripts/` - MARS-NWE helper scripts/generators. - -- `TAB/` - Generated C table output consumed by MARS-NWE/libnwcore. - -- `LICENSES/` - License notes for Unicode data and MARS-NWE-authored helper code. - -## Policy - -Do not copy Novell NSS `shared/sdk/unitables/*.tab` files into this repository. -They may be used only as compatibility/reference material outside the committed -source data. - -Unicode case/codepage tables should be generated from Unicode.org data files. -EOF - -echo -echo "cleanup done." -echo "Review with:" -echo " git status" -echo " git diff --stat" -echo " git diff --check" -echo -echo "Suggested commit:" -echo " git add -A" -echo " git commit -m \"repo: organize Unicode mapping sources and licenses\"" diff --git a/mars-unicode-tables-0003-organize-mapping-sources-and-licenses.patch b/mars-unicode-tables-0003-organize-mapping-sources-and-licenses.patch deleted file mode 100644 index 78e06b7..0000000 --- a/mars-unicode-tables-0003-organize-mapping-sources-and-licenses.patch +++ /dev/null @@ -1,2019 +0,0 @@ -From 9e7100c6a83978c99d36e619f75f063083225a65 Mon Sep 17 00:00:00 2001 -From: Mario Fetka -Date: Fri, 12 Jun 2026 18:11:19 +0000 -Subject: [PATCH] repo: organize Unicode mapping sources and licenses - ---- - COPYRIGHT.md | 320 +++++++++++++ - LICENSES/GPL-2.0-only.txt | 338 +++++++++++++ - LICENSES/README.md | 20 +- - .../VENDORS}/APPLE/ARABIC.TXT | 0 - .../VENDORS}/APPLE/CELTIC.TXT | 0 - .../VENDORS}/APPLE/CENTEURO.TXT | 0 - .../VENDORS}/APPLE/CHINSIMP.TXT | 0 - .../VENDORS}/APPLE/CHINTRAD.TXT | 0 - .../VENDORS}/APPLE/CORPCHAR.TXT | 0 - .../VENDORS}/APPLE/CROATIAN.TXT | 0 - .../VENDORS}/APPLE/CYRILLIC.TXT | 0 - .../VENDORS}/APPLE/DEVANAGA.TXT | 0 - .../VENDORS}/APPLE/DINGBATS.TXT | 0 - {VENDORS => MAPPINGS/VENDORS}/APPLE/FARSI.TXT | 0 - .../VENDORS}/APPLE/GAELIC.TXT | 0 - {VENDORS => MAPPINGS/VENDORS}/APPLE/GREEK.TXT | 0 - .../VENDORS}/APPLE/GUJARATI.TXT | 0 - .../VENDORS}/APPLE/GURMUKHI.TXT | 0 - .../VENDORS}/APPLE/HEBREW.TXT | 0 - .../VENDORS}/APPLE/ICELAND.TXT | 0 - {VENDORS => MAPPINGS/VENDORS}/APPLE/INUIT.TXT | 0 - .../VENDORS}/APPLE/JAPANESE.TXT | 0 - .../VENDORS}/APPLE/KEYBOARD.TXT | 0 - .../VENDORS}/APPLE/KOREAN.TXT | 0 - {VENDORS => MAPPINGS/VENDORS}/APPLE/ROMAN.TXT | 0 - .../VENDORS}/APPLE/ROMANIAN.TXT | 0 - .../VENDORS}/APPLE/ReadMe.txt | 0 - .../VENDORS}/APPLE/Readme.txt | 0 - .../VENDORS}/APPLE/SYMBOL.TXT | 0 - {VENDORS => MAPPINGS/VENDORS}/APPLE/THAI.TXT | 0 - .../VENDORS}/APPLE/TURKISH.TXT | 0 - .../VENDORS}/APPLE/UKRAINE.TXT | 0 - .../VENDORS}/MICSFT/EBCDIC/CP037.TXT | 0 - .../VENDORS}/MICSFT/EBCDIC/CP1026.TXT | 0 - .../VENDORS}/MICSFT/EBCDIC/CP500.TXT | 0 - .../VENDORS}/MICSFT/EBCDIC/CP875.TXT | 0 - .../VENDORS}/MICSFT/MAC/CYRILLIC.TXT | 0 - .../VENDORS}/MICSFT/MAC/GREEK.TXT | 0 - .../VENDORS}/MICSFT/MAC/ICELAND.TXT | 0 - .../VENDORS}/MICSFT/MAC/LATIN2.TXT | 0 - .../VENDORS}/MICSFT/MAC/ROMAN.TXT | 0 - .../VENDORS}/MICSFT/MAC/TURKISH.TXT | 0 - .../VENDORS}/MICSFT/PC/CP437.TXT | 0 - .../VENDORS}/MICSFT/PC/CP737.TXT | 0 - .../VENDORS}/MICSFT/PC/CP775.TXT | 0 - .../VENDORS}/MICSFT/PC/CP850.TXT | 0 - .../VENDORS}/MICSFT/PC/CP852.TXT | 0 - .../VENDORS}/MICSFT/PC/CP855.TXT | 0 - .../VENDORS}/MICSFT/PC/CP857.TXT | 0 - .../VENDORS}/MICSFT/PC/CP860.TXT | 0 - .../VENDORS}/MICSFT/PC/CP861.TXT | 0 - .../VENDORS}/MICSFT/PC/CP862.TXT | 0 - .../VENDORS}/MICSFT/PC/CP863.TXT | 0 - .../VENDORS}/MICSFT/PC/CP864.TXT | 0 - .../VENDORS}/MICSFT/PC/CP865.TXT | 0 - .../VENDORS}/MICSFT/PC/CP866.TXT | 0 - .../VENDORS}/MICSFT/PC/CP869.TXT | 0 - .../VENDORS}/MICSFT/PC/CP874.TXT | 0 - .../VENDORS}/MICSFT/WINDOWS/CP1250.TXT | 0 - .../VENDORS}/MICSFT/WINDOWS/CP1251.TXT | 0 - .../VENDORS}/MICSFT/WINDOWS/CP1252.TXT | 0 - .../VENDORS}/MICSFT/WINDOWS/CP1253.TXT | 0 - .../VENDORS}/MICSFT/WINDOWS/CP1254.TXT | 0 - .../VENDORS}/MICSFT/WINDOWS/CP1255.TXT | 0 - .../VENDORS}/MICSFT/WINDOWS/CP1256.TXT | 0 - .../VENDORS}/MICSFT/WINDOWS/CP1257.TXT | 0 - .../VENDORS}/MICSFT/WINDOWS/CP1258.TXT | 0 - .../VENDORS}/MICSFT/WINDOWS/CP874.TXT | 0 - .../VENDORS}/MICSFT/WINDOWS/CP932.TXT | 0 - .../VENDORS}/MICSFT/WINDOWS/CP936.TXT | 0 - .../VENDORS}/MICSFT/WINDOWS/CP949.TXT | 0 - .../VENDORS}/MICSFT/WINDOWS/CP950.TXT | 0 - .../MICSFT/WindowsBestFit/bestfit1250.txt | 0 - .../MICSFT/WindowsBestFit/bestfit1251.txt | 0 - .../MICSFT/WindowsBestFit/bestfit1252.txt | 0 - .../MICSFT/WindowsBestFit/bestfit1253.txt | 0 - .../MICSFT/WindowsBestFit/bestfit1254.txt | 0 - .../MICSFT/WindowsBestFit/bestfit1255.txt | 0 - .../MICSFT/WindowsBestFit/bestfit1256.txt | 0 - .../MICSFT/WindowsBestFit/bestfit1257.txt | 0 - .../MICSFT/WindowsBestFit/bestfit1258.txt | 0 - .../MICSFT/WindowsBestFit/bestfit1361.txt | 0 - .../MICSFT/WindowsBestFit/bestfit874.txt | 0 - .../MICSFT/WindowsBestFit/bestfit932.txt | 0 - .../MICSFT/WindowsBestFit/bestfit936.txt | 0 - .../MICSFT/WindowsBestFit/bestfit949.txt | 0 - .../MICSFT/WindowsBestFit/bestfit950.txt | 0 - .../VENDORS}/MICSFT/WindowsBestFit/readme.txt | 0 - .../VENDORS}/MISC/APL-ISO-IR-68.TXT | 0 - .../VENDORS}/MISC/ATARIST.TXT | 0 - {VENDORS => MAPPINGS/VENDORS}/MISC/CP1006.TXT | 0 - {VENDORS => MAPPINGS/VENDORS}/MISC/CP424.TXT | 0 - {VENDORS => MAPPINGS/VENDORS}/MISC/CP856.TXT | 0 - .../MISC/DatedVersions/APL-ISO-IR-68-2004.TXT | 0 - .../VENDORS}/MISC/IBMGRAPH.TXT | 0 - {VENDORS => MAPPINGS/VENDORS}/MISC/KOI8-R.TXT | 0 - {VENDORS => MAPPINGS/VENDORS}/MISC/KOI8-U.TXT | 0 - .../VENDORS}/MISC/KPS9566.TXT | 0 - {VENDORS => MAPPINGS/VENDORS}/MISC/KZ1048.TXT | 0 - {VENDORS => MAPPINGS/VENDORS}/MISC/SGML.TXT | 0 - .../VENDORS}/MISC/US-ASCII-QUOTES.TXT | 0 - README.md | 18 +- - copyright.html | 205 -------- - robots.txt | 447 ------------------ - scripts/gen_unicode_tables.py | 1 + - 105 files changed, 692 insertions(+), 657 deletions(-) - create mode 100644 COPYRIGHT.md - create mode 100644 LICENSES/GPL-2.0-only.txt - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/ARABIC.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/CELTIC.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/CENTEURO.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/CHINSIMP.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/CHINTRAD.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/CORPCHAR.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/CROATIAN.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/CYRILLIC.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/DEVANAGA.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/DINGBATS.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/FARSI.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/GAELIC.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/GREEK.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/GUJARATI.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/GURMUKHI.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/HEBREW.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/ICELAND.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/INUIT.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/JAPANESE.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/KEYBOARD.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/KOREAN.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/ROMAN.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/ROMANIAN.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/ReadMe.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/Readme.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/SYMBOL.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/THAI.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/TURKISH.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/APPLE/UKRAINE.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/EBCDIC/CP037.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/EBCDIC/CP1026.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/EBCDIC/CP500.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/EBCDIC/CP875.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/MAC/CYRILLIC.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/MAC/GREEK.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/MAC/ICELAND.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/MAC/LATIN2.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/MAC/ROMAN.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/MAC/TURKISH.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/PC/CP437.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/PC/CP737.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/PC/CP775.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/PC/CP850.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/PC/CP852.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/PC/CP855.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/PC/CP857.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/PC/CP860.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/PC/CP861.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/PC/CP862.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/PC/CP863.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/PC/CP864.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/PC/CP865.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/PC/CP866.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/PC/CP869.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/PC/CP874.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WINDOWS/CP1250.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WINDOWS/CP1251.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WINDOWS/CP1252.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WINDOWS/CP1253.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WINDOWS/CP1254.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WINDOWS/CP1255.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WINDOWS/CP1256.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WINDOWS/CP1257.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WINDOWS/CP1258.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WINDOWS/CP874.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WINDOWS/CP932.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WINDOWS/CP936.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WINDOWS/CP949.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WINDOWS/CP950.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WindowsBestFit/bestfit1250.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WindowsBestFit/bestfit1251.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WindowsBestFit/bestfit1252.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WindowsBestFit/bestfit1253.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WindowsBestFit/bestfit1254.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WindowsBestFit/bestfit1255.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WindowsBestFit/bestfit1256.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WindowsBestFit/bestfit1257.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WindowsBestFit/bestfit1258.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WindowsBestFit/bestfit1361.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WindowsBestFit/bestfit874.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WindowsBestFit/bestfit932.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WindowsBestFit/bestfit936.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WindowsBestFit/bestfit949.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WindowsBestFit/bestfit950.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MICSFT/WindowsBestFit/readme.txt (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MISC/APL-ISO-IR-68.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MISC/ATARIST.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MISC/CP1006.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MISC/CP424.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MISC/CP856.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MISC/DatedVersions/APL-ISO-IR-68-2004.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MISC/IBMGRAPH.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MISC/KOI8-R.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MISC/KOI8-U.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MISC/KPS9566.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MISC/KZ1048.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MISC/SGML.TXT (100%) - rename {VENDORS => MAPPINGS/VENDORS}/MISC/US-ASCII-QUOTES.TXT (100%) - delete mode 100644 copyright.html - delete mode 100644 robots.txt - -diff --git a/COPYRIGHT.md b/COPYRIGHT.md -new file mode 100644 -index 0000000..bd8a61c ---- /dev/null -+++ b/COPYRIGHT.md -@@ -0,0 +1,320 @@ -+# Copyright and license notes -+ -+This repository contains two kinds of material: -+ -+1. Unicode upstream data files mirrored for reproducible MARS-NWE table -+ generation. -+2. MARS-NWE generator/source files used to transform that data into C tables. -+ -+## Unicode data -+ -+The following directories contain Unicode data files mirrored from -+`https://www.unicode.org/Public/`: -+ -+- `UCD/` -+- `MAPPINGS/` -+ -+They are governed by the Unicode Terms of Use / Unicode License. The copied -+Unicode terms page follows below for offline auditability. -+ -+## MARS-NWE files -+ -+Files written for this repository, including scripts and generated table glue, -+are distributed under GPL-2.0-only unless a file says otherwise. -+ -+SPDX-License-Identifier: GPL-2.0-only -+ -+--- -+ -+ -+-+-+-+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+
-+ -+ -+ -+ -+ -+ -+ -+
[Unicode] Terms of -+UseTech Site | Site Map | Search
 
-+

Unicode® -+Consortium Copyright, Terms of Use, and Licenses

-+

Welcome to the website of Unicode, Inc. (dba The Unicode Consortium) -+(“Unicode”). Except as otherwise noted herein, these terms and -+conditions (“Terms of Use”) govern your use of the Unicode website and -+Unicode Products. Your use of this website and/or Unicode Products -+constitutes your agreement to follow and be bound by these Terms of Use. -+Unicode provides you with access to and use of this website and Unicode -+Products subject to your compliance with these Terms of Use. If you do -+not agree to these Terms of Use, you should not access or use this -+website or Unicode Products. Unicode reserves the right to make changes -+to the website, to Unicode Products, and to these Terms of Use at any -+time in its sole discretion.

-+
    -+
  1. Unicode -+Copyright: Copyright © 1991-Present Unicode, Inc.

  2. -+
  3. Definitions -+
      -+
    1. “Unicode Products” includes the Unicode website and its content, -+Data Files, Software, the Unicode Standard, all other Unicode standards, -+specifications, technical reports, technical notes, annexes, code -+charts, data files, software, publications, webinars, videos, course -+materials, online and in-person events, and all other Unicode products -+and services made available via this website or any other channel of -+distribution, including but not limited to Github, Maven, YouTube, and -+other third-party sites where Unicode maintains and provides products, -+materials, and services.

    2. -+
    3. “Unicode Data Files” or "Data Files" include all computer data -+files under the following directories:

      -+
        -+
      1. https://www.unicode.org/Public/
      2. -+
      3. https://www.unicode.org/reports/
      4. -+
      5. https://www.unicode.org/ivd/data/
      6. -+
      7. https://github.com/unicode-org/
      8. -+
      -+

      but exclude any materials present in the above directories that are -+not computer data files, such as PDF code charts and Technical -+Reports.

    4. -+
    5. “Unicode Software” or "Software" includes any source code or -+compiled code in any Unicode Product including but not limited to the -+code included in the following directories:

      -+
        -+
      1. https://www.unicode.org/Public/PROGRAMS/
      2. -+
      3. https://www.unicode.org/Public/cldr/
      4. -+
      5. https://github.com/unicode-org/
      6. -+
    6. -+
  4. -+
  5. Permissions, Licenses, -+and Restrictions on Use

    -+
      -+
    1. You are authorized to freely access and use this website and its -+content and all Unicode Products subject to these Terms of Use and -+subject to any restriction, permission, or license specifically -+associated with any specific material or content. No license is granted -+to copy or "mirror" this website. Linking to this website is -+permitted.

    2. -+
    3. Except where otherwise more broadly permitted or licensed:

      -+
        -+
      1. you may not make copies of or modifications to Unicode Products -+for public distribution, or incorporate Unicode Products in whole or in -+part into any product or publication, or otherwise publicly distribute -+them, without the express written permission of Unicode, and

      2. -+
      3. you may not copy or extract fonts or font data from any Unicode -+Products, including but not limited to Unicode Code -+Charts.

      4. -+
    4. -+
    5. All Unicode Data Files and Unicode Software are subject to the -+terms and conditions of the free and open-source Unicode License v3, -+unless otherwise indicated by specific restriction, permission, or -+license identified at the point of release or in such software, data -+file, or other documentation.

    6. -+
    7. You may freely download and make copies of the Unicode® -+Standard Core Specification, Unicode Technical Reports, -+Unicode Technical Notes, Unicode Code Charts, -+and other portions of this website and may annotate and translate such -+permitted downloads and copies, provided that such downloads, copies, -+annotations, and translations are solely for personal or internal -+business purposes and not for public distribution, and further provided -+that any permitted copies and modifications fully reproduce all -+copyright and other legal notices contained in the original. -+Notwithstanding the foregoing, specific versions of the Unicode® -+Standard Core Specification, Unicode Technical Reports, -+Unicode Technical Notes, -+and Unicode Code -+Charts, as well as other Unicode publications, materials, and -+portions of this website may be subject to broader permissions and/or -+further reservations of rights and restrictions on use found in the -+title pages, cover sheets, front matter, and/or footnotes for each such -+version, report, chart, or other publication or material. Consult each -+version, report, chart, or other publication or material for any such -+permissions and further reservations of rights and restrictions on -+use.

    8. -+
  6. -+
  7. Restricted Rights -+Legend. Any Unicode Data Files or Software that are licensed to -+the United States of America, its agencies and/or instrumentalities -+under these Terms of Use is commercial technical data or commercial -+computer software developed exclusively at private expense as defined in -+FAR 2.101, or DFARS 252.227-7014, as applicable. For Unicode Data Files, -+use, duplication, or disclosure by the Government is subject to -+restrictions as set forth in DFARS 202.227-7015 Technical Data, -+Commercial and Items and these Terms of Use. For Unicode Software, in -+accordance with FAR 12-212 or DFARS 227-7202, as applicable, use, -+duplication or disclosure by the Government is subject to the -+restrictions set forth in these Terms of Use.

  8. -+
  9. Disclaimer of Warranties -+& Limitation of Liability

    -+
      -+
    1. This website and the Unicode Products are provided “AS-IS” -+without charge as a convenience to visitors and users. While Unicode -+attempts to provide accurate, error-free, and timely information, there -+may be technical or factual inaccuracies and typographical or other -+errors in this website and in the Unicode Products. Unicode reserves the -+right to make corrections and changes to the website and the Unicode -+Products at any time without notice.

    2. -+
    3. YOU ASSUME ALL RESPONSIBILITY AND RISK WITH RESPECT TO YOUR USE -+OF THIS WEBSITE AND THE UNICODE PRODUCTS, WHICH ARE PROVIDED "AS IS" -+WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS, IMPLIED, OR STATUTORY, -+INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF ACCURACY, COMPLETENESS, -+TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR -+NON-INFRINGEMENT OF THIRD PARTY RIGHTS. UNICODE AND ITS LICENSORS AND -+CONTRIBUTORS ASSUME NO RESPONSIBILITY FOR ERRORS OR OMISSIONS IN THIS -+WEBSITE AND/OR THE UNICODE PRODUCTS. IF YOU ARE DISSATISFIED WITH THIS -+WEBSITE OR THE UNICODE PRODUCTS, YOUR SOLE REMEDY IS TO DISCONTINUE USE -+OF THE WEBSITE AND THE UNICODE PRODUCTS.

    4. -+
    5. IN NO EVENT SHALL UNICODE, ITS MEMBERS, OR ITS LICENSORS OR -+CONTRIBUTORS BE LIABLE FOR ANY CLAIM OR DAMAGES WHATSOEVER OF ANY KIND, -+WHETHER DIRECT, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, -+OR PUNITIVE DAMAGES, WHETHER OR NOT UNICODE WAS ADVISED OF THE -+POSSIBILITY OF SUCH DAMAGE, INCLUDING BUT NOT LIMITED TO DAMAGE -+RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER IN AN ACTION OF -+CONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -+CONNECTION WITH THE USE, INABILITY TO USE, PERFORMANCE, FUNCTIONALITY, -+MODIFICATION, OR DISTRIBUTION OF THIS WEBSITE, THE UNICODE PRODUCTS, OR -+ANY DERIVATIVES THEREOF.

    6. -+
    7. Unicode makes no warranties or representations of any kind -+regarding any non-Unicode sites to which you may be directed or -+hyperlinked from this website. Hyperlinks are included solely for your -+convenience and Unicode makes no warranties or representations with -+regard to the accuracy, availability, suitability, or safety of -+information, products, or services provided on such non-Unicode -+sites.

    8. -+
  10. -+
  11. Intellectual Property -+Contributions to Unicode. All contributions or submissions to -+Unicode are governed by The -+Unicode Consortium Intellectual Property, Licensing & Technical -+Contribution Policies. If you wish to make any contribution or -+submission to Unicode, refer to the foregoing Policies for further -+information on how to do so. In the absence of a signed contributor -+license or other agreement with Unicode that expressly governs a -+particular contribution or submission, the act of making a contribution -+or submission of any kind to Unicode by any communication channel -+constitutes a binding legal agreement by the contributor or submitter -+that they:

    -+
      -+
    1. represent and agree that the contributed matter is not -+proprietary or confidential to the contributor or any third party, -+and

    2. -+
    3. grant to Unicode and to recipients of products distributed by -+Unicode a perpetual, irrevocable, unrestricted, worldwide, nonexclusive, -+no-charge, royalty-free license, without obligation for accounting, to -+reproduce, prepare derivative works of, publicly display, publicly -+perform, distribute, make, use, sell, offer to sell, or import that -+matter for any purpose, with the unrestricted right to sublicense those -+rights.

    4. -+
  12. -+
  13. Compliance with Unicode -+Policies. These Terms of Use hereby incorporate by reference the -+following Unicode Policies. Your use of this website and/or Unicode -+Products and/or your participation in Unicode activities constitutes -+your agreement to these Policies which may be modified at any time in -+Unicode’s sole discretion:

    -+
      -+
    1. The -+Unicode Consortium Code of Conduct
    2. -+
    3. The -+Unicode Consortium Antitrust Policy & Guidelines
    4. -+
    5. The -+Unicode Consortium Intellectual Property, Licensing & Technical -+Contribution Policies
    6. -+
    7. The -+Unicode Consortium Name and Trademark Usage Policy
    8. -+
    9. The -+Unicode Consortium Policy on Handling of Confidential Business -+Data
    10. -+
    11. The -+Unicode Consortium General Privacy Policy
    12. -+
    13. The -+Unicode Technical Group Procedures
    14. -+
  14. -+
  15. Trademarks & -+Logos. The Unicode Word Mark and the Unicode Logo are trademarks -+of Unicode, Inc. “The Unicode Consortium'' and “Unicode, Inc.” are trade -+names of Unicode, Inc. You hereby acknowledge and agree to respect -+Unicode’s exclusive worldwide rights in the Unicode Word Mark, the -+Unicode Logo, and the Unicode trade names. The Unicode -+Consortium Name and Trademark Usage Policy is incorporated herein by -+reference and you agree to abide by its provisions, which may be changed -+from time to time in Unicode’s sole discretion.

  16. -+
  17. Jurisdiction and -+Venue. This website is operated from, and the Unicode Products -+are made available from, locations in the United States of America. -+Unicode makes no representation that this website or Unicode Products -+are appropriate for use in other locations. If you access this website -+or the Unicode Products from other locations, you are responsible for -+compliance with local laws. These Terms of Use, all use of this website -+and Unicode Products, and any claims and damages resulting from use of -+this website or Unicode Products, are governed by the applicable laws of -+the United States of America and the State of California without regard -+to any principles which would apply the laws of different jurisdictions. -+You agree that any disputes regarding this website and the Unicode -+Products shall be resolved solely in the appropriate state and federal -+courts located in the counties of San Francisco, San Mateo, or Santa -+Clara, California. You agree that these courts have personal -+jurisdiction over you and agree to waive any right to transfer the -+dispute to any other forum.

  18. -+
  19. Severability. -+If any provision of these Terms of Use is declared invalid or -+unenforceable, the remaining provisions of these Terms of Use shall -+remain in effect.

  20. -+
-+
-+
-+
-+ -+ -+ -+ -+ -+ -+
-+
-diff --git a/LICENSES/GPL-2.0-only.txt b/LICENSES/GPL-2.0-only.txt -new file mode 100644 -index 0000000..9efa6fb ---- /dev/null -+++ b/LICENSES/GPL-2.0-only.txt -@@ -0,0 +1,338 @@ -+ GNU GENERAL PUBLIC LICENSE -+ Version 2, June 1991 -+ -+ Copyright (C) 1989, 1991 Free Software Foundation, Inc., -+ -+ Everyone is permitted to copy and distribute verbatim copies -+ of this license document, but changing it is not allowed. -+ -+ Preamble -+ -+ The licenses for most software are designed to take away your -+freedom to share and change it. By contrast, the GNU General Public -+License is intended to guarantee your freedom to share and change free -+software--to make sure the software is free for all its users. This -+General Public License applies to most of the Free Software -+Foundation's software and to any other program whose authors commit to -+using it. (Some other Free Software Foundation software is covered by -+the GNU Lesser General Public License instead.) You can apply it to -+your programs, too. -+ -+ When we speak of free software, we are referring to freedom, not -+price. Our General Public Licenses are designed to make sure that you -+have the freedom to distribute copies of free software (and charge for -+this service if you wish), that you receive source code or can get it -+if you want it, that you can change the software or use pieces of it -+in new free programs; and that you know you can do these things. -+ -+ To protect your rights, we need to make restrictions that forbid -+anyone to deny you these rights or to ask you to surrender the rights. -+These restrictions translate to certain responsibilities for you if you -+distribute copies of the software, or if you modify it. -+ -+ For example, if you distribute copies of such a program, whether -+gratis or for a fee, you must give the recipients all the rights that -+you have. You must make sure that they, too, receive or can get the -+source code. And you must show them these terms so they know their -+rights. -+ -+ We protect your rights with two steps: (1) copyright the software, and -+(2) offer you this license which gives you legal permission to copy, -+distribute and/or modify the software. -+ -+ Also, for each author's protection and ours, we want to make certain -+that everyone understands that there is no warranty for this free -+software. If the software is modified by someone else and passed on, we -+want its recipients to know that what they have is not the original, so -+that any problems introduced by others will not reflect on the original -+authors' reputations. -+ -+ Finally, any free program is threatened constantly by software -+patents. We wish to avoid the danger that redistributors of a free -+program will individually obtain patent licenses, in effect making the -+program proprietary. To prevent this, we have made it clear that any -+patent must be licensed for everyone's free use or not licensed at all. -+ -+ The precise terms and conditions for copying, distribution and -+modification follow. -+ -+ GNU GENERAL PUBLIC LICENSE -+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION -+ -+ 0. This License applies to any program or other work which contains -+a notice placed by the copyright holder saying it may be distributed -+under the terms of this General Public License. The "Program", below, -+refers to any such program or work, and a "work based on the Program" -+means either the Program or any derivative work under copyright law: -+that is to say, a work containing the Program or a portion of it, -+either verbatim or with modifications and/or translated into another -+language. (Hereinafter, translation is included without limitation in -+the term "modification".) Each licensee is addressed as "you". -+ -+Activities other than copying, distribution and modification are not -+covered by this License; they are outside its scope. The act of -+running the Program is not restricted, and the output from the Program -+is covered only if its contents constitute a work based on the -+Program (independent of having been made by running the Program). -+Whether that is true depends on what the Program does. -+ -+ 1. You may copy and distribute verbatim copies of the Program's -+source code as you receive it, in any medium, provided that you -+conspicuously and appropriately publish on each copy an appropriate -+copyright notice and disclaimer of warranty; keep intact all the -+notices that refer to this License and to the absence of any warranty; -+and give any other recipients of the Program a copy of this License -+along with the Program. -+ -+You may charge a fee for the physical act of transferring a copy, and -+you may at your option offer warranty protection in exchange for a fee. -+ -+ 2. You may modify your copy or copies of the Program or any portion -+of it, thus forming a work based on the Program, and copy and -+distribute such modifications or work under the terms of Section 1 -+above, provided that you also meet all of these conditions: -+ -+ a) You must cause the modified files to carry prominent notices -+ stating that you changed the files and the date of any change. -+ -+ b) You must cause any work that you distribute or publish, that in -+ whole or in part contains or is derived from the Program or any -+ part thereof, to be licensed as a whole at no charge to all third -+ parties under the terms of this License. -+ -+ c) If the modified program normally reads commands interactively -+ when run, you must cause it, when started running for such -+ interactive use in the most ordinary way, to print or display an -+ announcement including an appropriate copyright notice and a -+ notice that there is no warranty (or else, saying that you provide -+ a warranty) and that users may redistribute the program under -+ these conditions, and telling the user how to view a copy of this -+ License. (Exception: if the Program itself is interactive but -+ does not normally print such an announcement, your work based on -+ the Program is not required to print an announcement.) -+ -+These requirements apply to the modified work as a whole. If -+identifiable sections of that work are not derived from the Program, -+and can be reasonably considered independent and separate works in -+themselves, then this License, and its terms, do not apply to those -+sections when you distribute them as separate works. But when you -+distribute the same sections as part of a whole which is a work based -+on the Program, the distribution of the whole must be on the terms of -+this License, whose permissions for other licensees extend to the -+entire whole, and thus to each and every part regardless of who wrote it. -+ -+Thus, it is not the intent of this section to claim rights or contest -+your rights to work written entirely by you; rather, the intent is to -+exercise the right to control the distribution of derivative or -+collective works based on the Program. -+ -+In addition, mere aggregation of another work not based on the Program -+with the Program (or with a work based on the Program) on a volume of -+a storage or distribution medium does not bring the other work under -+the scope of this License. -+ -+ 3. You may copy and distribute the Program (or a work based on it, -+under Section 2) in object code or executable form under the terms of -+Sections 1 and 2 above provided that you also do one of the following: -+ -+ a) Accompany it with the complete corresponding machine-readable -+ source code, which must be distributed under the terms of Sections -+ 1 and 2 above on a medium customarily used for software interchange; or, -+ -+ b) Accompany it with a written offer, valid for at least three -+ years, to give any third party, for a charge no more than your -+ cost of physically performing source distribution, a complete -+ machine-readable copy of the corresponding source code, to be -+ distributed under the terms of Sections 1 and 2 above on a medium -+ customarily used for software interchange; or, -+ -+ c) Accompany it with the information you received as to the offer -+ to distribute corresponding source code. (This alternative is -+ allowed only for noncommercial distribution and only if you -+ received the program in object code or executable form with such -+ an offer, in accord with Subsection b above.) -+ -+The source code for a work means the preferred form of the work for -+making modifications to it. For an executable work, complete source -+code means all the source code for all modules it contains, plus any -+associated interface definition files, plus the scripts used to -+control compilation and installation of the executable. However, as a -+special exception, the source code distributed need not include -+anything that is normally distributed (in either source or binary -+form) with the major components (compiler, kernel, and so on) of the -+operating system on which the executable runs, unless that component -+itself accompanies the executable. -+ -+If distribution of executable or object code is made by offering -+access to copy from a designated place, then offering equivalent -+access to copy the source code from the same place counts as -+distribution of the source code, even though third parties are not -+compelled to copy the source along with the object code. -+ -+ 4. You may not copy, modify, sublicense, or distribute the Program -+except as expressly provided under this License. Any attempt -+otherwise to copy, modify, sublicense or distribute the Program is -+void, and will automatically terminate your rights under this License. -+However, parties who have received copies, or rights, from you under -+this License will not have their licenses terminated so long as such -+parties remain in full compliance. -+ -+ 5. You are not required to accept this License, since you have not -+signed it. However, nothing else grants you permission to modify or -+distribute the Program or its derivative works. These actions are -+prohibited by law if you do not accept this License. Therefore, by -+modifying or distributing the Program (or any work based on the -+Program), you indicate your acceptance of this License to do so, and -+all its terms and conditions for copying, distributing or modifying -+the Program or works based on it. -+ -+ 6. Each time you redistribute the Program (or any work based on the -+Program), the recipient automatically receives a license from the -+original licensor to copy, distribute or modify the Program subject to -+these terms and conditions. You may not impose any further -+restrictions on the recipients' exercise of the rights granted herein. -+You are not responsible for enforcing compliance by third parties to -+this License. -+ -+ 7. If, as a consequence of a court judgment or allegation of patent -+infringement or for any other reason (not limited to patent issues), -+conditions are imposed on you (whether by court order, agreement or -+otherwise) that contradict the conditions of this License, they do not -+excuse you from the conditions of this License. If you cannot -+distribute so as to satisfy simultaneously your obligations under this -+License and any other pertinent obligations, then as a consequence you -+may not distribute the Program at all. For example, if a patent -+license would not permit royalty-free redistribution of the Program by -+all those who receive copies directly or indirectly through you, then -+the only way you could satisfy both it and this License would be to -+refrain entirely from distribution of the Program. -+ -+If any portion of this section is held invalid or unenforceable under -+any particular circumstance, the balance of the section is intended to -+apply and the section as a whole is intended to apply in other -+circumstances. -+ -+It is not the purpose of this section to induce you to infringe any -+patents or other property right claims or to contest validity of any -+such claims; this section has the sole purpose of protecting the -+integrity of the free software distribution system, which is -+implemented by public license practices. Many people have made -+generous contributions to the wide range of software distributed -+through that system in reliance on consistent application of that -+system; it is up to the author/donor to decide if he or she is willing -+to distribute software through any other system and a licensee cannot -+impose that choice. -+ -+This section is intended to make thoroughly clear what is believed to -+be a consequence of the rest of this License. -+ -+ 8. If the distribution and/or use of the Program is restricted in -+certain countries either by patents or by copyrighted interfaces, the -+original copyright holder who places the Program under this License -+may add an explicit geographical distribution limitation excluding -+those countries, so that distribution is permitted only in or among -+countries not thus excluded. In such case, this License incorporates -+the limitation as if written in the body of this License. -+ -+ 9. The Free Software Foundation may publish revised and/or new versions -+of the General Public License from time to time. Such new versions will -+be similar in spirit to the present version, but may differ in detail to -+address new problems or concerns. -+ -+Each version is given a distinguishing version number. If the Program -+specifies a version number of this License which applies to it and "any -+later version", you have the option of following the terms and conditions -+either of that version or of any later version published by the Free -+Software Foundation. If the Program does not specify a version number of -+this License, you may choose any version ever published by the Free Software -+Foundation. -+ -+ 10. If you wish to incorporate parts of the Program into other free -+programs whose distribution conditions are different, write to the author -+to ask for permission. For software which is copyrighted by the Free -+Software Foundation, write to the Free Software Foundation; we sometimes -+make exceptions for this. Our decision will be guided by the two goals -+of preserving the free status of all derivatives of our free software and -+of promoting the sharing and reuse of software generally. -+ -+ NO WARRANTY -+ -+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -+REPAIR OR CORRECTION. -+ -+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -+POSSIBILITY OF SUCH DAMAGES. -+ -+ END OF TERMS AND CONDITIONS -+ -+ How to Apply These Terms to Your New Programs -+ -+ If you develop a new program, and you want it to be of the greatest -+possible use to the public, the best way to achieve this is to make it -+free software which everyone can redistribute and change under these terms. -+ -+ To do so, attach the following notices to the program. It is safest -+to attach them to the start of each source file to most effectively -+convey the exclusion of warranty; and each file should have at least -+the "copyright" line and a pointer to where the full notice is found. -+ -+ -+ Copyright (C) -+ -+ This program 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 2 of the License, or -+ (at your option) any later version. -+ -+ This program 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 this program; if not, see . -+ -+Also add information on how to contact you by electronic and paper mail. -+ -+If the program is interactive, make it output a short notice like this -+when it starts in an interactive mode: -+ -+ Gnomovision version 69, Copyright (C) year name of author -+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. -+ This is free software, and you are welcome to redistribute it -+ under certain conditions; type `show c' for details. -+ -+The hypothetical commands `show w' and `show c' should show the appropriate -+parts of the General Public License. Of course, the commands you use may -+be called something other than `show w' and `show c'; they could even be -+mouse-clicks or menu items--whatever suits your program. -+ -+You should also get your employer (if you work as a programmer) or your -+school, if any, to sign a "copyright disclaimer" for the program, if -+necessary. Here is a sample; alter the names: -+ -+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program -+ `Gnomovision' (which makes passes at compilers) written by James Hacker. -+ -+ , 1 April 1989 -+ Moe Ghoul, President of Vice -+ -+This 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. -diff --git a/LICENSES/README.md b/LICENSES/README.md -index 72bebbd..b728212 100644 ---- a/LICENSES/README.md -+++ b/LICENSES/README.md -@@ -1,8 +1,20 @@ - # Licenses - -+## Unicode data -+ - The `UCD/` directory contains Unicode Character Database 17.0.0 data files. --See `UCD/ReadMe.txt` and the Unicode terms of use referenced there. -+The `MAPPINGS/` directory contains Unicode `Public/MAPPINGS/` vendor mapping -+files. -+ -+See `COPYRIGHT.md`, `UCD/ReadMe.txt`, and the Unicode terms of use referenced -+there. Unicode data files are not Novell NSS `unitables/*.tab` files. -+ -+## MARS-NWE generator/source files -+ -+Files written for this repository, including scripts and generated table glue, -+are distributed under GPL-2.0-only unless a file says otherwise. The copied GPL -+text is in `LICENSES/GPL-2.0-only.txt`. - --Generated files under `TAB/` are derived from those UCD data files and keep the --same upstream data provenance. MARS-NWE consumes them as generated C data, not --as copied Novell NSS unitables. -+Generated files under `TAB/` are derived from Unicode data files and keep that -+upstream data provenance. MARS-NWE consumes them as generated C data, not as -+copied Novell NSS unitables. -diff --git a/VENDORS/APPLE/ARABIC.TXT b/MAPPINGS/VENDORS/APPLE/ARABIC.TXT -similarity index 100% -rename from VENDORS/APPLE/ARABIC.TXT -rename to MAPPINGS/VENDORS/APPLE/ARABIC.TXT -diff --git a/VENDORS/APPLE/CELTIC.TXT b/MAPPINGS/VENDORS/APPLE/CELTIC.TXT -similarity index 100% -rename from VENDORS/APPLE/CELTIC.TXT -rename to MAPPINGS/VENDORS/APPLE/CELTIC.TXT -diff --git a/VENDORS/APPLE/CENTEURO.TXT b/MAPPINGS/VENDORS/APPLE/CENTEURO.TXT -similarity index 100% -rename from VENDORS/APPLE/CENTEURO.TXT -rename to MAPPINGS/VENDORS/APPLE/CENTEURO.TXT -diff --git a/VENDORS/APPLE/CHINSIMP.TXT b/MAPPINGS/VENDORS/APPLE/CHINSIMP.TXT -similarity index 100% -rename from VENDORS/APPLE/CHINSIMP.TXT -rename to MAPPINGS/VENDORS/APPLE/CHINSIMP.TXT -diff --git a/VENDORS/APPLE/CHINTRAD.TXT b/MAPPINGS/VENDORS/APPLE/CHINTRAD.TXT -similarity index 100% -rename from VENDORS/APPLE/CHINTRAD.TXT -rename to MAPPINGS/VENDORS/APPLE/CHINTRAD.TXT -diff --git a/VENDORS/APPLE/CORPCHAR.TXT b/MAPPINGS/VENDORS/APPLE/CORPCHAR.TXT -similarity index 100% -rename from VENDORS/APPLE/CORPCHAR.TXT -rename to MAPPINGS/VENDORS/APPLE/CORPCHAR.TXT -diff --git a/VENDORS/APPLE/CROATIAN.TXT b/MAPPINGS/VENDORS/APPLE/CROATIAN.TXT -similarity index 100% -rename from VENDORS/APPLE/CROATIAN.TXT -rename to MAPPINGS/VENDORS/APPLE/CROATIAN.TXT -diff --git a/VENDORS/APPLE/CYRILLIC.TXT b/MAPPINGS/VENDORS/APPLE/CYRILLIC.TXT -similarity index 100% -rename from VENDORS/APPLE/CYRILLIC.TXT -rename to MAPPINGS/VENDORS/APPLE/CYRILLIC.TXT -diff --git a/VENDORS/APPLE/DEVANAGA.TXT b/MAPPINGS/VENDORS/APPLE/DEVANAGA.TXT -similarity index 100% -rename from VENDORS/APPLE/DEVANAGA.TXT -rename to MAPPINGS/VENDORS/APPLE/DEVANAGA.TXT -diff --git a/VENDORS/APPLE/DINGBATS.TXT b/MAPPINGS/VENDORS/APPLE/DINGBATS.TXT -similarity index 100% -rename from VENDORS/APPLE/DINGBATS.TXT -rename to MAPPINGS/VENDORS/APPLE/DINGBATS.TXT -diff --git a/VENDORS/APPLE/FARSI.TXT b/MAPPINGS/VENDORS/APPLE/FARSI.TXT -similarity index 100% -rename from VENDORS/APPLE/FARSI.TXT -rename to MAPPINGS/VENDORS/APPLE/FARSI.TXT -diff --git a/VENDORS/APPLE/GAELIC.TXT b/MAPPINGS/VENDORS/APPLE/GAELIC.TXT -similarity index 100% -rename from VENDORS/APPLE/GAELIC.TXT -rename to MAPPINGS/VENDORS/APPLE/GAELIC.TXT -diff --git a/VENDORS/APPLE/GREEK.TXT b/MAPPINGS/VENDORS/APPLE/GREEK.TXT -similarity index 100% -rename from VENDORS/APPLE/GREEK.TXT -rename to MAPPINGS/VENDORS/APPLE/GREEK.TXT -diff --git a/VENDORS/APPLE/GUJARATI.TXT b/MAPPINGS/VENDORS/APPLE/GUJARATI.TXT -similarity index 100% -rename from VENDORS/APPLE/GUJARATI.TXT -rename to MAPPINGS/VENDORS/APPLE/GUJARATI.TXT -diff --git a/VENDORS/APPLE/GURMUKHI.TXT b/MAPPINGS/VENDORS/APPLE/GURMUKHI.TXT -similarity index 100% -rename from VENDORS/APPLE/GURMUKHI.TXT -rename to MAPPINGS/VENDORS/APPLE/GURMUKHI.TXT -diff --git a/VENDORS/APPLE/HEBREW.TXT b/MAPPINGS/VENDORS/APPLE/HEBREW.TXT -similarity index 100% -rename from VENDORS/APPLE/HEBREW.TXT -rename to MAPPINGS/VENDORS/APPLE/HEBREW.TXT -diff --git a/VENDORS/APPLE/ICELAND.TXT b/MAPPINGS/VENDORS/APPLE/ICELAND.TXT -similarity index 100% -rename from VENDORS/APPLE/ICELAND.TXT -rename to MAPPINGS/VENDORS/APPLE/ICELAND.TXT -diff --git a/VENDORS/APPLE/INUIT.TXT b/MAPPINGS/VENDORS/APPLE/INUIT.TXT -similarity index 100% -rename from VENDORS/APPLE/INUIT.TXT -rename to MAPPINGS/VENDORS/APPLE/INUIT.TXT -diff --git a/VENDORS/APPLE/JAPANESE.TXT b/MAPPINGS/VENDORS/APPLE/JAPANESE.TXT -similarity index 100% -rename from VENDORS/APPLE/JAPANESE.TXT -rename to MAPPINGS/VENDORS/APPLE/JAPANESE.TXT -diff --git a/VENDORS/APPLE/KEYBOARD.TXT b/MAPPINGS/VENDORS/APPLE/KEYBOARD.TXT -similarity index 100% -rename from VENDORS/APPLE/KEYBOARD.TXT -rename to MAPPINGS/VENDORS/APPLE/KEYBOARD.TXT -diff --git a/VENDORS/APPLE/KOREAN.TXT b/MAPPINGS/VENDORS/APPLE/KOREAN.TXT -similarity index 100% -rename from VENDORS/APPLE/KOREAN.TXT -rename to MAPPINGS/VENDORS/APPLE/KOREAN.TXT -diff --git a/VENDORS/APPLE/ROMAN.TXT b/MAPPINGS/VENDORS/APPLE/ROMAN.TXT -similarity index 100% -rename from VENDORS/APPLE/ROMAN.TXT -rename to MAPPINGS/VENDORS/APPLE/ROMAN.TXT -diff --git a/VENDORS/APPLE/ROMANIAN.TXT b/MAPPINGS/VENDORS/APPLE/ROMANIAN.TXT -similarity index 100% -rename from VENDORS/APPLE/ROMANIAN.TXT -rename to MAPPINGS/VENDORS/APPLE/ROMANIAN.TXT -diff --git a/VENDORS/APPLE/ReadMe.txt b/MAPPINGS/VENDORS/APPLE/ReadMe.txt -similarity index 100% -rename from VENDORS/APPLE/ReadMe.txt -rename to MAPPINGS/VENDORS/APPLE/ReadMe.txt -diff --git a/VENDORS/APPLE/Readme.txt b/MAPPINGS/VENDORS/APPLE/Readme.txt -similarity index 100% -rename from VENDORS/APPLE/Readme.txt -rename to MAPPINGS/VENDORS/APPLE/Readme.txt -diff --git a/VENDORS/APPLE/SYMBOL.TXT b/MAPPINGS/VENDORS/APPLE/SYMBOL.TXT -similarity index 100% -rename from VENDORS/APPLE/SYMBOL.TXT -rename to MAPPINGS/VENDORS/APPLE/SYMBOL.TXT -diff --git a/VENDORS/APPLE/THAI.TXT b/MAPPINGS/VENDORS/APPLE/THAI.TXT -similarity index 100% -rename from VENDORS/APPLE/THAI.TXT -rename to MAPPINGS/VENDORS/APPLE/THAI.TXT -diff --git a/VENDORS/APPLE/TURKISH.TXT b/MAPPINGS/VENDORS/APPLE/TURKISH.TXT -similarity index 100% -rename from VENDORS/APPLE/TURKISH.TXT -rename to MAPPINGS/VENDORS/APPLE/TURKISH.TXT -diff --git a/VENDORS/APPLE/UKRAINE.TXT b/MAPPINGS/VENDORS/APPLE/UKRAINE.TXT -similarity index 100% -rename from VENDORS/APPLE/UKRAINE.TXT -rename to MAPPINGS/VENDORS/APPLE/UKRAINE.TXT -diff --git a/VENDORS/MICSFT/EBCDIC/CP037.TXT b/MAPPINGS/VENDORS/MICSFT/EBCDIC/CP037.TXT -similarity index 100% -rename from VENDORS/MICSFT/EBCDIC/CP037.TXT -rename to MAPPINGS/VENDORS/MICSFT/EBCDIC/CP037.TXT -diff --git a/VENDORS/MICSFT/EBCDIC/CP1026.TXT b/MAPPINGS/VENDORS/MICSFT/EBCDIC/CP1026.TXT -similarity index 100% -rename from VENDORS/MICSFT/EBCDIC/CP1026.TXT -rename to MAPPINGS/VENDORS/MICSFT/EBCDIC/CP1026.TXT -diff --git a/VENDORS/MICSFT/EBCDIC/CP500.TXT b/MAPPINGS/VENDORS/MICSFT/EBCDIC/CP500.TXT -similarity index 100% -rename from VENDORS/MICSFT/EBCDIC/CP500.TXT -rename to MAPPINGS/VENDORS/MICSFT/EBCDIC/CP500.TXT -diff --git a/VENDORS/MICSFT/EBCDIC/CP875.TXT b/MAPPINGS/VENDORS/MICSFT/EBCDIC/CP875.TXT -similarity index 100% -rename from VENDORS/MICSFT/EBCDIC/CP875.TXT -rename to MAPPINGS/VENDORS/MICSFT/EBCDIC/CP875.TXT -diff --git a/VENDORS/MICSFT/MAC/CYRILLIC.TXT b/MAPPINGS/VENDORS/MICSFT/MAC/CYRILLIC.TXT -similarity index 100% -rename from VENDORS/MICSFT/MAC/CYRILLIC.TXT -rename to MAPPINGS/VENDORS/MICSFT/MAC/CYRILLIC.TXT -diff --git a/VENDORS/MICSFT/MAC/GREEK.TXT b/MAPPINGS/VENDORS/MICSFT/MAC/GREEK.TXT -similarity index 100% -rename from VENDORS/MICSFT/MAC/GREEK.TXT -rename to MAPPINGS/VENDORS/MICSFT/MAC/GREEK.TXT -diff --git a/VENDORS/MICSFT/MAC/ICELAND.TXT b/MAPPINGS/VENDORS/MICSFT/MAC/ICELAND.TXT -similarity index 100% -rename from VENDORS/MICSFT/MAC/ICELAND.TXT -rename to MAPPINGS/VENDORS/MICSFT/MAC/ICELAND.TXT -diff --git a/VENDORS/MICSFT/MAC/LATIN2.TXT b/MAPPINGS/VENDORS/MICSFT/MAC/LATIN2.TXT -similarity index 100% -rename from VENDORS/MICSFT/MAC/LATIN2.TXT -rename to MAPPINGS/VENDORS/MICSFT/MAC/LATIN2.TXT -diff --git a/VENDORS/MICSFT/MAC/ROMAN.TXT b/MAPPINGS/VENDORS/MICSFT/MAC/ROMAN.TXT -similarity index 100% -rename from VENDORS/MICSFT/MAC/ROMAN.TXT -rename to MAPPINGS/VENDORS/MICSFT/MAC/ROMAN.TXT -diff --git a/VENDORS/MICSFT/MAC/TURKISH.TXT b/MAPPINGS/VENDORS/MICSFT/MAC/TURKISH.TXT -similarity index 100% -rename from VENDORS/MICSFT/MAC/TURKISH.TXT -rename to MAPPINGS/VENDORS/MICSFT/MAC/TURKISH.TXT -diff --git a/VENDORS/MICSFT/PC/CP437.TXT b/MAPPINGS/VENDORS/MICSFT/PC/CP437.TXT -similarity index 100% -rename from VENDORS/MICSFT/PC/CP437.TXT -rename to MAPPINGS/VENDORS/MICSFT/PC/CP437.TXT -diff --git a/VENDORS/MICSFT/PC/CP737.TXT b/MAPPINGS/VENDORS/MICSFT/PC/CP737.TXT -similarity index 100% -rename from VENDORS/MICSFT/PC/CP737.TXT -rename to MAPPINGS/VENDORS/MICSFT/PC/CP737.TXT -diff --git a/VENDORS/MICSFT/PC/CP775.TXT b/MAPPINGS/VENDORS/MICSFT/PC/CP775.TXT -similarity index 100% -rename from VENDORS/MICSFT/PC/CP775.TXT -rename to MAPPINGS/VENDORS/MICSFT/PC/CP775.TXT -diff --git a/VENDORS/MICSFT/PC/CP850.TXT b/MAPPINGS/VENDORS/MICSFT/PC/CP850.TXT -similarity index 100% -rename from VENDORS/MICSFT/PC/CP850.TXT -rename to MAPPINGS/VENDORS/MICSFT/PC/CP850.TXT -diff --git a/VENDORS/MICSFT/PC/CP852.TXT b/MAPPINGS/VENDORS/MICSFT/PC/CP852.TXT -similarity index 100% -rename from VENDORS/MICSFT/PC/CP852.TXT -rename to MAPPINGS/VENDORS/MICSFT/PC/CP852.TXT -diff --git a/VENDORS/MICSFT/PC/CP855.TXT b/MAPPINGS/VENDORS/MICSFT/PC/CP855.TXT -similarity index 100% -rename from VENDORS/MICSFT/PC/CP855.TXT -rename to MAPPINGS/VENDORS/MICSFT/PC/CP855.TXT -diff --git a/VENDORS/MICSFT/PC/CP857.TXT b/MAPPINGS/VENDORS/MICSFT/PC/CP857.TXT -similarity index 100% -rename from VENDORS/MICSFT/PC/CP857.TXT -rename to MAPPINGS/VENDORS/MICSFT/PC/CP857.TXT -diff --git a/VENDORS/MICSFT/PC/CP860.TXT b/MAPPINGS/VENDORS/MICSFT/PC/CP860.TXT -similarity index 100% -rename from VENDORS/MICSFT/PC/CP860.TXT -rename to MAPPINGS/VENDORS/MICSFT/PC/CP860.TXT -diff --git a/VENDORS/MICSFT/PC/CP861.TXT b/MAPPINGS/VENDORS/MICSFT/PC/CP861.TXT -similarity index 100% -rename from VENDORS/MICSFT/PC/CP861.TXT -rename to MAPPINGS/VENDORS/MICSFT/PC/CP861.TXT -diff --git a/VENDORS/MICSFT/PC/CP862.TXT b/MAPPINGS/VENDORS/MICSFT/PC/CP862.TXT -similarity index 100% -rename from VENDORS/MICSFT/PC/CP862.TXT -rename to MAPPINGS/VENDORS/MICSFT/PC/CP862.TXT -diff --git a/VENDORS/MICSFT/PC/CP863.TXT b/MAPPINGS/VENDORS/MICSFT/PC/CP863.TXT -similarity index 100% -rename from VENDORS/MICSFT/PC/CP863.TXT -rename to MAPPINGS/VENDORS/MICSFT/PC/CP863.TXT -diff --git a/VENDORS/MICSFT/PC/CP864.TXT b/MAPPINGS/VENDORS/MICSFT/PC/CP864.TXT -similarity index 100% -rename from VENDORS/MICSFT/PC/CP864.TXT -rename to MAPPINGS/VENDORS/MICSFT/PC/CP864.TXT -diff --git a/VENDORS/MICSFT/PC/CP865.TXT b/MAPPINGS/VENDORS/MICSFT/PC/CP865.TXT -similarity index 100% -rename from VENDORS/MICSFT/PC/CP865.TXT -rename to MAPPINGS/VENDORS/MICSFT/PC/CP865.TXT -diff --git a/VENDORS/MICSFT/PC/CP866.TXT b/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT -similarity index 100% -rename from VENDORS/MICSFT/PC/CP866.TXT -rename to MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT -diff --git a/VENDORS/MICSFT/PC/CP869.TXT b/MAPPINGS/VENDORS/MICSFT/PC/CP869.TXT -similarity index 100% -rename from VENDORS/MICSFT/PC/CP869.TXT -rename to MAPPINGS/VENDORS/MICSFT/PC/CP869.TXT -diff --git a/VENDORS/MICSFT/PC/CP874.TXT b/MAPPINGS/VENDORS/MICSFT/PC/CP874.TXT -similarity index 100% -rename from VENDORS/MICSFT/PC/CP874.TXT -rename to MAPPINGS/VENDORS/MICSFT/PC/CP874.TXT -diff --git a/VENDORS/MICSFT/WINDOWS/CP1250.TXT b/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1250.TXT -similarity index 100% -rename from VENDORS/MICSFT/WINDOWS/CP1250.TXT -rename to MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1250.TXT -diff --git a/VENDORS/MICSFT/WINDOWS/CP1251.TXT b/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1251.TXT -similarity index 100% -rename from VENDORS/MICSFT/WINDOWS/CP1251.TXT -rename to MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1251.TXT -diff --git a/VENDORS/MICSFT/WINDOWS/CP1252.TXT b/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1252.TXT -similarity index 100% -rename from VENDORS/MICSFT/WINDOWS/CP1252.TXT -rename to MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1252.TXT -diff --git a/VENDORS/MICSFT/WINDOWS/CP1253.TXT b/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1253.TXT -similarity index 100% -rename from VENDORS/MICSFT/WINDOWS/CP1253.TXT -rename to MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1253.TXT -diff --git a/VENDORS/MICSFT/WINDOWS/CP1254.TXT b/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1254.TXT -similarity index 100% -rename from VENDORS/MICSFT/WINDOWS/CP1254.TXT -rename to MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1254.TXT -diff --git a/VENDORS/MICSFT/WINDOWS/CP1255.TXT b/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1255.TXT -similarity index 100% -rename from VENDORS/MICSFT/WINDOWS/CP1255.TXT -rename to MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1255.TXT -diff --git a/VENDORS/MICSFT/WINDOWS/CP1256.TXT b/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1256.TXT -similarity index 100% -rename from VENDORS/MICSFT/WINDOWS/CP1256.TXT -rename to MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1256.TXT -diff --git a/VENDORS/MICSFT/WINDOWS/CP1257.TXT b/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1257.TXT -similarity index 100% -rename from VENDORS/MICSFT/WINDOWS/CP1257.TXT -rename to MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1257.TXT -diff --git a/VENDORS/MICSFT/WINDOWS/CP1258.TXT b/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1258.TXT -similarity index 100% -rename from VENDORS/MICSFT/WINDOWS/CP1258.TXT -rename to MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1258.TXT -diff --git a/VENDORS/MICSFT/WINDOWS/CP874.TXT b/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP874.TXT -similarity index 100% -rename from VENDORS/MICSFT/WINDOWS/CP874.TXT -rename to MAPPINGS/VENDORS/MICSFT/WINDOWS/CP874.TXT -diff --git a/VENDORS/MICSFT/WINDOWS/CP932.TXT b/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP932.TXT -similarity index 100% -rename from VENDORS/MICSFT/WINDOWS/CP932.TXT -rename to MAPPINGS/VENDORS/MICSFT/WINDOWS/CP932.TXT -diff --git a/VENDORS/MICSFT/WINDOWS/CP936.TXT b/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP936.TXT -similarity index 100% -rename from VENDORS/MICSFT/WINDOWS/CP936.TXT -rename to MAPPINGS/VENDORS/MICSFT/WINDOWS/CP936.TXT -diff --git a/VENDORS/MICSFT/WINDOWS/CP949.TXT b/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP949.TXT -similarity index 100% -rename from VENDORS/MICSFT/WINDOWS/CP949.TXT -rename to MAPPINGS/VENDORS/MICSFT/WINDOWS/CP949.TXT -diff --git a/VENDORS/MICSFT/WINDOWS/CP950.TXT b/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP950.TXT -similarity index 100% -rename from VENDORS/MICSFT/WINDOWS/CP950.TXT -rename to MAPPINGS/VENDORS/MICSFT/WINDOWS/CP950.TXT -diff --git a/VENDORS/MICSFT/WindowsBestFit/bestfit1250.txt b/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1250.txt -similarity index 100% -rename from VENDORS/MICSFT/WindowsBestFit/bestfit1250.txt -rename to MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1250.txt -diff --git a/VENDORS/MICSFT/WindowsBestFit/bestfit1251.txt b/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1251.txt -similarity index 100% -rename from VENDORS/MICSFT/WindowsBestFit/bestfit1251.txt -rename to MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1251.txt -diff --git a/VENDORS/MICSFT/WindowsBestFit/bestfit1252.txt b/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1252.txt -similarity index 100% -rename from VENDORS/MICSFT/WindowsBestFit/bestfit1252.txt -rename to MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1252.txt -diff --git a/VENDORS/MICSFT/WindowsBestFit/bestfit1253.txt b/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1253.txt -similarity index 100% -rename from VENDORS/MICSFT/WindowsBestFit/bestfit1253.txt -rename to MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1253.txt -diff --git a/VENDORS/MICSFT/WindowsBestFit/bestfit1254.txt b/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1254.txt -similarity index 100% -rename from VENDORS/MICSFT/WindowsBestFit/bestfit1254.txt -rename to MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1254.txt -diff --git a/VENDORS/MICSFT/WindowsBestFit/bestfit1255.txt b/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1255.txt -similarity index 100% -rename from VENDORS/MICSFT/WindowsBestFit/bestfit1255.txt -rename to MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1255.txt -diff --git a/VENDORS/MICSFT/WindowsBestFit/bestfit1256.txt b/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1256.txt -similarity index 100% -rename from VENDORS/MICSFT/WindowsBestFit/bestfit1256.txt -rename to MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1256.txt -diff --git a/VENDORS/MICSFT/WindowsBestFit/bestfit1257.txt b/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1257.txt -similarity index 100% -rename from VENDORS/MICSFT/WindowsBestFit/bestfit1257.txt -rename to MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1257.txt -diff --git a/VENDORS/MICSFT/WindowsBestFit/bestfit1258.txt b/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1258.txt -similarity index 100% -rename from VENDORS/MICSFT/WindowsBestFit/bestfit1258.txt -rename to MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1258.txt -diff --git a/VENDORS/MICSFT/WindowsBestFit/bestfit1361.txt b/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1361.txt -similarity index 100% -rename from VENDORS/MICSFT/WindowsBestFit/bestfit1361.txt -rename to MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1361.txt -diff --git a/VENDORS/MICSFT/WindowsBestFit/bestfit874.txt b/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit874.txt -similarity index 100% -rename from VENDORS/MICSFT/WindowsBestFit/bestfit874.txt -rename to MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit874.txt -diff --git a/VENDORS/MICSFT/WindowsBestFit/bestfit932.txt b/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit932.txt -similarity index 100% -rename from VENDORS/MICSFT/WindowsBestFit/bestfit932.txt -rename to MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit932.txt -diff --git a/VENDORS/MICSFT/WindowsBestFit/bestfit936.txt b/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit936.txt -similarity index 100% -rename from VENDORS/MICSFT/WindowsBestFit/bestfit936.txt -rename to MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit936.txt -diff --git a/VENDORS/MICSFT/WindowsBestFit/bestfit949.txt b/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit949.txt -similarity index 100% -rename from VENDORS/MICSFT/WindowsBestFit/bestfit949.txt -rename to MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit949.txt -diff --git a/VENDORS/MICSFT/WindowsBestFit/bestfit950.txt b/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit950.txt -similarity index 100% -rename from VENDORS/MICSFT/WindowsBestFit/bestfit950.txt -rename to MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit950.txt -diff --git a/VENDORS/MICSFT/WindowsBestFit/readme.txt b/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/readme.txt -similarity index 100% -rename from VENDORS/MICSFT/WindowsBestFit/readme.txt -rename to MAPPINGS/VENDORS/MICSFT/WindowsBestFit/readme.txt -diff --git a/VENDORS/MISC/APL-ISO-IR-68.TXT b/MAPPINGS/VENDORS/MISC/APL-ISO-IR-68.TXT -similarity index 100% -rename from VENDORS/MISC/APL-ISO-IR-68.TXT -rename to MAPPINGS/VENDORS/MISC/APL-ISO-IR-68.TXT -diff --git a/VENDORS/MISC/ATARIST.TXT b/MAPPINGS/VENDORS/MISC/ATARIST.TXT -similarity index 100% -rename from VENDORS/MISC/ATARIST.TXT -rename to MAPPINGS/VENDORS/MISC/ATARIST.TXT -diff --git a/VENDORS/MISC/CP1006.TXT b/MAPPINGS/VENDORS/MISC/CP1006.TXT -similarity index 100% -rename from VENDORS/MISC/CP1006.TXT -rename to MAPPINGS/VENDORS/MISC/CP1006.TXT -diff --git a/VENDORS/MISC/CP424.TXT b/MAPPINGS/VENDORS/MISC/CP424.TXT -similarity index 100% -rename from VENDORS/MISC/CP424.TXT -rename to MAPPINGS/VENDORS/MISC/CP424.TXT -diff --git a/VENDORS/MISC/CP856.TXT b/MAPPINGS/VENDORS/MISC/CP856.TXT -similarity index 100% -rename from VENDORS/MISC/CP856.TXT -rename to MAPPINGS/VENDORS/MISC/CP856.TXT -diff --git a/VENDORS/MISC/DatedVersions/APL-ISO-IR-68-2004.TXT b/MAPPINGS/VENDORS/MISC/DatedVersions/APL-ISO-IR-68-2004.TXT -similarity index 100% -rename from VENDORS/MISC/DatedVersions/APL-ISO-IR-68-2004.TXT -rename to MAPPINGS/VENDORS/MISC/DatedVersions/APL-ISO-IR-68-2004.TXT -diff --git a/VENDORS/MISC/IBMGRAPH.TXT b/MAPPINGS/VENDORS/MISC/IBMGRAPH.TXT -similarity index 100% -rename from VENDORS/MISC/IBMGRAPH.TXT -rename to MAPPINGS/VENDORS/MISC/IBMGRAPH.TXT -diff --git a/VENDORS/MISC/KOI8-R.TXT b/MAPPINGS/VENDORS/MISC/KOI8-R.TXT -similarity index 100% -rename from VENDORS/MISC/KOI8-R.TXT -rename to MAPPINGS/VENDORS/MISC/KOI8-R.TXT -diff --git a/VENDORS/MISC/KOI8-U.TXT b/MAPPINGS/VENDORS/MISC/KOI8-U.TXT -similarity index 100% -rename from VENDORS/MISC/KOI8-U.TXT -rename to MAPPINGS/VENDORS/MISC/KOI8-U.TXT -diff --git a/VENDORS/MISC/KPS9566.TXT b/MAPPINGS/VENDORS/MISC/KPS9566.TXT -similarity index 100% -rename from VENDORS/MISC/KPS9566.TXT -rename to MAPPINGS/VENDORS/MISC/KPS9566.TXT -diff --git a/VENDORS/MISC/KZ1048.TXT b/MAPPINGS/VENDORS/MISC/KZ1048.TXT -similarity index 100% -rename from VENDORS/MISC/KZ1048.TXT -rename to MAPPINGS/VENDORS/MISC/KZ1048.TXT -diff --git a/VENDORS/MISC/SGML.TXT b/MAPPINGS/VENDORS/MISC/SGML.TXT -similarity index 100% -rename from VENDORS/MISC/SGML.TXT -rename to MAPPINGS/VENDORS/MISC/SGML.TXT -diff --git a/VENDORS/MISC/US-ASCII-QUOTES.TXT b/MAPPINGS/VENDORS/MISC/US-ASCII-QUOTES.TXT -similarity index 100% -rename from VENDORS/MISC/US-ASCII-QUOTES.TXT -rename to MAPPINGS/VENDORS/MISC/US-ASCII-QUOTES.TXT -diff --git a/README.md b/README.md -index a965f6d..36c01cf 100644 ---- a/README.md -+++ b/README.md -@@ -3,7 +3,8 @@ - Unicode Character Database input and generated C tables for MARS-NWE. - - This repository vendors the complete Unicode Character Database 17.0.0 under --`UCD/` and generates NSS-compatible BMP case mapping tables under `TAB/`. -+`UCD/`, selected Unicode `Public/MAPPINGS/` vendor mapping files under -+`MAPPINGS/`, and generates NSS-compatible BMP case mapping tables under `TAB/`. - The generated symbols are intended for MARS-NWE `libnwcore`: - - - `NSSUniToLower[65536]` -@@ -13,6 +14,21 @@ The generated tables are based on Unicode UCD data, not on Novell NSS - `shared/sdk/unitables/*.tab` files. The Novell files may be used only as shape - or compatibility references in the MARS-NWE work tree. - -+## Layout -+ -+```text -+UCD/ Unicode Character Database 17.0.0 -+MAPPINGS/VENDORS/ Unicode Public/MAPPINGS vendor mapping files -+scripts/ GPL-2.0-only MARS-NWE generators -+TAB/ generated C tables consumed by MARS-NWE -+LICENSES/ copied license texts -+COPYRIGHT.md repository copyright/license notes -+``` -+ -+The `MAPPINGS/` tree intentionally mirrors the Unicode upstream path below -+`Public/MAPPINGS/`. Novell NSS `shared/sdk/unitables/*.tab` files are not copied -+into this repository. -+ - ## Regeneration - - ```sh -diff --git a/copyright.html b/copyright.html -deleted file mode 100644 -index 3b77ed1..0000000 ---- a/copyright.html -+++ /dev/null -@@ -1,205 +0,0 @@ -- -- -- -- -- -- -- -- -- --Unicode Terms of Use -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- -- -- -- -- -- --
[Unicode]  Terms of UseTech Site -- | Site Map | -- Search
--
 
-- --
-- --

Unicode® Consortium Copyright, Terms of Use, and Licenses

-- --

Welcome to the website of Unicode, Inc. (dba The Unicode Consortium) (“Unicode”). Except as otherwise noted herein, these terms and conditions (“Terms of Use”) govern your use of the Unicode website and Unicode Products. Your use of this website and/or Unicode Products constitutes your agreement to follow and be bound by these Terms of Use. Unicode provides you with access to and use of this website and Unicode Products subject to your compliance with these Terms of Use. If you do not agree to these Terms of Use, you should not access or use this website or Unicode Products. Unicode reserves the right to make changes to the website, to Unicode Products, and to these Terms of Use at any time in its sole discretion.

--
    --
  1. --

    Unicode Copyright: Copyright © 1991-Present Unicode, Inc.

    --
  2. --
  3. --Definitions --
      --
    1. --

      “Unicode Products” includes the Unicode website and its content, Data Files, Software, the Unicode Standard, all other Unicode standards, specifications, technical reports, technical notes, annexes, code charts, data files, software, publications, webinars, videos, course materials, online and in-person events, and all other Unicode products and services made available via this website or any other channel of distribution, including but not limited to Github, Maven, YouTube, and other third-party sites where Unicode maintains and provides products, materials, and services.

      --
    2. --
    3. --

      “Unicode Data Files” or "Data Files" include all computer data files under the following directories:

      --
        --
      1. https://www.unicode.org/Public/ --
      2. --
      3. -- https://www.unicode.org/reports/ --
      4. --
      5. -- https://www.unicode.org/ivd/data/ --
      6. --
      7. -- https://github.com/unicode-org/ --
      8. --
      --

      but exclude any materials present in the above directories that are not computer data files, such as PDF code charts and Technical Reports.

      --
    4. --
    5. --

      “Unicode Software” or "Software" includes any source code or compiled code in any Unicode Product including but not limited to the code included in the following directories:

      --
        --
      1. -- https://www.unicode.org/Public/PROGRAMS/ --
      2. --
      3. -- https://www.unicode.org/Public/cldr/ --
      4. --
      5. -- https://github.com/unicode-org/
      6. --
      --
    6. --
    --
  4. --
  5. --

    Permissions, Licenses, and Restrictions on Use

    --
      --
    1. You are authorized to freely access and use this website and its content and all Unicode Products subject to these Terms of Use and subject to any restriction, permission, or license specifically associated with any specific material or content. No license is granted to copy or "mirror" this website. Linking to this website is permitted.

      --
    2. --
    3. Except where otherwise more broadly permitted or licensed:

      --
        --
      1. you may not make copies of or modifications to Unicode Products for public distribution, or incorporate Unicode Products in whole or in part into any product or publication, or otherwise publicly distribute them, without the express written permission of Unicode, and

        --
      2. --
      3. you may not copy or extract fonts or font data from any Unicode Products, including but not limited to -- Unicode Code Charts.

      4. --
      --
    4. --
    5. All Unicode Data Files and Unicode Software are subject to the terms and conditions of the free and open-source -- Unicode License v3, unless otherwise indicated by specific restriction, permission, or license identified at the point of release or in such software, data file, or other documentation.

      --
    6. --
    7. You may freely download and make copies of the -- Unicode® Standard Core Specification, -- Unicode Technical Reports, -- Unicode Technical Notes, -- Unicode Code Charts, and other portions of this website and may annotate and translate such permitted downloads and copies, provided that such downloads, copies, annotations, and translations are solely for personal or internal business purposes and not for public distribution, and further provided that any permitted copies and modifications fully reproduce all copyright and other legal notices contained in the original. Notwithstanding the foregoing, specific versions of the -- Unicode® Standard Core Specification, -- Unicode Technical Reports, -- Unicode Technical Notes, and -- Unicode Code Charts, as well as other Unicode publications, materials, and portions of this website may be subject to broader permissions and/or further reservations of rights and restrictions on use found in the title pages, cover sheets, front matter, and/or footnotes for each such version, report, chart, or other publication or material. Consult each version, report, chart, or other publication or material for any such permissions and further reservations of rights and restrictions on use.

      --
    8. --
    --
  6. --
  7. Restricted Rights Legend. Any Unicode Data Files or Software that are licensed to the United States of America, its agencies and/or instrumentalities under these Terms of Use is commercial technical data or commercial computer software developed exclusively at private expense as defined in FAR 2.101, or DFARS 252.227-7014, as applicable. For Unicode Data Files, use, duplication, or disclosure by the Government is subject to restrictions as set forth in DFARS 202.227-7015 Technical Data, Commercial and Items and these Terms of Use. For Unicode Software, in accordance with FAR 12-212 or DFARS 227-7202, as applicable, use, duplication or disclosure by the Government is subject to the restrictions set forth in these Terms of Use.

    --
  8. --
  9. Disclaimer of Warranties & Limitation of Liability

    --
      --
    1. This website and the Unicode Products are provided “AS-IS” without charge as a convenience to visitors and users. While Unicode attempts to provide accurate, error-free, and timely information, there may be technical or factual inaccuracies and typographical or other errors in this website and in the Unicode Products. Unicode reserves the right to make corrections and changes to the website and the Unicode Products at any time without notice.

      --
    2. --
    3. YOU ASSUME ALL RESPONSIBILITY AND RISK WITH RESPECT TO YOUR USE OF THIS WEBSITE AND THE UNICODE PRODUCTS, WHICH ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF ACCURACY, COMPLETENESS, TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT OF THIRD PARTY RIGHTS. UNICODE AND ITS LICENSORS AND CONTRIBUTORS ASSUME NO RESPONSIBILITY FOR ERRORS OR OMISSIONS IN THIS WEBSITE AND/OR THE UNICODE PRODUCTS. IF YOU ARE DISSATISFIED WITH THIS WEBSITE OR THE UNICODE PRODUCTS, YOUR SOLE REMEDY IS TO DISCONTINUE USE OF THE WEBSITE AND THE UNICODE PRODUCTS.

      --
    4. --
    5. IN NO EVENT SHALL UNICODE, ITS MEMBERS, OR ITS LICENSORS OR CONTRIBUTORS BE LIABLE FOR ANY CLAIM OR DAMAGES WHATSOEVER OF ANY KIND, WHETHER DIRECT, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, WHETHER OR NOT UNICODE WAS ADVISED OF THE POSSIBILITY OF SUCH DAMAGE, INCLUDING BUT NOT LIMITED TO DAMAGE RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE, INABILITY TO USE, PERFORMANCE, FUNCTIONALITY, MODIFICATION, OR DISTRIBUTION OF THIS WEBSITE, THE UNICODE PRODUCTS, OR ANY DERIVATIVES THEREOF.

      --
    6. --
    7. Unicode makes no warranties or representations of any kind regarding any non-Unicode sites to which you may be directed or hyperlinked from this website. Hyperlinks are included solely for your convenience and Unicode makes no warranties or representations with regard to the accuracy, availability, suitability, or safety of information, products, or services provided on such non-Unicode sites.

      --
    8. --
    --
  10. --
  11. Intellectual Property Contributions to Unicode. All contributions or submissions to Unicode are governed by -- The Unicode Consortium Intellectual Property, Licensing & Technical Contribution Policies. If you wish to make any contribution or submission to Unicode, refer to the foregoing Policies for further information on how to do so. In the absence of a signed contributor license or other agreement with Unicode that expressly governs a particular contribution or submission, the act of making a contribution or submission of any kind to Unicode by any communication channel constitutes a binding legal agreement by the contributor or submitter that they:

    --
      --
    1. represent and agree that the contributed matter is not proprietary or confidential to the contributor or any third party, and

      --
    2. --
    3. grant to Unicode and to recipients of products distributed by Unicode a perpetual, irrevocable, unrestricted, worldwide, nonexclusive, no-charge, royalty-free license, without obligation for accounting, to reproduce, prepare derivative works of, publicly display, publicly perform, distribute, make, use, sell, offer to sell, or import that matter for any purpose, with the unrestricted right to sublicense those rights.

      --
    4. --
    --
  12. --
  13. Compliance with Unicode Policies. These Terms of Use hereby incorporate by reference the following Unicode Policies. Your use of this website and/or Unicode Products and/or your participation in Unicode activities constitutes your agreement to these Policies which may be modified at any time in Unicode’s sole discretion:

    --
      --
    1. -- The Unicode Consortium Code of Conduct --
    2. --
    3. -- The Unicode Consortium Antitrust Policy & Guidelines --
    4. --
    5. -- The Unicode Consortium Intellectual Property, Licensing & Technical Contribution Policies --
    6. --
    7. -- The Unicode Consortium Name and Trademark Usage Policy --
    8. --
    9. -- The Unicode Consortium Policy on Handling of Confidential Business Data --
    10. --
    11. -- The Unicode Consortium General Privacy Policy --
    12. --
    13. -- The Unicode Technical Group Procedures --
    14. --
    --
  14. --
  15. Trademarks & Logos. The Unicode Word Mark and the Unicode Logo are trademarks of Unicode, Inc. “The Unicode Consortium'' and “Unicode, Inc.” are trade names of Unicode, Inc. You hereby acknowledge and agree to respect Unicode’s exclusive worldwide rights in the Unicode Word Mark, the Unicode Logo, and the Unicode trade names. -- The Unicode Consortium Name and Trademark Usage Policy is incorporated herein by reference and you agree to abide by its provisions, which may be changed from time to time in Unicode’s sole discretion.

    --
  16. --
  17. Jurisdiction and Venue. This website is operated from, and the Unicode Products are made available from, locations in the United States of America. Unicode makes no representation that this website or Unicode Products are appropriate for use in other locations. If you access this website or the Unicode Products from other locations, you are responsible for compliance with local laws. These Terms of Use, all use of this website and Unicode Products, and any claims and damages resulting from use of this website or Unicode Products, are governed by the applicable laws of the United States of America and the State of California without regard to any principles which would apply the laws of different jurisdictions. You agree that any disputes regarding this website and the Unicode Products shall be resolved solely in the appropriate state and federal courts located in the counties of San Francisco, San Mateo, or Santa Clara, California. You agree that these courts have personal jurisdiction over you and agree to waive any right to transfer the dispute to any other forum.

    --
  18. --
  19. Severability. If any provision of these Terms of Use is declared invalid or unenforceable, the remaining provisions of these Terms of Use shall remain in effect.

    --
  20. --
-- -- --
-- -- --
--
--
-- -- -- -- --
-- Access to Copyright and terms of use
--
--
-- --
-- -- -diff --git a/robots.txt b/robots.txt -deleted file mode 100644 -index b9024d0..0000000 ---- a/robots.txt -+++ /dev/null -@@ -1,447 +0,0 @@ --User-agent: * --Disallow: /draft/ # not official even if visible -- -- --# Begin updates for 2025 - Release 17.0 --Disallow: /Public/16.0.0/ # obsolete data --Disallow: /charts/PDF/Unicode-16.0 # obsolete version --Disallow: /reports/tr46/tr46-33.html --Disallow: /reports/tr14/tr14-53.html --Disallow: /reports/tr15/tr15-56.html --Disallow: /reports/tr9/tr9-50.html --Disallow: /reports/tr51/tr51-27.html --Disallow: /reports/tr34/tr34-31.html --Disallow: /reports/tr35/tr35-74/ # obsolete version --Disallow: /reports/tr25/tr25-14.pdf --# End updates for 2025 - Release 17.0 -- --Disallow: /Public/1.1-Update/ # obsolete data --Disallow: /Public/2.1-Update2/ # obsolete data --Disallow: /Public/3.0-Update/ # obsolete data --Disallow: /Public/3.0-Update/ # obsolete data --Disallow: /Public/2.1-Update3/ # obsolete data --Disallow: /Public/2.1-Update/ # obsolete data --Disallow: /Public/2.1-Update4/ # obsolete data --Disallow: /Public/3.0-Update1/ # obsolete data --Disallow: /Public/3.1-Update/ # obsolete data --Disallow: /Public/3.1-Update1/ # obsolete data --Disallow: /Public/3.2-Update/ # obsolete data --Disallow: /Public/4.0-Update/ # obsolete data --Disallow: /Public/4.0-Update1/ # obsolete data --Disallow: /Public/4.1.0/ # obsolete data --Disallow: /Public/5.0.0/ # obsolete data --Disallow: /Public/5.1.0/ # obsolete data --Disallow: /Public/5.2.0/ # obsolete data --Disallow: /Public/6.0.0/ # obsolete data --Disallow: /Public/6.1.0/ # obsolete data --Disallow: /Public/6.2.0/ # obsolete data --Disallow: /Public/6.3.0/ # obsolete data --Disallow: /Public/7.0.0/ # obsolete data --Disallow: /Public/8.0.0/ # obsolete data --Disallow: /Public/9.0.0/ # obsolete data --Disallow: /Public/10.0.0/ # obsolete data --Disallow: /Public/11.0.0/ # obsolete data --Disallow: /Public/12.0.0/ # obsolete data --Disallow: /Public/13.0.0/ # obsolete data --Disallow: /Public/14.0.0/ # obsolete data --Disallow: /Public/15.0.0/ # obsolete data --Disallow: /Public/15.1.0/ # obsolete data --Disallow: /fr/ # obsolete pages and charts --Disallow: /versions/Unicode2.0.0/ # obsolete version --Disallow: /versions/Unicode2.1.0/ # obsolete version --Disallow: /versions/Unicode3.0.0/ # obsolete version --Disallow: /versions/Unicode3.0.1/ # obsolete version --Disallow: /versions/Unicode3.1.0/ # obsolete version --Disallow: /versions/Unicode3.1.1/ # obsolete version --Disallow: /versions/Unicode3.2.0/ # obsolete version --Disallow: /versions/Unicode4.0.0/ # obsolete version --Disallow: /versions/Unicode4.0.1/ # obsolete version --Disallow: /versions/Unicode4.1.0/ # obsolete version --Disallow: /versions/Unicode5.0.0/ # obsolete version --Disallow: /versions/Unicode5.1.0/ # obsolete version --Disallow: /versions/Unicode5.2.0/ # obsolete version --Disallow: /versions/Unicode6.0.0/ # obsolete version --Disallow: /versions/Unicode6.1.0/ # obsolete version --Disallow: /versions/Unicode6.2.0/ # obsolete version --Disallow: /versions/Unicode6.3.0/ # obsolete version --Disallow: /versions/Unicode7.0.0/ # obsolete version --Disallow: /versions/Unicode8.0.0/ # obsolete version --Disallow: /versions/Unicode9.0.0/ # obsolete version --Disallow: /versions/Unicode10.0.0/ # obsolete version --Disallow: /versions/Unicode11.0.0/ # obsolete version --Disallow: /versions/Unicode12.0.0/ # obsolete version --Disallow: /versions/Unicode13.0.0/ # obsolete version --Disallow: /versions/Unicode14.0.0/ # obsolete version --Disallow: /versions/Unicode15.0.0/ # obsolete version --Disallow: /versions/Unicode15.1.0/ # obsolete version --Disallow: /charts/PDF/Unicode-3.1 # obsolete version --Disallow: /charts/PDF/Unicode-3.2 # obsolete version --Disallow: /charts/PDF/Unicode-4.0 # obsolete version --Disallow: /charts/PDF/Unicode-4.1 # obsolete version --Disallow: /charts/PDF/Unicode-5.0 # obsolete version --Disallow: /charts/PDF/Unicode-5.1 # obsolete version --Disallow: /charts/PDF/Unicode-5.2 # obsolete version --Disallow: /charts/PDF/Unicode-6.0 # obsolete version --Disallow: /charts/PDF/Unicode-6.1 # obsolete version --Disallow: /charts/PDF/Unicode-6.2 # obsolete version --Disallow: /charts/PDF/Unicode-6.3 # obsolete version --Disallow: /charts/PDF/Unicode-7.0 # obsolete version --Disallow: /charts/PDF/Unicode-8.0 # obsolete version --Disallow: /charts/PDF/Unicode-9.0 # obsolete version --Disallow: /charts/PDF/Unicode-10.0 # obsolete version --Disallow: /charts/PDF/Unicode-11.0 # obsolete version --Disallow: /charts/PDF/Unicode-12.0 # obsolete version --Disallow: /charts/PDF/Unicode-13.0 # obsolete version --Disallow: /charts/PDF/Unicode-14.0 # obsolete version --Disallow: /charts/PDF/Unicode-15.0 # obsolete version --Disallow: /charts/PDF/Unicode-15.1 # obsolete version --Disallow: /charts/beta/ # not permanent content --Disallow: /reports/tr1.html # obsolete TR --Disallow: /reports/tr2.html # obsolete TR --Disallow: /reports/tr3.html # obsolete TR --Disallow: /reports/tr6-10.html # obsolete TR draft --Disallow: /reports/tr1/ # obsolete TR --Disallow: /reports/tr2/ # obsolete TR --Disallow: /reports/tr3/ # obsolete TR --Disallow: /reports/tr7/ # obsolete TR --Disallow: /reports/tr12/ # obsolete TR --Disallow: /reports/tr13/ # obsolete TR --Disallow: /reports/tr19/ # obsolete TR --Disallow: /reports/tr21/ # obsolete TR --Disallow: /reports/tr30/ # obsolete TR --Disallow: /reports/tr32/ # obsolete TR --Disallow: /reports/tr40/ # obsolete TR --Disallow: /reports/tr47/ # obsolete TR --Disallow: /reports/tr49/ # obsolete TR --Disallow: /reports/tr52/ # obsolete TR --Disallow: /anon-ftp/ # same as Public, different path --Disallow: /Public/MAPPINGS/OBSOLETE/ # obsolete data --Disallow: /unicode/members/ --Disallow: /members/ --Disallow: /repository/ # dynamic --Disallow: /cldr/repository/ # dynamic --Disallow: /cldr/utility/ # dynamic --Disallow: /cgi-bin/ # dynamic --Disallow: /cldr/data/diff/ # dynamic --Disallow: /cldr/trac/ # dynamic --Disallow: /edcom/bugtrack/ # dynamic --Disallow: /uli/trac/ # dynamic --Disallow: /~srloomis/ut/trac/ #dynamic --Disallow: /repos/ # dynamic --Disallow: /repos/cldr-tmp/ # dynamic --Disallow: /utility/trac/ # dynamic --Disallow: /utility/ # dynamic --Disallow: /forum/ # dynamic --Disallow: /forum/viewtopic.php # dynamic, discontinued --Allow: /cldr/data/common/ --Allow: /cldr/data/docs/ --Allow: /cldr/data/tools/ --Disallow: /cldr/data/ # everything else --Disallow: /cldr/dropbox/ # not really public --Disallow: /~ecartis # not really public --Disallow: /unibook/oldversions/ # obsolete data --Disallow: /reports/tr46/tr46-1.html --Disallow: /reports/tr46/tr46-2.html --Disallow: /reports/tr46/tr46-3.html --Disallow: /reports/tr46/tr46-4.html --Disallow: /reports/tr46/tr46-5.html --Disallow: /reports/tr46/tr46-6.html --Disallow: /reports/tr46/tr46-7.html --Disallow: /reports/tr46/tr46-8.html --Disallow: /reports/tr46/tr46-9.html --Disallow: /reports/tr46/tr46-10.html --Disallow: /reports/tr46/tr46-11.html --Disallow: /reports/tr46/tr46-12.html --Disallow: /reports/tr46/tr46-13.html --Disallow: /reports/tr46/tr46-14.html --Disallow: /reports/tr46/tr46-15.html --Disallow: /reports/tr46/tr46-16.html --Disallow: /reports/tr46/tr46-17.html --Disallow: /reports/tr46/tr46-18.html --Disallow: /reports/tr46/tr46-19.html --Disallow: /reports/tr46/tr46-20.html --Disallow: /reports/tr46/tr46-21.html --Disallow: /reports/tr46/tr46-22.html --Disallow: /reports/tr46/tr46-23.html --Disallow: /reports/tr46/tr46-24.html --Disallow: /reports/tr46/tr46-25.html --Disallow: /reports/tr46/tr46-26.html --Disallow: /reports/tr46/tr46-27.html --Disallow: /reports/tr46/tr46-28.html --Disallow: /reports/tr46/tr46-29.html --Disallow: /reports/tr46/tr46-30.html --Disallow: /reports/tr46/tr46-31.html --Disallow: /reports/tr46/tr46-32.html --Disallow: /reports/tr15/tr15-7.html --Disallow: /reports/tr15/tr15-8.html --Disallow: /reports/tr15/tr15-9.html --Disallow: /reports/tr15/tr15-10.html --Disallow: /reports/tr15/tr15-11.html --Disallow: /reports/tr15/tr15-12.html --Disallow: /reports/tr15/tr15-13.html --Disallow: /reports/tr15/tr15-14.html --Disallow: /reports/tr15/tr15-15.html --Disallow: /reports/tr15/tr15-16.html --Disallow: /reports/tr15/tr15-17.html --Disallow: /reports/tr15/tr15-18.html --Disallow: /reports/tr15/tr15-19.html --Disallow: /reports/tr15/tr15-20.html --Disallow: /reports/tr15/tr15-21.html --Disallow: /reports/tr15/tr15-22.html --Disallow: /reports/tr15/tr15-23.html --Disallow: /reports/tr15/tr15-24.html --Disallow: /reports/tr15/tr15-25.html --Disallow: /reports/tr15/tr15-26.html --Disallow: /reports/tr15/tr15-20.html --Disallow: /reports/tr15/tr15-21.html --Disallow: /reports/tr15/tr15-22.html --Disallow: /reports/tr15/tr15-23.html --Disallow: /reports/tr15/tr15-24.html --Disallow: /reports/tr15/tr15-25.html --Disallow: /reports/tr15/tr15-26.html --Disallow: /reports/tr15/tr15-27.html --Disallow: /reports/tr15/tr15-28.html --Disallow: /reports/tr15/tr15-29.html --Disallow: /reports/tr15/tr15-30.html --Disallow: /reports/tr15/tr15-31.html --Disallow: /reports/tr15/tr15-32.html --Disallow: /reports/tr15/tr15-33.html --Disallow: /reports/tr15/tr15-34.html --Disallow: /reports/tr15/tr15-35.html --Disallow: /reports/tr15/tr15-36.html --Disallow: /reports/tr15/tr15-37.html --Disallow: /reports/tr15/tr15-38.html --Disallow: /reports/tr15/tr15-39.html --Disallow: /reports/tr15/tr15-40.html --Disallow: /reports/tr15/tr15-40.html --Disallow: /reports/tr15/tr15-41.html --Disallow: /reports/tr15/tr15-42.html --Disallow: /reports/tr15/tr15-43.html --Disallow: /reports/tr15/tr15-44.html --Disallow: /reports/tr15/tr15-45.html --Disallow: /reports/tr15/tr15-46.html --Disallow: /reports/tr15/tr15-47.html --Disallow: /reports/tr15/tr15-48.html --Disallow: /reports/tr15/tr15-49.html --Disallow: /reports/tr15/tr15-50.html --Disallow: /reports/tr15/tr15-51.html --Disallow: /reports/tr15/tr15-52.html --Disallow: /reports/tr15/tr15-53.html --Disallow: /reports/tr15/tr15-54.html --Disallow: /reports/tr15/tr15-55.html --Disallow: /reports/tr14/tr14-15.html --Disallow: /reports/dtr14-03.html --Disallow: /reports/tr14-4/index.html --Disallow: /reports/tr14-5/index.html --Disallow: /reports/tr9/tr9-10.html --Disallow: /reports/tr9/tr9-11.html --Disallow: /reports/tr9/tr9-12.html --Disallow: /reports/tr9/tr9-13.html --Disallow: /reports/tr9/tr9-14.html --Disallow: /reports/tr9/tr9-15.html --Disallow: /reports/tr9/tr9-16.html --Disallow: /reports/tr9/tr9-17.html --Disallow: /reports/tr9/tr9-18.html --Disallow: /reports/tr9/tr9-19.html --Disallow: /reports/tr9/tr9-20.html --Disallow: /reports/tr9/tr9-21.html --Disallow: /reports/tr9/tr9-22.html --Disallow: /reports/tr9/tr9-23.html --Disallow: /reports/tr9/tr9-24.html --Disallow: /reports/tr9/tr9-25.html --Disallow: /reports/tr9/tr9-26.html --Disallow: /reports/tr9/tr9-20.html --Disallow: /reports/tr9/tr9-21.html --Disallow: /reports/tr9/tr9-22.html --Disallow: /reports/tr9/tr9-23.html --Disallow: /reports/tr9/tr9-24.html --Disallow: /reports/tr9/tr9-25.html --Disallow: /reports/tr9/tr9-26.html --Disallow: /reports/tr9/tr9-27.html --Disallow: /reports/tr9/tr9-28.html --Disallow: /reports/tr9/tr9-29.html --Disallow: /reports/tr9/tr9-30.html --Disallow: /reports/tr9/tr9-31.html --Disallow: /reports/tr9/tr9-32.html --Disallow: /reports/tr9/tr9-33.html --Disallow: /reports/tr9/tr9-34.html --Disallow: /reports/tr9/tr9-35.html --Disallow: /reports/tr9/tr9-36.html --Disallow: /reports/tr9/tr9-37.html --Disallow: /reports/tr9/tr9-38.html --Disallow: /reports/tr9/tr9-39.html --Disallow: /reports/tr9/tr9-40.html --Disallow: /reports/tr9/tr9-40.html --Disallow: /reports/tr9/tr9-41.html --Disallow: /reports/tr9/tr9-42.html --Disallow: /reports/tr9/tr9-43.html --Disallow: /reports/tr9/tr9-44.html --Disallow: /reports/tr9/tr9-45.html --Disallow: /reports/tr9/tr9-46.html --Disallow: /reports/tr9/tr9-47.html --Disallow: /reports/tr9/tr9-48.html --Disallow: /reports/tr9/tr9-49.html --Disallow: /reports/tr51/tr51-1.html --Disallow: /reports/tr51/tr51-1-archive.html --Disallow: /reports/tr51/tr51-2.html --Disallow: /reports/tr51/tr51-3.html --Disallow: /reports/tr51/tr51-4.html --Disallow: /reports/tr51/tr51-5.html --Disallow: /reports/tr51/tr51-6.html --Disallow: /reports/tr51/tr51-7.html --Disallow: /reports/tr51/tr51-8.html --Disallow: /reports/tr51/tr51-9.html --Disallow: /reports/tr51/tr51-10.html --Disallow: /reports/tr51/tr51-11.html --Disallow: /reports/tr51/tr51-12.html --Disallow: /reports/tr51/tr51-13.html --Disallow: /reports/tr51/tr51-14.html --Disallow: /reports/tr51/tr51-15.html --Disallow: /reports/tr51/tr51-16.html --Disallow: /reports/tr51/tr51-17.html --Disallow: /reports/tr51/tr51-18.html --Disallow: /reports/tr51/tr51-19.html --Disallow: /reports/tr51/tr51-20.html --Disallow: /reports/tr51/tr51-21.html --Disallow: /reports/tr51/tr51-22.html --Disallow: /reports/tr51/tr51-23.html --Disallow: /reports/tr51/tr51-24.html --Disallow: /reports/tr51/tr51-25.html --Disallow: /reports/tr51/tr51-26.html --Disallow: /reports/tr34/tr34-1.html --Disallow: /reports/tr34/tr34-2.html --Disallow: /reports/tr34/tr34-3.html --Disallow: /reports/tr34/tr34-4.html --Disallow: /reports/tr34/tr34-5.html --Disallow: /reports/tr34/tr34-6.html --Disallow: /reports/tr34/tr34-7.html --Disallow: /reports/tr34/tr34-8.html --Disallow: /reports/tr34/tr34-9.html --Disallow: /reports/tr34/tr34-10.html --Disallow: /reports/tr34/tr34-11.html --Disallow: /reports/tr34/tr34-12.html --Disallow: /reports/tr34/tr34-13.html --Disallow: /reports/tr34/tr34-14.html --Disallow: /reports/tr34/tr34-15.html --Disallow: /reports/tr34/tr34-16.html --Disallow: /reports/tr34/tr34-17.html --Disallow: /reports/tr34/tr34-18.html --Disallow: /reports/tr34/tr34-19.html --Disallow: /reports/tr34/tr34-20.html --Disallow: /reports/tr34/tr34-21.html --Disallow: /reports/tr34/tr34-22.html --Disallow: /reports/tr34/tr34-23.html --Disallow: /reports/tr34/tr34-24.html --Disallow: /reports/tr34/tr34-25.html --Disallow: /reports/tr34/tr34-26.html --Disallow: /reports/tr34/tr34-27.html --Disallow: /reports/tr34/tr34-28.html --Disallow: /reports/tr34/tr34-29.html --Disallow: /reports/tr34/tr34-30.html --Disallow: /reports/tr35/tr35-1.html # obsolete version --Disallow: /reports/tr35/tr35-2.html # obsolete version --Disallow: /reports/tr35/tr35-3.html # obsolete version --Disallow: /reports/tr35/tr35-4.html # obsolete version --Disallow: /reports/tr35/tr35-5.html # obsolete version --Disallow: /reports/tr35/tr35-6.html # obsolete version --Disallow: /reports/tr35/tr35-7.html # obsolete version --Disallow: /reports/tr35/tr35-8.html # obsolete version --Disallow: /reports/tr35/tr35-9.html # obsolete version --Disallow: /reports/tr35/tr35-10.html # obsolete version --Disallow: /reports/tr35/tr35-11.html # obsolete version --Disallow: /reports/tr35/tr35-12.html # obsolete version --Disallow: /reports/tr35/tr35-13.html # obsolete version --Disallow: /reports/tr35/tr35-14d1.html # obsolete version --Disallow: /reports/tr35/tr35-15.html # obsolete version --Disallow: /reports/tr35/tr35-16.html # obsolete version --Disallow: /reports/tr35/tr35-17.html # obsolete version --Disallow: /reports/tr35/tr35-18.html # obsolete version --Disallow: /reports/tr35/tr35-19.html # obsolete version --Disallow: /reports/tr35/tr35-20.html # obsolete version --Disallow: /reports/tr35/tr35-21.html # obsolete version --Disallow: /reports/tr35/tr35-22.html # obsolete version --Disallow: /reports/tr35/tr35-23.html # obsolete version --Disallow: /reports/tr35/tr35-25.html # obsolete version --Disallow: /reports/tr35/tr35-27.html # obsolete version --Disallow: /reports/tr35/tr35-29.html # obsolete version --Disallow: /reports/tr35/tr35-30.html # obsolete version --Disallow: /reports/tr35/tr35-30/ # obsolete version --Disallow: /reports/tr35/tr35-31/ # obsolete version --Disallow: /reports/tr35/tr35-32/ # obsolete version --Disallow: /reports/tr35/tr35-33/ # obsolete version --Disallow: /reports/tr35/tr35-34/ # obsolete version --Disallow: /reports/tr35/tr35-35/ # obsolete version --Disallow: /reports/tr35/tr35-36/ # obsolete version --Disallow: /reports/tr35/tr35-37/ # obsolete version --Disallow: /reports/tr35/tr35-38/ # obsolete version --Disallow: /reports/tr35/tr35-39/ # obsolete version --Disallow: /reports/tr35/tr35-40/ # obsolete version --Disallow: /reports/tr35/tr35-41/ # obsolete version --Disallow: /reports/tr35/tr35-42/ # obsolete version --Disallow: /reports/tr35/tr35-43/ # obsolete version --Disallow: /reports/tr35/tr35-44/ # obsolete version --Disallow: /reports/tr35/tr35-45/ # obsolete version --Disallow: /reports/tr35/tr35-46/ # obsolete version --Disallow: /reports/tr35/tr35-47/ # obsolete version --Disallow: /reports/tr35/tr35-48/ # obsolete version --Disallow: /reports/tr35/tr35-49/ # obsolete version --Disallow: /reports/tr35/tr35-50/ # obsolete version --Disallow: /reports/tr35/tr35-51/ # obsolete version --Disallow: /reports/tr35/tr35-52/ # obsolete version --Disallow: /reports/tr35/tr35-53/ # obsolete version --Disallow: /reports/tr35/tr35-54/ # obsolete version --Disallow: /reports/tr35/tr35-55/ # obsolete version --Disallow: /reports/tr35/tr35-56/ # obsolete version --Disallow: /reports/tr35/tr35-57/ # obsolete version --Disallow: /reports/tr35/tr35-58/ # obsolete version --Disallow: /reports/tr35/tr35-59/ # obsolete version --Disallow: /reports/tr35/tr35-60/ # obsolete version --Disallow: /reports/tr35/tr35-61/ # obsolete version --Disallow: /reports/tr35/tr35-62/ # obsolete version --Disallow: /reports/tr35/tr35-63/ # obsolete version --Disallow: /reports/tr35/tr35-64/ # obsolete version --Disallow: /reports/tr35/tr35-65/ # obsolete version --Disallow: /reports/tr35/tr35-66/ # obsolete version --Disallow: /reports/tr35/tr35-67/ # obsolete version --Disallow: /reports/tr35/tr35-68/ # obsolete version --Disallow: /reports/tr25/tr25-1.html --Disallow: /reports/tr25/tr25-2.html --Disallow: /reports/tr25/tr25-3.html --Disallow: /reports/tr25/tr25-4.html --Disallow: /reports/tr25/tr25-5.html --Disallow: /reports/tr25/tr25-6.html --Disallow: /reports/tr25/tr25-7.html --Disallow: /reports/tr25/tr25-8.html --Disallow: /reports/tr25/tr25-9.html --Disallow: /reports/tr25/tr25-10.pdf --Disallow: /reports/tr25/tr25-11.pdf --Disallow: /reports/tr25/tr25-12.pdf --Disallow: /reports/tr25/tr25-13.pdf --Disallow: /reports/tr25/tr25-14.pdf --User-Agent: AhrefsBot --Crawl-Delay: 60 --User-Agent: Baiduspider --Crawl-Delay: 60 --User-agent: CCBot --Crawl-Delay: 60 --User-agent: Gigabot --Disallow: / --User-agent: betaBot --Disallow: / --User-agent: CCBot --Crawl-Delay: 60 --User-agent: AhrefsBot --Crawl-Delay: 60 --User-agent: dotbot --Crawl-Delay: 60 --User-agent: MJ12bot --Crawl-Delay: 60 --User-agent: msnbot --Crawl-delay: 60 --User-agent: BLEXBot --Crawl-delay: 60 --User-agent: SeznamBot --Request-rate: 1/1m --Crawl-delay: 60 --User-agent: Viber/18.3.2.0 --Disallow: / -diff --git a/scripts/gen_unicode_tables.py b/scripts/gen_unicode_tables.py -index 9e59eaf..9aa340b 100755 ---- a/scripts/gen_unicode_tables.py -+++ b/scripts/gen_unicode_tables.py -@@ -1,4 +1,5 @@ - #!/usr/bin/env python3 -+# SPDX-License-Identifier: GPL-2.0-only - """Generate NSS-compatible BMP Unicode case tables from UnicodeData.txt. - - The generated C file exports the NSS symbol names expected by the imported --- -2.47.3 -