Skip to content

Commit d8769ce

Browse files
authored
Merge branch 'master' into esethna-air-gapped
2 parents 5e296cc + 5be939a commit d8769ce

File tree

64 files changed

+3585
-3350
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+3585
-3350
lines changed

extensions/sphinx_inline_tabs/events.py

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -87,25 +87,7 @@ def doctree_read(app: Sphinx, doctree: nodes.document):
8787
if len(app.env.tocs[app.env.docname][0]) == 1:
8888
app.env.tocs[app.env.docname][0].append(updated_tocs)
8989
else:
90-
# SAFE FIX: Check if the original structure has toctree nodes
91-
# If it does, leave it completely unchanged to preserve left navigation
92-
original_toc_item = app.env.tocs[app.env.docname][0][1]
93-
has_toctree = False
94-
95-
if hasattr(original_toc_item, 'children') and original_toc_item.children:
96-
for child in original_toc_item.children:
97-
if isinstance(child, addnodes.toctree):
98-
has_toctree = True
99-
break
100-
101-
if has_toctree:
102-
# SAFE APPROACH: For now, preserve left navigation completely
103-
# This means workflow-automation.rst won't get right-pane tab labels
104-
# but left navigation will work correctly
105-
pass # Keep original structure unchanged
106-
else:
107-
# Only apply tab modifications if no toctree nodes are present
108-
app.env.tocs[app.env.docname][0][1] = updated_tocs
90+
app.env.tocs[app.env.docname][0][1] = updated_tocs
10991

11092

11193
def html_page_context(

source/administration-guide/configure/config-proxy-apache2.rst

Lines changed: 0 additions & 58 deletions
This file was deleted.

0 commit comments

Comments
 (0)