]> git.donarmstrong.com Git - lilypond.git/blob - buildscripts/html-gettext.py
Replace "_" with "_doc" for documentation translatable strings
[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 t = gettext.translation('lilypond-doc', localedir, [lang])
29 my_gettext = t.gettext
30
31 html_codes = ((' -- ', ' – '),
32               (' --- ', ' — '))
33 html2texi = {'command': (re.compile (r'<samp><span class="command">(.*?)</span></samp>'), r'@command{\1}'),
34              'code': (re.compile (r'<code>(.*?)</code>'), r'@code{\1}')
35              }
36 texi2html = {'command': (re.compile (r'@command{(.*?)}'), r'<samp><span class="command">\1</span></samp>'),
37              'code': (re.compile (r'@code{(.*?)}'), r'<code>\1</code>')
38              }
39
40 def _ (s):
41         if not s:
42                 return ''
43         for c in html_codes:
44                 s = s.replace (c[1], c[0])
45         for u in html2texi.values():
46                 s = u[0].sub (u[1], s)
47         s = my_gettext (s)
48         for u in texi2html.values():
49                 s = u[0].sub (u[1], s)
50         for c in html_codes:
51                 s = s.replace (c[0], c[1])
52         return s
53
54 def link_gettext (m):
55         return '<link rel="' + m.group(1) + '" ' + m.group(2) + ' title="' + _(m.group(3)) + '">'
56
57 def title_gettext (m):
58         return '<title>' + _(m.group(1)) + ' - ' + m.group(2) + '</title>'
59
60 def a_href_gettext (m):
61         s = ''
62         if m.group(0)[-1] == ':':
63                 s = double_punct_char_separator + ':'
64         t = ''
65         if m.lastindex == 7:
66                 t = m.group(7)
67         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
68
69 def h_gettext (m):
70         if m.group (3):
71                 s = _(m.group(3))
72         else:
73                 s= ''
74         return '<h' + m.group(1) + m.group(2) + '>' + s +\
75                m.group(4) + _(m.group(5)) + '</h' + m.group(1) + '>'
76
77 def rglos_gettext (m):
78         return '<a href="../music-glossary/' + m.group(1) + '">' + _(m.group(2)) + '</a>'
79
80 for filename in args[3:]:
81         f = open (filename, 'r')
82         page = f.read ()
83         f.close()
84         page = re.sub (r'<link rel="(up|prev|next)" (.*?) title="([^"]*?)">', link_gettext, page)
85         page = re.sub (r'<title>([^<]*?) - ([^<]*?)</title>', title_gettext, page)
86         # ugh
87         page = re.sub (r'<a ((?:rel="\w+")? ?(?:accesskey="[^"]+?")? ?(?:name=".*?")? ?)(href="[^"]+?">)(<code>)?(Appendix )?([A-Z\d.]+ |)(.+?)(?(3)</code>)</a>:?', a_href_gettext, page)
88         page = re.sub (r'<h(\d)( class="\w+"|)>(Appendix |)([A-Z\d.]+ |)?([^<]+)</h\1>', h_gettext, page)
89         page = re.sub (r'<a href="../music-glossary/(.+?)">(.+?)</a>', rglos_gettext, page)
90         for w in ('Next:', 'Previous:', 'Up:'):
91                 page = re.sub (w, _(w), page)
92         page = langdefs.LANGDICT[lang].html_filter (page)
93         f = open (os.path.join (outdir, filename), 'w')
94         f.write (page)
95         f.close ()