]> git.donarmstrong.com Git - lilypond.git/blob - buildscripts/html-gettext.py
Merge commit 'd77d089' into jneeman
[lilypond.git] / buildscripts / html-gettext.py
1 #!@PYTHON@
2 # html-gettext.py
3
4 # USAGE:  html-gettext.py [-o OUTDIR] BUILDSCRIPT-DIR LOCALEDIR LANG FILES
5 #
6 # -o OUTDIR specifies that output files should be written in OUTDIR
7 #    rather than be overwritten
8 #
9
10 import sys
11 import re
12 import os
13 import getopt
14 import gettext
15
16 optlist, args = getopt.getopt(sys.argv[1:],'o:')
17 buildscript_dir, localedir, lang = args[0:3]
18
19 outdir = '.'
20 for x in optlist:
21         if x[0] == '-o':
22                 outdir = x[1]
23
24 sys.path.append (buildscript_dir)
25 import langdefs
26
27 double_punct_char_separator = langdefs.LANGDICT[lang].double_punct_char_sep
28 print localedir
29 print lang
30 t = gettext.translation('lilypond-doc', localedir, [lang])
31 my_gettext = t.gettext
32
33 html_codes = ((' -- ', ' – '),
34               (' --- ', ' — '))
35 html2texi = {'command': (re.compile (r'<samp><span class="command">(.*?)</span></samp>'), r'@command{\1}'),
36              'code': (re.compile (r'<code>(.*?)</code>'), r'@code{\1}')
37              }
38 texi2html = {'command': (re.compile (r'@command{(.*?)}'), r'<samp><span class="command">\1</span></samp>'),
39              'code': (re.compile (r'@code{(.*?)}'), r'<code>\1</code>')
40              }
41
42 def _ (s):
43         if not s:
44                 return ''
45         for c in html_codes:
46                 s = s.replace (c[1], c[0])
47         for u in html2texi.values():
48                 s = u[0].sub (u[1], s)
49         s = my_gettext (s)
50         for u in texi2html.values():
51                 s = u[0].sub (u[1], s)
52         for c in html_codes:
53                 s = s.replace (c[0], c[1])
54         return s
55
56 def link_gettext (m):
57         return '<link rel="' + m.group(1) + '" ' + m.group(2) + ' title="' + _(m.group(3)) + '">'
58
59 def title_gettext (m):
60         return '<title>' + _(m.group(1)) + ' - ' + m.group(2) + '</title>'
61
62 def a_href_gettext (m):
63         s = ''
64         if m.group(0)[-1] == ':':
65                 s = double_punct_char_separator + ':'
66         t = ''
67         if m.lastindex == 7:
68                 t = m.group(7)
69         return '<a ' + (m.group(1) or '') + m.group(2) + (m.group(3) or '') + _(m.group(4)) + m.group(5) + _(m.group(6)) + t + '</a>' + s
70
71 def h_gettext (m):
72         if m.group (3):
73                 s = _(m.group(3))
74         else:
75                 s= ''
76         return '<h' + m.group(1) + m.group(2) + '>' + s +\
77                m.group(4) + _(m.group(5)) + '</h' + m.group(1) + '>'
78
79 def rglos_gettext (m):
80         return '<a href="../music-glossary/' + m.group(1) + '">' + _(m.group(2)) + '</a>'
81
82 for filename in args[3:]:
83         f = open (filename, 'r')
84         page = f.read ()
85         f.close()
86         page = re.sub (r'<link rel="(up|prev|next)" (.*?) title="([^"]*?)">', link_gettext, page)
87         page = re.sub (r'<title>([^<]*?) - ([^<]*?)</title>', title_gettext, page)
88         # ugh
89         page = re.sub (r'<a ((?:rel="\w+")? ?(?:accesskey="[^"]+?")? ?(?:name=".*?")? ?)(href="[^"]+?">)(<code>)?(Appendix )?([A-Z\d.]+ |)(.+?)(?(3)</code>)</a>:?', a_href_gettext, page)
90         page = re.sub (r'<h(\d)( class="\w+"|)>(Appendix |)([A-Z\d.]+ |)?([^<]+)</h\1>', h_gettext, page)
91         page = re.sub (r'<a href="../music-glossary/(.+?)">(.+?)</a>', rglos_gettext, page)
92         for w in ('Next:', 'Previous:', 'Up:'):
93                 page = re.sub (w, _(w), page)
94         page = langdefs.LANGDICT[lang].html_filter (page)
95         f = open (os.path.join (outdir, filename), 'w')
96         f.write (page)
97         f.close ()