summaryrefslogtreecommitdiff
path: root/misc/tools/show-changes.py
diff options
context:
space:
mode:
authorRasmus Andersson <rasmus@notion.se>2018-09-03 22:55:49 +0300
committerRasmus Andersson <rasmus@notion.se>2018-09-03 22:55:49 +0300
commitc833e252c925e8dd68108660710ca835d95daa6f (patch)
tree6b2e28264ed45efd7f054e453b622098d0d875b8 /misc/tools/show-changes.py
parent8c1a4c181ef12000179dfec541f1af87e9b03122 (diff)
downloadinter-c833e252c925e8dd68108660710ca835d95daa6f.tar.xz
Major overhaul, moving from UFO2 to Glyphs and UFO3, plus a brand new and much simpler fontbuild
Diffstat (limited to 'misc/tools/show-changes.py')
-rwxr-xr-xmisc/tools/show-changes.py115
1 files changed, 115 insertions, 0 deletions
diff --git a/misc/tools/show-changes.py b/misc/tools/show-changes.py
new file mode 100755
index 000000000..59f79b3e5
--- /dev/null
+++ b/misc/tools/show-changes.py
@@ -0,0 +1,115 @@
+#!/usr/bin/env python
+from __future__ import print_function
+import os, sys, subprocess
+from argparse import ArgumentParser
+from xml.dom.minidom import parse as xmlParseFile
+from collections import OrderedDict
+
+
+def main():
+ opts = ArgumentParser(description='Shows glyph-related changes.')
+
+ opts.add_argument(
+ 'sinceCommit', metavar='<since-commit>', type=str,
+ help='Start commit.')
+
+ opts.add_argument(
+ 'untilCommit', metavar='<until-commit>', type=str, nargs='?',
+ default='HEAD', help='End commit. Defaults to HEAD.')
+
+ opts.add_argument(
+ '-markdown', dest='markdown', action='store_const',
+ const=True, default=False,
+ help='Output text suitable for Markdown (rather than plain text.)')
+
+ a = opts.parse_args()
+
+ rootdir = os.path.abspath(os.path.join(
+ os.path.dirname(__file__),
+ os.pardir
+ ))
+
+ try:
+ out = subprocess.check_output(
+ [
+ 'git',
+ '-C', rootdir,
+ 'diff',
+ '--name-status',
+ a.sinceCommit + '..' + a.untilCommit,
+ '--', 'src'
+ ],
+ shell=False
+ ).strip()
+ except Exception as e:
+ print('Did you forget to `git fetch --tags` perhaps?', file=sys.stderr)
+ sys.exit(1)
+
+ ufoPrefix = 'src/Inter-UI-'
+ changes = OrderedDict()
+ deleted = []
+
+ for line in out.split('\n'):
+ changeType, name = line.split('\t')
+ if name.startswith(ufoPrefix) and name.endswith('.glif'):
+ weight = name[len(ufoPrefix):name.find('.ufo/')]
+ filename = os.path.join(rootdir, name)
+ try:
+ doc = xmlParseFile(filename)
+ except:
+ deleted.append('%s/%s' % (weight, os.path.basename(name)))
+ continue
+
+ g = doc.documentElement
+ gname = g.attributes['name'].value
+ unicodes = set([
+ 'U+' + u.attributes['hex'].value
+ for u in g.getElementsByTagName('unicode')
+ ])
+
+ c = changes.get(gname)
+ if c is None:
+ c = {
+ 'unicodes': unicodes,
+ 'weights': [(weight, changeType)]
+ }
+ changes[gname] = c
+ else:
+ c['unicodes'] = c['unicodes'].union(unicodes)
+ c['weights'].append((weight, changeType))
+
+ longestName = 0
+ names = sorted(changes.keys())
+
+ if not a.markdown:
+ # find longest name
+ for name in names:
+ z = len(name)
+ if z > longestName:
+ longestName = z
+
+ for name in names:
+ c = changes[name]
+ weights = [ w[0] for w in c['weights'] ]
+ unicodes = c['unicodes']
+
+ if a.markdown:
+ unicodess = ''
+ if len(unicodes) != 0:
+ unicodess = ' %s' % ', '.join(['`%s`' % s for s in unicodes])
+ weightss = ' & '.join(weights)
+ print('- %s%s _%s_' % (name, unicodess, weightss))
+ else:
+ unicodess = ''
+ if len(unicodes) != 0:
+ unicodess = ' (%s)' % ', '.join(unicodes)
+ weightss = ' & '.join(weights)
+ print('%s%s %s' % (name.ljust(longestName), unicodess, weightss))
+
+ if len(deleted):
+ print('\nDeleted files')
+ for filename in deleted:
+ print('- %s' % filename)
+
+
+main() \ No newline at end of file