]> git.donarmstrong.com Git - lilypond.git/blobdiff - stepmake/bin/add-html-footer.py
release: 1.2.7
[lilypond.git] / stepmake / bin / add-html-footer.py
index e8a858a0c9b3fa6d065b0f257ca134be606bdbb4..1ab9987e84319aa2ee6b9a7694bb5ff2664a26a7 100644 (file)
 #!@PYTHON@
 
 """
-Print a nice footer.  add the top of the NEWS file (up to the ********)
+Print a nice footer.  add the top of the ChangeLog file (up to the ********)
 """
-
-program_name = 'add-html-footer'
-version = '0.1'
-
+import re
 import sys
 import os
-from string import *
+import time
+import string 
 import getopt
 import __main__
 
 fullname = "unknown"
-news_file = ''
-
+changelog_file = ''
 index_file=''
 banner_file = ''
-news_file=''
-news =''
-(options, files) = getopt.getopt(sys.argv[1:], 'hp:', ['help', 'news=', 'index=', 'package=']) 
+changelog_file=''
+changes =''
+package_version = ''
+
+mail_address = '(address unknown)'
+try:
+       mail_address= os.environ['MAILADDRESS']
+except KeyError:
+       pass
+
+
+webmaster= ''
+try:
+       webmaster= os.environ['WEBMASTER']
+except KeyError:
+       pass
+
+
+
+footer_fn = ''
+footer = r"""<hr>Please take me <a href=%s>back to the index</a>
+of %s
+<!-- package name %s>
+ <!-- webmaster fields. %s %s>
+"""
+
+builtstr = r"""<hr><font size=-1>
+This page was built from %s-%s by 
+<address><br>%s &lt<a href=mailto:%s>%s</a>&gt,  %s.</address><p></font>"""
+
+package_name = ''
+
+(options, files) = getopt.getopt(sys.argv[1:], 'c:hp:', [
+       'name=', 'footer=', 'version=',
+       'changelog=', 'help', 'news=', 'index=']) 
+
+def gulp_file(f):
+       try:
+                       i = open(f)
+                       i.seek (0, 2)
+                       n = i.tell ()
+                       i.seek (0,0)
+       except:
+                       sys.stderr.write ("can't open file: %s\n" % f)
+                       return ''
+       s = i.read (n)
+       if len (s) <= 0:
+                       sys.stderr.write ("gulped empty file: %s\n" % f)
+       i.close ()
+       return s
 
 def help ():
-    sys.stdout.write ("Usage: add-html-footer [OPTION]... HTML-FILE\n"
-                "Add a nice footer, add the top of the NEWS file (up to the ********)\n\n"
-                + "Options:\n"
-                + "  -h, --help             print this help\n"
-                + "  -p, --package=DIR      specify package\n"
-                     )
-    sys.exit (0)
+       sys.stdout.write (r"""Usage: add-html-footer [OPTION]... HTML-FILE
+Add a nice footer, add the top of the ChangLog file (up to the ********)
+Options:
+-h, --help                      print this help
+--version               package version
+--name                          package_name
+--footer                          footer file.
+""")
+       sys.exit (0)
 
 for opt in options:
-    o = opt[0]
-    a = opt[1]
-    if o == '--news':
-       news_file = a
-    elif o == '--index':
-       index_file = a
-    elif o == '-h' or o == '--help':
-       help ()
-    elif o == '-p' or o == '--package':
-       topdir = a
-
-sys.path.append (topdir + '/stepmake/bin')
-from packagepython import *
-package = Package (topdir)
-packager = Packager ()
-
+       o = opt[0]
+       a = opt[1]
+       if o == '--news' or o == '--changelog' or o == '-c':
+               changelog_file = a
+       elif o == '--index':
+               index_file = a
+       elif o == '--footer':
+               footer_fn = a
+       elif o == '--name':
+               package_name = a
+       elif o == '-h' or o == '--help':
+               help ()
+       elif o == '--version':
+               package_version = a
+       else:
+               raise 'unknown opt ', o
 def set_vars():
-    os.environ["CONFIGSUFFIX"] = 'www';
-    if os.name == 'nt':
-        import ntpwd
-        pw = ntpwd.getpwname(os.environ['USERNAME'])
-    else:
-        import pwd
-        pw = pwd.getpwuid (os.getuid());
-
-    __main__.fullname=pw[4]
+       os.environ["CONFIGSUFFIX"] = 'www';
+       if os.name == 'nt':
+               import ntpwd
+               pw = ntpwd.getpwname(os.environ['USERNAME'])
+       else:
+               import pwd
+               pw = pwd.getpwuid (os.getuid());
 
+       f =pw[4]
+       f = string.split (f, ',')[0]
+       __main__.fullname=f 
 set_vars ()
 
-backstr = '\n<hr>Please take me <a href=%s>back to the index</a>\n\
-of ' + package.Name + '\n'
-builtstr = '\n<hr><font size=-1>\n\
-This page was built  from ' + package.name + '-%s by <p>\n\
-<address><br>%s &lt<a href=mailto:%s>%s</a>&gt</address>\n\
-<p></font>' 
 
 def footstr(index):
-    s = backstr % index
-    s = s + builtstr % (version_tuple_to_str (package.version), fullname,
-                        packager.mail, packager.mail)
-    return s
+       ft = __main__.footer
+
+       if footer_fn:
+               try:
+                       ft = open (footer_fn).read ()
+               except:
+                       raise 'oops: ' , footer_fn
+
+
+       s = ft % (index, package_name, package_name, webmaster, webmaster)
+       s = s + builtstr % (package_name, package_version, fullname,
+                           mail_address, mail_address, 
+                           time.strftime ('%c %Z', time.localtime (time.time ())))
+       return s
 
 banner = footstr (index_file)
 banner_id = '<! banner_id >'
 
 
-if news_file:
-    news = gulp_file (news_file)
-    i = regex.search ('^\*\*', news)
-    news = news[:i]
-    
-def check_tag (tag, sub, s, bottom):
-    tag = lower (tag)
-    TAG = upper (tag)
-    s = regsub.sub (tag, TAG, s)
-    i = regex.search (TAG, s)
-    if i < 0:
-        if bottom:
-           s = s + sub + '\n'
+if changelog_file:
+       changes = gulp_file (changelog_file)
+       m = re.search ('^\*\*', changes)
+       if m:
+               changes = changes[:m.start (0)]
+
+
+
+def do_file (s):
+       if changelog_file:
+               s = re.sub ('top_of_ChangeLog', '<XMP>\n'+ changes  + '\n</XMP>\n', s)
+
+
+       if re.search (banner_id, s) == None:
+               s = banner_id + s
        else:
-           s = sub + '\n' + s
-    return s
-    
-for f in files:
-    s = gulp_file (f)
-
-    if news_file:
-       s = regsub.sub ('top_of_NEWS', '<XMP>\n'+ news  + '\n</XMP>\n', s)
-
-    s = check_tag ('<body', '', s, 0)
-    if regex.search ('<BODY', s) == -1:
-       s = '<BODY>\n' + s
-    s = regsub.sub ('<BODY>', '<BODY BGCOLOR=WHITE><FONT COLOR=BLACK>', s)
-    if regex.search (banner_id, s) == -1:
-       s = regsub.sub ('</body>', '</BODY>', s)
-       s = regsub.sub ('</BODY>', banner_id  + banner + '</BODY>', s)
-    else:
-       s = check_tag ('</body>', '</BODY>', s, 1)
-
-    title = '<HEAD><TITLE>' \
-       + package.Name + ' -- ' + os.path.basename (os.path.splitext(f)[0]) \
-       + '</TITLE></HEAD>'
-    s = check_tag ('<title>', title, s, 0)
-
-    s = check_tag ('<html>', '<HTML>', s, 0)
-    s = check_tag ('</html>', '</HTML>', s, 1)
-
-    #urg
-    if regex.search ('@COUNTER_REF@', s) != -1:
-       counter = ''
-       try:
-           counter = os.environ[package.NAME + '_COUNTERPATH']
-           counter = '<hr><img src="' + counter + '">\n'
-       except:
-           pass
-       s = regsub.gsub ('@COUNTER_REF@', counter, s)
+               return s
+
+       s = re.sub ('(?i)<body>', '<BODY BGCOLOR=WHITE><FONT COLOR=BLACK>', s)
+       # do title.
+       #s = check_tag ('<body', '', s, 0)
+       if re.search ('(?i)</body', s):
+               s = re.sub ('(?i)</body>', banner + '</BODY>', s)
+       elif re.search ('(?i)</html', s):               
+               s = re.sub ('(?i)</html>', banner + '</HTML>', s)
+       else:
+               s = s + banner
 
-    dump_file (f, s)
+       return s
+
+for f in files:
+       s = gulp_file (f)
+       s = do_file (s)
+       open (f, 'w').write (s)
+
+if 0:
+       title = '<HEAD><TITLE>' \
+               + package_name + ' -- ' + os.path.basename (os.path.splitext(f)[0]) \
+               + '</TITLE></HEAD>'
+       s = check_tag ('<title>', title, s, 0)
+
+       s = check_tag ('<html', '', s, 0)
+       if regex.search ('<HTML', s) == -1:
+               s = '<HTML>\n' + s
+       s = check_tag ('</html>', '</HTML>', s, 1)
+
+       dump_file (f, s)