]> Shamusworld >> Repos - ardour-manual/blobdiff - build.py
Added a 'pdf-exclude' property to master-doc.txt, allowing a page not to be included...
[ardour-manual] / build.py
index 76eee46fbd6a116cc25ac911e5c54ceed1c1bf86..19cf37b984c9c7634f4273d151f94b478e350cc9 100755 (executable)
--- a/build.py
+++ b/build.py
@@ -21,12 +21,14 @@ import datetime
 global_bootstrap_path = '/bootstrap-3.3.7'
 global_page_title = 'The Ardour Manual'
 global_site_dir = './website/'
+global_manual_url = 'http://manual.ardour.org'
 global_githuburl = 'https://github.com/Ardour/manual/edit/master/include/'
 global_screen_template = 'page-template.html'
 global_onepage_template = 'onepage-template.html'
 global_pdf_template = 'pdf-template.html'
 global_master_doc = 'master-doc.txt'
 from datetime import datetime
+global_today_iso = datetime.today().strftime('%Y-%m-%dT%H%M%S')
 global_today = datetime.today().strftime('%Y-%m-%d')
 
 # This matches all *non* letter/number, ' ', '.', '-', and '_' chars
@@ -618,7 +620,10 @@ for header in fileStruct:
        # Set up the actual page from the template
        onepage = onepage.replace('{{ content }}', oph + '\n' + opcontent + '\n{{ content }}')
        if not nopdf:
-               pdfpage = pdfpage.replace('{{ content }}', oph + '\n' + opcontent + '\n{{ content }}')
+               if not 'pdf-exclude' in header:
+                       pdfpage = pdfpage.replace('{{ content }}', oph + '\n' + opcontent + '\n{{ content }}')
+               else:
+                       pdfpage = pdfpage.replace('{{ content }}', oph + '\n' + 'Please refer to the <a href="' + global_manual_url + '/' + header['filename'] + '/">online manual</a>.\n{{ content }}')
 
        # ----- Normal version -----
 
@@ -685,6 +690,7 @@ if not nopdf:
        pdfpage = pdfpage.replace('{% tree %}', opsidebar) # create the TOC
        pdfpage = pdfpage.replace('{{ content }}', '') # cleans up the last spaceholder
        pdfpage = pdfpage.replace('{{ today }}', global_today)
+       pdfpage = pdfpage.replace('{{ today_iso }}', global_today_iso)
        pdfpage = pdfpage.replace('src="/images/', 'src="images/') # makes images links relative
        pdfpage = pdfpage.replace('url(\'/images/', 'url(\'images/') # CSS images links relative
        # Write it to disk (optional, can be removed)
@@ -694,10 +700,10 @@ if not nopdf:
 
        # Generating the actual PDF with weasyprint (https://weasyprint.org/)
        from weasyprint import HTML
-       #from weasyprint.fonts import FontConfiguration
-       #html_font_config = FontConfiguration()
+       from weasyprint.fonts import FontConfiguration
+       html_font_config = FontConfiguration()
        doc = HTML(string = pdfpage, base_url = global_site_dir)
-       doc.write_pdf(global_site_dir + 'manual.pdf')#, font_config = html_font_config)
+       doc.write_pdf(global_site_dir + 'manual.pdf', font_config = html_font_config)
 
 if not quiet:
        print('Processed ' + str(fileCount) + ' files.')