]> Shamusworld >> Repos - ardour-manual/blobdiff - build.py
Remove dependency on external http server for local viewing
[ardour-manual] / build.py
index 34698537b9c7941469449e69ae253138aa72aa81..dea075bcf0b5f08065603ad8c404bdddb52d817f 100755 (executable)
--- a/build.py
+++ b/build.py
@@ -15,17 +15,21 @@ import os
 import re
 import shutil
 import argparse
-
+import datetime
 
 # Global vars
 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
 cleanString = re.compile(r'[^a-zA-Z0-9 \._-]+')
@@ -319,7 +323,7 @@ def FixInternalLinks(links, content, title):
 # looking at currently
 #
 def BuildList(lst, fs, pagePos, cList):
-       content = '\n\n<ul>\n'
+       content = '<ul>\n'
 
        for i in range(len(lst)):
                curPos = lst[i]
@@ -327,7 +331,7 @@ def BuildList(lst, fs, pagePos, cList):
 
                active = ' class=active' if curPos == pagePos else ''
                menuTitle = fs[curPos]['menu_title'] if 'menu_title' in fs[curPos] else fs[curPos]['title']
-               content = content + '<li' + active + '><a href="/' + fs[curPos]['filename'] + '/">' + menuTitle + '</a></li>'
+               content = content + '\t<li' + active + '><a href="/' + fs[curPos]['filename'] + '/">' + menuTitle + '</a></li>\n'
 
                # If the current page is our page, and it has children, enumerate them
                if curPos == pagePos:
@@ -339,7 +343,7 @@ def BuildList(lst, fs, pagePos, cList):
                elif (pagePos > curPos) and (pagePos < nextPos):
                        content = content + BuildList(cList[curPos], fs, pagePos, cList)
 
-       content = content + '\n</ul>\n'
+       content = content + '</ul>\n'
 
        return content
 
@@ -349,7 +353,7 @@ def BuildList(lst, fs, pagePos, cList):
 #
 def BuildOnePageSidebar(fs):
 
-       content = '\n\n<ul class="toc" style="white-space:nowrap;">\n'
+       content = '\n\n<ul class="toc">\n'
        lvl = 0
        levelNums = [0]*3
 
@@ -373,7 +377,7 @@ def BuildOnePageSidebar(fs):
                        anchor = fs[i]['filename']
 
                while lvl < level:
-                       content = content + '<ul style="white-space:nowrap;">\n'
+                       content = content + '<ul class="toc">\n'
                        lvl = lvl + 1
                while lvl > level:
                        content = content + '</ul>\n'
@@ -395,7 +399,7 @@ def CreateLinkSidebar(fs, pos, childList):
        content = BuildList(FindTopLevelNodes(fs), fs, pos, childList)
        # Shove the TOC link and one file link at the top...
        active = ' class=active' if pos<0 else ''
-       content = content.replace('<ul>','<ul><li' + active + '><a href="/toc/">Table of Contents</a></li>\n',1)
+       content = content.replace('<ul>','<ul><li' + active + '><a href="/toc/">Table of Contents</a></li>',1)
 
        return content
 
@@ -616,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 -----
 
@@ -682,6 +689,8 @@ if not nopdf:
        # Create the PDF version of the documentation
        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)
@@ -691,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.')