From bbdbb9cb41d9b146d36902999913904c7c363cd8 Mon Sep 17 00:00:00 2001 From: Ed Ward Date: Thu, 1 Aug 2019 14:21:10 +0200 Subject: [PATCH] Added the generation date to the PDF --- build.py | 13 ++++++++----- pdf-template.html | 1 + source/css/pdf.css | 5 +++++ 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/build.py b/build.py index 3469853..76eee46 100755 --- a/build.py +++ b/build.py @@ -15,7 +15,7 @@ import os import re import shutil import argparse - +import datetime # Global vars global_bootstrap_path = '/bootstrap-3.3.7' @@ -26,6 +26,8 @@ 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 = datetime.today().strftime('%Y-%m-%d') # This matches all *non* letter/number, ' ', '.', '-', and '_' chars cleanString = re.compile(r'[^a-zA-Z0-9 \._-]+') @@ -319,7 +321,7 @@ def FixInternalLinks(links, content, title): # looking at currently # def BuildList(lst, fs, pagePos, cList): - content = '\n\n\n' return content @@ -395,7 +397,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('