blob: c3fc5076588ae9e6ea670bf12a30e867d2f6cbb6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/usr/bin/env python
import re, sys, os
if len(sys.argv) < 3:
print 'Usage: ' + sys.argv[0] + ' <v11n name> <canon.h-style file(s)>'
print
print 'This script relies on v11nmax.py being present in the same location.'
print
print 'This utility takes a number of canon_*.h-style v11n definitions and'
print ' generates canon.h-style files for each input file combining all'
print ' of the verses from every file /other than/ the file in question.'
print
print 'This is used (via a diff program) to discover when a high maximum'
print ' verse count is contributed by a single input v11n table.'
print
print 'For example, to create the versification system "Max" from the'
print ' files contained in the directory ./canon, you might invoke:'
print ' ' + sys.argv[0] + ' Max ./canon/canon*.h'
print
exit()
v11n = sys.argv[1]
files = set(sys.argv[2:])
os.system('python ./v11nmax.py ' + ' '.join(sys.argv[1:]))
for f in files:
of = re.sub(r'^.+/', '', f)
of = re.sub(r'^canon_?', '', of)
of = re.sub(r'.h$', '', of)
of = sys.argv[1]+'-'+of
cl = 'python ./v11nmax.py ' + of + ' ' + ' '.join(files-set([f]))
os.system(cl)
|