From: John Mandereau Date: Tue, 3 Jul 2007 22:15:51 +0000 (+0200) Subject: Add link to documentation suggestions in HTML docs footer X-Git-Tag: release/2.11.28-1~41 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=390ee59c266b2d2106a494aba800b698f8ef05ae;p=lilypond.git Add link to documentation suggestions in HTML docs footer --- diff --git a/buildscripts/add_html_footer.py b/buildscripts/add_html_footer.py index a80189550d..898d1a06e4 100644 --- a/buildscripts/add_html_footer.py +++ b/buildscripts/add_html_footer.py @@ -33,16 +33,20 @@ footer = ''' %(footer_name_version)s
+
+%(footer_report_errors)s
+
+%(footer_suggest_docs)s
-
-%(footer_report_errors)s

''' footer_name_version = _doc ('This page is for %(package_name)s-%(package_version)s (%(branch_str)s).') footer_report_errors = _doc ('Report errors to %(mail_address)s.') +footer_suggest_docs = _doc ('Your suggestions for the documentation are welcome.') mail_address = 'http://post.gmane.org/post.php?group=gmane.comp.gnu.lilypond.bugs' +suggest_docs_url = 'http://lilypond.org/web/devel/participating/documentation-adding' header_tag = '' footer_tag = '' @@ -276,6 +280,7 @@ def add_html_footer (translation, subst[name] = translation[page_flavors[k][0]] (subst[name]) subst['footer_name_version'] = subst['footer_name_version'] % subst subst['footer_report_errors'] = subst['footer_report_errors'] % subst + subst['footer_suggest_docs'] = subst['footer_suggest_docs'] % subst page_flavors[k][1] = page_flavors[k][1] % subst out_f = open (name_filter (k), 'w') out_f.write (page_flavors[k][1])