70 lines
1.5 KiB
Python
Executable File
70 lines
1.5 KiB
Python
Executable File
#! /usr/bin/env python
|
|
|
|
import sys
|
|
import os
|
|
import glob
|
|
from fontTools.ttLib import identifierToTag
|
|
|
|
|
|
fontToolsDir = os.path.dirname(os.path.dirname(os.path.join(os.getcwd(), sys.argv[0])))
|
|
fontToolsDir= os.path.normpath(fontToolsDir)
|
|
tablesDir = os.path.join(fontToolsDir,
|
|
"Lib", "fontTools", "ttLib", "tables")
|
|
docFile = os.path.join(fontToolsDir, "Doc", "documentation.html")
|
|
|
|
names = glob.glob1(tablesDir, "*.py")
|
|
|
|
modules = []
|
|
tables = []
|
|
for name in names:
|
|
try:
|
|
tag = identifierToTag(name[:-3])
|
|
except:
|
|
pass
|
|
else:
|
|
modules.append(name[:-3])
|
|
tables.append(tag.strip())
|
|
|
|
modules.sort()
|
|
tables.sort()
|
|
|
|
|
|
file = open(os.path.join(tablesDir, "__init__.py"), "w")
|
|
|
|
file.write('''
|
|
from __future__ import print_function, division, absolute_import
|
|
from fontTools.misc.py23 import *
|
|
|
|
# DON'T EDIT! This file is generated by MetaTools/buildTableList.py.
|
|
def _moduleFinderHint():
|
|
"""Dummy function to let modulefinder know what tables may be
|
|
dynamically imported. Generated by MetaTools/buildTableList.py.
|
|
|
|
>>> _moduleFinderHint()
|
|
"""
|
|
''')
|
|
|
|
for module in modules:
|
|
file.write("\tfrom . import %s\n" % module)
|
|
|
|
file.write('''
|
|
if __name__ == "__main__":
|
|
import doctest, sys
|
|
sys.exit(doctest.testmod().failed)
|
|
''')
|
|
|
|
file.close()
|
|
|
|
|
|
begin = "<!-- begin table list -->"
|
|
end = "<!-- end table list -->"
|
|
doc = open(docFile).read()
|
|
beginPos = doc.find(begin)
|
|
assert beginPos > 0
|
|
beginPos = beginPos + len(begin) + 1
|
|
endPos = doc.find(end)
|
|
|
|
doc = doc[:beginPos] + ", ".join(tables[:-1]) + " and " + tables[-1] + "\n" + doc[endPos:]
|
|
|
|
open(docFile, "w").write(doc)
|