]> git.donarmstrong.com Git - lilypond.git/blob - buildscripts/add_html_footer.py
Merge branch 'dev/texi2html' of ssh://kainhofer@git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / buildscripts / add_html_footer.py
1 #!@PYTHON@
2
3 """
4 Print a nice footer.
5 """
6 import re
7 import os
8 import time
9 import operator
10
11 import langdefs
12
13 # This is to try to make the docball not too big with almost duplicate files
14 # see process_links()
15 non_copied_pages = ['Documentation/user/out-www/lilypond-big-page',
16                     'Documentation/user/out-www/lilypond-internals-big-page',
17                     'Documentation/user/out-www/music-glossary-big-page',
18                     'out-www/examples',
19                     'Documentation/topdocs',
20                     'Documentation/bibliography',
21                     'Documentation/out-www/THANKS',
22                     'Documentation/out-www/DEDICATION',
23                     'input/']
24
25 def _doc (s):
26     return s
27
28 header = r"""
29 """
30
31 footer = '''
32 <div style="background-color: #e8ffe8; padding: 2; border: #c0ffc0 1px solid;">
33 <p>
34 <font size="-1">
35 %(footer_name_version)s
36 <br>
37 <address>
38 %(footer_report_errors)s </address>
39 <br>
40 %(footer_suggest_docs)s
41 </font>
42 </p>
43 </div>
44 '''
45 footer_name_version = _doc ('This page is for %(package_name)s-%(package_version)s (%(branch_str)s).')
46 footer_report_errors = _doc ('Report errors to <a href="%(mail_address_url)s">%(mail_address)s</a>.')
47 # ugh, must not have "_doc" in strings because it is naively replaced with "_" in hacked gettext process
48 footer_suggest_docs = _doc ('Your <a href="%(suggest_Docs_url)s">suggestions for the documentation</a> are welcome.')
49
50 mail_address = 'http://post.gmane.org/post.php?group=gmane.comp.gnu.lilypond.bugs'
51 suggest_Docs_url = 'http://lilypond.org/web/devel/participating/documentation-adding'
52
53 header_tag = '<!-- header_tag -->'
54 header_tag_re = re.compile (header_tag)
55
56 footer_tag = '<!-- footer_tag -->'
57 footer_tag_re = re.compile (footer_tag)
58
59 lang_available = _doc ("Other languages: %s.")
60 browser_lang = _doc ('About <A HREF="%s">automatic language selection</A>.')
61 browser_language_url = "/web/about/browser-language"
62
63 LANGUAGES_TEMPLATE = '''
64 <p id="languages">
65  %(language_available)s
66  <br/>
67  %(browser_language)s
68 </p>
69 '''
70
71
72 html_re = re.compile ('(.*?)(?:[.]([^/.]*))?[.]html$')
73 pages_dict = {}
74
75 def build_pages_dict (filelist):
76     """Build dictionary of available translations of each page"""
77     global pages_dict
78     for f in filelist:
79         m = html_re.match (f)
80         if m:
81             g = m.groups()
82             if len (g) <= 1 or g[1] == None:
83                 e = ''
84             else:
85                 e = g[1]
86             if not g[0] in pages_dict:
87                 pages_dict[g[0]] = [e]
88             else:
89                 pages_dict[g[0]].append (e)
90
91 def source_links_replace (m, source_val):
92     return 'href="' + os.path.join (source_val, m.group (1)) + '"'
93
94 splitted_docs_re = re.compile ('(input/lsr/out-www/lilypond-snippets|Documentation/user/out-www/(lilypond|music-glossary|lilypond-program|lilypond-learning))/')
95
96 snippets_ref_re = re.compile (r'href="(\.\./)?lilypond-snippets')
97 user_ref_re = re.compile (r'href="(?:\.\./)?lilypond(-internals|-learning|-program|(?!-snippets))')
98
99 ## Windows does not support symlinks.
100 # This function avoids creating symlinks for splitted HTML manuals
101 # Get rid of symlinks in GNUmakefile.in (local-WWW-post)
102 # this also fixes missing PNGs only present in translated docs
103 def hack_urls (s, prefix):
104     if splitted_docs_re.match (prefix):
105         s = re.sub ('(href|src)="(../lily-.*?|.*?[.]png)"', '\\1="../\\2"', s)
106
107     # fix xrefs between documents in different directories ad hoc
108     if 'user/out-www/lilypond' in prefix:
109         s = snippets_ref_re.sub ('href="source/input/lsr/lilypond-snippets', s)
110     elif 'input/lsr' in prefix:
111         s = user_ref_re.sub ('href="source/Documentation/user/lilypond\\1', s)
112
113     source_path = os.path.join (os.path.dirname (prefix), 'source')
114     if not os.path.islink (source_path):
115         return s
116     source_val = os.readlink (source_path)
117     return re.sub ('href="source/(.*?)"', lambda m: source_links_replace (m, source_val), s)
118
119 body_tag_re = re.compile ('(?i)<body([^>]*)>')
120 html_tag_re = re.compile ('(?i)<html>')
121 doctype_re = re.compile ('(?i)<!DOCTYPE')
122 doctype = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\n'
123
124 def add_header (s):
125     """Add header (<body> and doctype)"""
126     if header_tag_re.search (s) == None:
127         body = '<body bgcolor="white" text="black" \\1>'
128         (s, n) = body_tag_re.subn (body + header, s, 1)
129         if not n:
130             (s, n) = html_tag_re.subn ('<html>' + header, s, 1)
131             if not n:
132                 s = header + s
133
134         s = header_tag + '\n' + s
135
136         if doctype_re.search (s) == None:
137             s = doctype + s
138         return s
139
140 title_tag_re = re.compile ('.*?<title>(.*?)</title>', re.DOTALL)
141 AT_web_title_re = re.compile ('@WEB-TITLE@')
142
143 def add_title (s):
144     # urg
145     # maybe find first node?
146     fallback_web_title = '-- --'
147     m = title_tag_re.match (s)
148     if m:
149         fallback_web_title = m.group (1)
150     s = AT_web_title_re.sub (fallback_web_title, s)
151     return s
152
153 footer_insert_re = re.compile ('<!--\s*FOOTER\s*-->')
154 end_body_re = re.compile ('(?i)</body>')
155 end_html_re = re.compile ('(?i)</html>')
156
157 def add_footer (s, footer_text):
158     """add footer"""
159     (s, n) = footer_insert_re.subn (footer_text + '\n' + '<!-- FOOTER -->', s, 1)
160     if not n:
161         (s, n) = end_body_re.subn (footer_text + '\n' + '</body>', s, 1)
162     if not n:
163         (s, n) = end_html_re.subn (footer_text + '\n' + '</html>', s, 1)
164     if not n:
165         s += footer_text + '\n'
166     return s
167
168 def find_translations (prefix, lang_ext):
169     """find available translations of a page"""
170     available = []
171     missing = []
172     for l in langdefs.LANGUAGES:
173         e = l.webext
174         if lang_ext != e:
175             if e in pages_dict[prefix]:
176                 available.append (l)
177             elif lang_ext == '' and l.enabled and reduce (operator.and_, [not prefix.startswith (s) for s in non_copied_pages]):
178                 # English version of missing translated pages will be written
179                 missing.append (e)
180     return available, missing
181
182 online_links_re = re.compile ('''(href|src)=[\'"]([^/][.]*[^.:\'"]*)(.html|.png)(#[^"\']*|)[\'"]''')
183 offline_links_re = re.compile ('''href=[\'"]([^/][.]*[^.:\'"]*)(.html)(#[^"\']*|)[\'"]''')
184
185 def process_links (s, prefix, lang_ext, file_name, missing, target):
186     page_flavors = {}
187     if target == 'online':
188         # Strip .html, .png suffix for auto language selection (content
189         # negotiation).  The menu must keep the full extension, so do
190         # this before adding the menu.
191         page_flavors[file_name] = \
192             [lang_ext, online_links_re.sub ('\\1="\\2\\4"', s)]
193     elif target == 'offline':
194         # in LANG doc index: don't rewrite .html suffixes
195         # as not all .LANG.html pages exist;
196         # the doc index should be translated and contain the right links
197         if prefix == 'Documentation/out-www/index':
198             page_flavors[file_name] = [lang_ext, s]
199         elif lang_ext == '':
200             page_flavors[file_name] = [lang_ext, s]
201             for e in missing:
202                 page_flavors[langdefs.lang_file_name (prefix, e, '.html')] = \
203                     [e, offline_links_re.sub ('href="\\1.' + e + '\\2\\3"', s)]
204         else:
205             page_flavors[file_name] = \
206                 [lang_ext,
207                  offline_links_re.sub ('href="\\1.' + lang_ext + '\\2\\3"', s)]
208     return page_flavors
209
210 def add_menu (page_flavors, prefix, available, target, translation):
211     for k in page_flavors:
212         language_menu = ''
213         languages = ''
214         if page_flavors[k][0] != '':
215             t = translation[page_flavors[k][0]]
216         else:
217             t = _doc
218         for lang in available:
219             lang_file = lang.file_name (os.path.basename (prefix), '.html')
220             if language_menu != '':
221                 language_menu += ', '
222             language_menu += '<a href="%s">%s</a>' % (lang_file, t (lang.name))
223         if target == 'offline':
224             browser_language = ''
225         elif target == 'online':
226             browser_language = t (browser_lang) % browser_language_url
227         if language_menu:
228             language_available = t (lang_available) % language_menu
229             languages = LANGUAGES_TEMPLATE % vars ()
230         # put language menu before '</body>' and '</html>' tags
231         page_flavors[k][1] = add_footer (page_flavors[k][1], languages)
232     return page_flavors
233
234
235 def add_html_footer (package_name = '',
236                      package_version = '',
237                      target = 'offline',
238                      name_filter = lambda s: s):
239     """Add header, footer to a number of HTML files
240
241     Arguments:
242      package_name=NAME         set package_name to NAME
243      package_version=VERSION   set package version to VERSION
244      targets=offline|online    set page processing depending on the target
245           offline is for reading HTML pages locally
246           online is for hosting the HTML pages on a website with content
247             negotiation
248      name_filter               a HTML file name filter
249     """
250     translation = langdefs.translation
251     localtime = time.strftime ('%c %Z', time.localtime (time.time ()))
252
253     if re.search ("http://", mail_address):
254         mail_address_url = mail_address
255     else:
256         mail_address_url= 'mailto:' + mail_address
257
258     versiontup = package_version.split ('.')
259     branch_str = _doc ('stable-branch')
260     if int (versiontup[1]) %  2:
261         branch_str = _doc ('development-branch')
262
263     for prefix, ext_list in pages_dict.items ():
264         for lang_ext in ext_list:
265             file_name = langdefs.lang_file_name (prefix, lang_ext, '.html')
266             in_f = open (file_name)
267             s = in_f.read()
268             in_f.close()
269
270             s = s.replace ('%', '%%')
271             s = hack_urls (s, prefix)
272             s = add_header (s)
273
274             ### add footer
275             if footer_tag_re.search (s) == None:
276                 s = add_footer (s, footer_tag + footer)
277                 
278                 available, missing = find_translations (prefix, lang_ext)
279                 page_flavors = process_links (s, prefix, lang_ext, file_name, missing, target)
280                 # Add menu after stripping: must not have autoselection for language menu.
281                 page_flavors = add_menu (page_flavors, prefix, available, target, translation)
282             for k in page_flavors:
283                 subst = dict ([i for i in globals().items() if type (i[1]) is str])
284                 subst.update (dict ([i for i in locals().items() if type (i[1]) is str]))
285                 if page_flavors[k][0] in translation:
286                     for name in subst:
287                         subst[name] = translation[page_flavors[k][0]] (subst[name])
288                 subst['footer_name_version'] = subst['footer_name_version'] % subst
289                 subst['footer_report_errors'] = subst['footer_report_errors'] % subst
290                 subst['footer_suggest_docs'] = subst['footer_suggest_docs'] % subst
291                 page_flavors[k][1] = page_flavors[k][1] % subst
292                 out_f = open (name_filter (k), 'w')
293                 out_f.write (page_flavors[k][1])
294                 out_f.close()
295         # if the page is translated, a .en.html symlink is necessary for content negotiation
296         if target == 'online' and ext_list != ['']:
297             os.symlink (os.path.basename (prefix) + '.html', name_filter (prefix + '.en.html'))