From 63f41dd8b2f32e23c2dad5df4b0f8fee161b416a Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Tue, 6 Nov 2018 08:50:02 -0500 Subject: [PATCH] only write the candidate list page when the election is in progress This is a partial fix for the fact that the candidate list does not appear in any toctree. It disables generating the list page so that outside of election season (like now) we can enable the sphinx flag to treat warnings as errors. Change-Id: Icc308470b660a7336efe5f648ac28233efadad80 Signed-off-by: Doug Hellmann --- doc/source/_exts/candidates.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/doc/source/_exts/candidates.py b/doc/source/_exts/candidates.py index 2964a3f8..352c7285 100644 --- a/doc/source/_exts/candidates.py +++ b/doc/source/_exts/candidates.py @@ -96,12 +96,13 @@ def build_archive(serie, list_type): def build_lists(app): - # Current candidates - candidates_list = utils.build_candidates_list() - if not utils.is_tc_election(): - render_list("ptl", candidates_list) - else: - render_list("tc", candidates_list) + if utils.election_is_running(): + # Current candidates + candidates_list = utils.build_candidates_list() + if not utils.is_tc_election(): + render_list("ptl", candidates_list) + else: + render_list("tc", candidates_list) # Archived elections previous_toc = [