From 8d5dc92c5f8b7d58c6089dcd1d42e507bc0fa505 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 9 May 2023 18:39:20 -0500 Subject: [PATCH] Display page generation time in UTC --- doc/conf.py | 10 +++------- doc/src/epilog.inc.m4 | 2 +- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 2374e94..9d7fd2c 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -14,7 +14,7 @@ # import sys # sys.path.insert(0, os.path.abspath('.')) import pathlib - +import time # -- Project information ----------------------------------------------------- @@ -74,9 +74,5 @@ html_copy_source = False # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] -# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, -# using the given strftime format. -# html_last_updated_fmt = '%Y-%m-%d %H:%M:%S%z' -# %z does not work in sphinx-build 2.2.1 -today_fmt = '%Y-%m-%d %H:%M:%S' - +# Set the today substitution to UTC time. +today = ' '.join([time.strftime('%Y-%m-%d %H:%M:%S', time.gmtime()), 'UTC']) diff --git a/doc/src/epilog.inc.m4 b/doc/src/epilog.inc.m4 index eca9966..fdf9f82 100644 --- a/doc/src/epilog.inc.m4 +++ b/doc/src/epilog.inc.m4 @@ -43,4 +43,4 @@ sdb_generated_rst()dnl .. The upload schema, which is not yet documented .. |Uploads| replace:: :ref:`Uploads ` -sdb_if_htmlout(*m4[Page generated on: |today|]m4*, *m4[]m4*) +sdb_if_htmlout(*m4[Page last updated: |today|]m4*, *m4[]m4*) -- 2.34.1