]> git.donarmstrong.com Git - lilypond.git/blob - stepmake/bin/add-html-footer.py
patch::: 1.5.14.jcn2
[lilypond.git] / stepmake / bin / add-html-footer.py
1 #!@PYTHON@
2
3 """
4 Print a nice footer.  add the top of the ChangeLog file (up to the ********)
5 """
6 import re
7 import sys
8 import os
9 import time
10 import string 
11 import getopt
12
13 gcos = "unknown"
14 index_url=''
15 top_url=''
16 changelog_file=''
17 package_name = ''
18 package_version = ''
19
20 mail_address = '(address unknown)'
21 try:
22         mail_address= os.environ['MAILADDRESS']
23 except KeyError:
24         pass
25
26 webmaster= mail_address
27 try:
28         webmaster= os.environ['WEBMASTER']
29 except KeyError:
30         pass
31
32 header_file = ''
33 footer_file = ''
34 default_header = r"""
35 """
36
37 default_footer = r"""<hr>Please take me <a href=@INDEX@>back to the index</a>
38 of @PACKAGE_NAME@
39 """
40
41 built = r"""<hr>
42 <p><font size="-1">
43 This page was built from @PACKAGE_NAME@-@PACKAGE_VERSION@ by<br>
44 </font>
45 <address><font size="-1">@GCOS@ &lt;<a href="mailto:%s">@MAILADDRESS@</a>&gt;,
46 @LOCALTIME@.</font></address>"""
47
48
49 def gulp_file (f):
50         try:
51                 i = open(f)
52                 i.seek (0, 2)
53                 n = i.tell ()
54                 i.seek (0,0)
55         except:
56                 sys.stderr.write ("can't open file: %s\n" % f)
57                 return ''
58         s = i.read (n)
59         if len (s) <= 0:
60                 sys.stderr.write ("gulped empty file: %s\n" % f)
61         i.close ()
62         return s
63
64 def help ():
65         sys.stdout.write (r"""Usage: add-html-footer [OPTION]... HTML-FILE
66 Add header, footer and top of ChangLog file (up to the ********) to HTML-FILE
67
68 Options:
69   --changelog=FILE          use FILE as ChangeLog [ChangeLog]
70   --footer=FILE             use FILE as footer
71   --header=FILE             use FILE as header
72   -h, --help                print this help
73   --index=URL               set homepage to URL
74   --name=NAME               set package_name to NAME
75   --version=VERSION         set package version to VERSION
76 """)
77         sys.exit (0)
78
79 (options, files) = getopt.getopt(sys.argv[1:], 'h', [
80         'changelog=', 'footer=', 'header=', 'help', 'index=',
81         'name=', 'version=']) 
82
83 for opt in options:
84         o = opt[0]
85         a = opt[1]
86         if o == '--changelog':
87                 changelog_file = a
88         elif o == '--footer':
89                 footer_file = a
90         elif o == '--header':
91                 header_file = a
92         elif o == '-h' or o == '--help':
93                 help ()
94         # urg, this is top!
95         elif o == '--index':
96                 index_url = a
97         elif o == '--name':
98                 package_name = a
99         elif o == '--version':
100                 package_version = a
101         else:
102                 raise 'unknown opt ', o
103
104 #burp?
105 def set_gcos ():
106         global gcos
107         os.environ["CONFIGSUFFIX"] = 'www';
108         if os.name == 'nt':
109                 import ntpwd
110                 pw = ntpwd.getpwname(os.environ['USERNAME'])
111         else:
112                 import pwd
113                 if os.environ.has_key('FAKEROOTKEY'):
114                         pw = pwd.getpwnam (os.environ['LOGNAME'])
115                 else:
116                         pw = pwd.getpwuid (os.getuid())
117
118         f = pw[4]
119         f = string.split (f, ',')[0]
120         gcos = f 
121
122 def compose (default, file):
123         s = default
124         if file:
125                 s = gulp_file (file)
126         return s
127
128 set_gcos ()
129 localtime = time.strftime ('%c %Z', time.localtime (time.time ()))
130
131 if os.path.basename (index_url) != "index.html":
132         index_url = os.path.join (index_url , "index.html")
133 top_url = os.path.dirname (index_url) + "/"
134
135 header = compose (default_header, header_file)
136 footer = compose (default_footer, footer_file) + built
137 header_tag = '<!-- header_tag -->'
138 footer_tag = '<!-- footer_tag -->'
139
140 # Python < 1.5.2 compatibility
141 #
142 # On most platforms, this is equivalent to
143 #`normpath(join(os.getcwd()), PATH)'.  *Added in Python version 1.5.2*
144 if os.path.__dict__.has_key ('abspath'):
145         abspath = os.path.abspath
146 else:
147         def abspath (path):
148                 return os.path.normpath (os.path.join (os.getcwd (), path))
149
150
151 def remove_self_ref (s):        
152         self_url = abspath (os.getcwd () + '/' + f)
153         #sys.stderr.write ('url0: %s\n' % self_url)
154
155         # self_url = re.sub ('.*?' + string.lower (package_name) + '[^/]*/',
156         #                '', self_url)
157         # URG - this only works when source tree is unpacked in `src/' dir
158         # For some reason, .*? still eats away
159         #     /home/fred/usr/src/lilypond-1.5.14/Documentation/user/out-www/lilypond/
160         # instead of just
161         #
162         #     /home/fred/usr/src/lilypond-1.5.14/
163         #
164         #     Tutorial.html
165         self_url = re.sub ('.*?src/' + string.lower (package_name) + '[^/]*/',
166                          '', self_url)
167
168         #sys.stderr.write ('url1: %s\n' % self_url)
169         
170         #urg, ugly lily-specific toplevel index hack
171         self_url = re.sub ('.*topdocs/out-www/index.html', 'index.html', self_url)
172         #sys.stderr.write ('url2: %s\n' % self_url)
173
174         m = re.match ('.*?(<a href="[\./]*' + self_url + '#?[^"]*">)([^<]*)(</a>)',
175                       s, re.DOTALL)
176         while m:
177                 #sys.stderr.write ('self: %s\n' % m.group (2))
178                 s = s[:m.start (1)] + m.group (2) + s[m.end (3):]
179                 m = re.match ('.*?(<a href="[\./]*' + self_url + '#?[^"]*">)([^<]*)(</a>)',
180                               s, re.DOTALL)
181         return s
182
183 def do_file (f):
184         s = gulp_file (f)
185
186         if changelog_file:
187                 changes = gulp_file (changelog_file)
188                 # urg?
189                 #m = re.search ('^\\\\*\\\\*', changes)
190                 m = re.search (r'\*\*\*', changes)
191                 if m:
192                         changes = changes[:m.start (0)]
193                 s = re.sub ('top_of_ChangeLog', '<pre>\n'+ changes  + '\n</pre>\n', s)
194
195         if re.search (header_tag, s) == None:
196                 body = '<BODY BGCOLOR=WHITE TEXT=BLACK>'
197                 s = re.sub ('(?i)<body>', body, s)
198                 if re.search ('(?i)<BODY', s):
199                         s = re.sub ('(?i)<body[^>]*>', body + header, s, 1)
200                 elif re.search ('(?i)<html', s):                
201                         s = re.sub ('(?i)<html>', '<HTML>' + header, s, 1)
202                 else:
203                         s = header + s
204
205                 s = header_tag + '\n' + s
206
207                 if re.search ('(?i)<!DOCTYPE', s) == None:
208                         doctype = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\n'
209                         s = doctype + s
210
211         if re.search (footer_tag, s) == None:
212                 s = s + footer_tag + '\n'
213
214                 if re.search ('(?i)</body', s):
215                         s = re.sub ('(?i)</body>', footer + '</BODY>', s, 1)
216                 elif re.search ('(?i)</html', s):               
217                         s = re.sub ('(?i)</html>', footer + '</HTML>', s, 1)
218                 else:
219                         s = s + footer
220
221         #URUGRGOUSNGUOUNRIU
222         index = index_url
223         top = top_url
224         if os.path.basename (f) == "index.html":
225                 cwd = os.getcwd ()
226                 if os.path.basename (cwd) == "topdocs":
227                         index = "index.html"
228                         top = ""
229
230                 # don't cause ///////index.html entries in log files.
231                 #       index = "./index.html"
232                 #       top = "./"
233
234         s = re.sub ('@INDEX@', index, s)
235         s = re.sub ('@TOP@', top, s)
236         s = re.sub ('@PACKAGE_NAME@', package_name, s)
237         s = re.sub ('@PACKAGE_VERSION@', package_version, s)
238         s = re.sub ('@WEBMASTER@', webmaster, s)
239         s = re.sub ('@GCOS@', gcos, s)
240         s = re.sub ('@LOCALTIME@', localtime, s)
241         s = re.sub ('@MAIL_ADDRESS@', mail_address, s)
242
243         m = re.match ('.*?<!-- (@[a-zA-Z0-9_-]*@)=(.*?) -->', s, re.DOTALL)
244         while m:
245                 at_var = m.group (1)
246                 at_val = m.group (2)
247                 #sys.stderr.write ('at: %s -> %s\n' % (at_var, at_val))
248                 s = re.sub (at_var, at_val, s)
249                 m = re.match ('.*?<!-- (@[a-zA-Z0-9_-]*@)=(.*?) -->', s, re.DOTALL)
250
251         # urg
252         # maybe find first node?
253         fallback_web_title = '-- --'
254         m = re.match ('.*?<title>\(.*?\)</title>', s, re.DOTALL)
255         if m:
256                 fallback_web_title = m.group (1)
257         s = re.sub ('@WEB-TITLE@', fallback_web_title, s)
258         
259         s = remove_self_ref (s)
260
261         open (f, 'w').write (s)
262
263
264 for f in files:
265         do_file (f)
266