From e10da3c368d4ea95e74f4770124bfbc03e478933 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Tue, 16 Mar 2021 13:42:36 -0700 Subject: [PATCH] Porting guide changes when adding a new ansible release * Add the ansible-4 porting guide to the index * Need to exclude the porting guide for ansible-4 from the core docs build --- docs/docsite/rst/porting_guides/porting_guides.rst | 1 + docs/docsite/sphinx_conf/core_conf.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/docsite/rst/porting_guides/porting_guides.rst b/docs/docsite/rst/porting_guides/porting_guides.rst index 7def1bee985..42020ebf4bf 100644 --- a/docs/docsite/rst/porting_guides/porting_guides.rst +++ b/docs/docsite/rst/porting_guides/porting_guides.rst @@ -10,6 +10,7 @@ This section lists porting guides that can help you in updating playbooks, plugi :maxdepth: 1 :glob: + porting_guide_4 porting_guide_3 porting_guide_2.10 porting_guide_2.9 diff --git a/docs/docsite/sphinx_conf/core_conf.py b/docs/docsite/sphinx_conf/core_conf.py index 709a3d5e019..b31dc49ce7e 100644 --- a/docs/docsite/sphinx_conf/core_conf.py +++ b/docs/docsite/sphinx_conf/core_conf.py @@ -99,7 +99,8 @@ exclude_patterns = [ 'scenario_guides', 'porting_guides/porting_guides.rst', 'porting_guides/porting_guide_2*', - 'porting_guides/porting_guide_3*', + 'porting_guides/porting_guide_3.rst', + 'porting_guides/porting_guide_4.rst', 'roadmap/index.rst', 'roadmap/ansible_roadmap_index.rst', 'roadmap/old_roadmap_index.rst',