From: Han-Wen Nienhuys Date: Mon, 13 Mar 2006 00:42:28 +0000 (+0000) Subject: (mail_address_url): don't add X-Git-Tag: release/2.7.39~22 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b07ef7805ea536741e20c3d1b8fc1bc463a844ba;p=lilypond.git (mail_address_url): don't add mailto: to http:// --- diff --git a/ChangeLog b/ChangeLog index 7086ace430..ac6cbf93a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2006-03-13 Han-Wen Nienhuys + * stepmake/bin/add-html-footer.py (mail_address_url): don't add + mailto: to http:// + * python/lilylib.py (print_environment): move ps_page_count to lilypond-book.py 2006-03-12 Han-Wen Nienhuys diff --git a/THANKS b/THANKS index 52db802432..2e20df43f9 100644 --- a/THANKS +++ b/THANKS @@ -70,6 +70,7 @@ Eduardo Vieira Ernesto Gancedo François Vion Frédéric Bron +Gianluca D. Hans Forbrich Hoang Nguyen Joe Neeman diff --git a/stepmake/bin/add-html-footer.py b/stepmake/bin/add-html-footer.py index 314499433b..d406d3719a 100644 --- a/stepmake/bin/add-html-footer.py +++ b/stepmake/bin/add-html-footer.py @@ -23,6 +23,10 @@ try: except KeyError: pass +mail_address_url= 'mailto:' + mail_address +if re.search ("http://", mail_address): + mail_address_url = mail_address + webmaster= mail_address try: webmaster= os.environ['WEBMASTER'] @@ -51,7 +55,7 @@ built = r""" This page is for %(package_name)s-%(package_version)s (%(branch_str)s).
-Report errors to <%(mail_address)s>.
+Report errors to <%(mail_address)s>.