Add links to files used by python scripts.

Closes #2150
This commit is contained in:
Evgeniy Reizner 2020-02-09 18:39:33 +02:00 committed by Ebrahim Byagowi
parent 40166eb0e5
commit 4dc87365d7
7 changed files with 26 additions and 0 deletions

View File

@ -1,5 +1,10 @@
#!/usr/bin/env python
# Input files:
# - https://unicode.org/Public/12.0.0/ucd/ArabicShaping.txt
# - https://unicode.org/Public/12.0.0/ucd/UnicodeData.txt
# - https://unicode.org/Public/12.0.0/ucd/Blocks.txt
from __future__ import print_function, division, absolute_import
import io, os.path, sys

View File

@ -1,5 +1,7 @@
#!/usr/bin/python
# Input file: https://www.unicode.org/Public/emoji/12.0/emoji-data.txt
from __future__ import print_function, division, absolute_import
import sys
import os.path

View File

@ -1,5 +1,10 @@
#!/usr/bin/env python
# Input files:
# - https://unicode.org/Public/12.0.0/ucd/IndicSyllabicCategory.txt
# - https://unicode.org/Public/12.0.0/ucd/IndicPositionalCategory.txt
# - https://unicode.org/Public/12.0.0/ucd/Blocks.txt
from __future__ import print_function, division, absolute_import
import io, sys

View File

@ -16,6 +16,10 @@ back to BCP 47 tags. Ambiguous OpenType tags (those that correspond to
multiple BCP 47 tags) are listed here, except when the alphabetically
first BCP 47 tag happens to be the chosen disambiguated tag. In that
case, the fallback behavior will choose the right tag anyway.
Input files:
- https://docs.microsoft.com/en-us/typography/opentype/spec/languagetags
- https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry
"""
from __future__ import absolute_import, division, print_function, unicode_literals

View File

@ -1,5 +1,7 @@
#!/usr/bin/env python
# Input file: http://unicode.org/Public/UCD/latest/ucdxml/ucd.nounihan.grouped.zip
from __future__ import print_function, division, absolute_import
import io, os.path, sys, re

View File

@ -1,6 +1,12 @@
#!/usr/bin/env python
# flake8: noqa
# Input files:
# - https://unicode.org/Public/12.0.0/ucd/IndicSyllabicCategory.txt
# - https://unicode.org/Public/12.0.0/ucd/IndicPositionalCategory.txt
# - https://unicode.org/Public/12.0.0/ucd/UnicodeData.txt
# - https://unicode.org/Public/12.0.0/ucd/Blocks.txt
from __future__ import print_function, division, absolute_import
import io

View File

@ -6,6 +6,8 @@ It creates ``_hb_preprocess_text_vowel_constraints``, which inserts dotted
circles into sequences prohibited by the USE script development spec.
This function should be used as the ``preprocess_text`` of an
``hb_ot_complex_shaper_t``.
Input file: https://unicode.org/Public/12.0.0/ucd/Scripts.txt
"""
from __future__ import absolute_import, division, print_function, unicode_literals