Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
c759155
Update database connection pool defaults for MM-63726
lieut-data Jul 30, 2025
91147f9
Merge remote-tracking branch 'origin/master' into mm-63726-update-dat…
lieut-data Jul 31, 2025
92712a2
rst magic?
lieut-data Jul 31, 2025
2d24c39
more magic
lieut-data Jul 31, 2025
fdf7dfa
Merge branch 'master' into mm-63726-update-database-connection-defaults
lieut-data Aug 11, 2025
0761e82
Merge branch 'master' into mm-63726-update-database-connection-defaults
cwarnermm Aug 14, 2025
70df772
Merge branch 'master' into mm-63726-update-database-connection-defaults
lieut-data Aug 14, 2025
996b050
Update SAML encryption documentation for AES-256-GCM support (#8350)
cwarnermm Sep 10, 2025
1ed8c71
Add references to Azure Local (#8367)
nickmisasi Sep 10, 2025
bd50342
Update v10.5.11 dot release documentation (#8371)
amyblais Sep 10, 2025
1fa5e2e
Update docs for Desktop v5.13.1 release (#8356)
amyblais Sep 11, 2025
84bbe4f
Update deprecated-features.rst (#8358)
amyblais Sep 11, 2025
5875b45
Environmental config setting consistency (#8368)
cwarnermm Sep 11, 2025
c7051a0
Update faq-business.rst (#8376)
wiersgallak Sep 11, 2025
2ead319
Update v9.x releases to legacy status (#8360)
amyblais Sep 12, 2025
5abeabc
Update deprecated-features.rst (#8387)
amyblais Sep 12, 2025
f57db3f
Linked experimental config settings to feature label desc (#8388)
cwarnermm Sep 12, 2025
e0b0ab0
Removed v9 changlog, added redirect (#8389)
cwarnermm Sep 12, 2025
c0827c7
Moved client availability page to end user guide (#8390)
cwarnermm Sep 12, 2025
8762d5c
remove apache2 docs (#8391)
BenCookie95 Sep 15, 2025
3ec9942
Merge branch 'master' into mm-63726-update-database-connection-defaults
cwarnermm Sep 15, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 30 additions & 4 deletions extensions/sphinx_inline_tabs/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,36 @@ def doctree_read(app: Sphinx, doctree: nodes.document):
break

if has_toctree:
# SAFE APPROACH: For now, preserve left navigation completely
# This means workflow-automation.rst won't get right-pane tab labels
# but left navigation will work correctly
pass # Keep original structure unchanged
# Merge tab headings into the existing right-pane TOC while preserving
# the original toctree (left navigation) structure.
try:
# Find the bullet list in the original toc item (holds section entries)
original_bullets = None
for child in getattr(original_toc_item, "children", []) or []:
if isinstance(child, nodes.bullet_list):
original_bullets = child
break

# Find the bullet list produced by our updated tab-aware TOC
updated_bullets = None
for child in getattr(updated_tocs, "children", []) or []:
if isinstance(child, nodes.bullet_list):
updated_bullets = child
break

# If we have tab headings to merge
if updated_bullets is not None:
if original_bullets is None:
# No existing bullets: attach updated list directly
original_toc_item.append(updated_bullets)
else:
# Append each new tab heading item to existing bullets
for li in list(updated_bullets.children):
original_bullets.append(li)
except Exception as e:
logger.warning(
f"{LOG_PREFIX} doctree_read({app.env.docname}): failed merging tab headings into TOC: {e}"
)
else:
# Only apply tab modifications if no toctree nodes are present
app.env.tocs[app.env.docname][0][1] = updated_tocs
Expand Down
58 changes: 0 additions & 58 deletions source/administration-guide/configure/config-proxy-apache2.rst

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -392,17 +392,6 @@ The port used for streaming data between servers.
| This feature's ``config.json`` setting is ``"StreamingPort": ":8075"`` with string input. |
+-------------------------------------------------------------------------------------------+

Maximum idle database connections
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

*Deprecated. Not used in Mattermost v7.0 and later*

+--------------------------------------------------------+------------------------------------------------------------------+
| The maximum number of idle connections held open | - System Config path: **Environment > Database** |
| to the database. | - ``config.json`` setting: ``".SqlSettings.MaxIdleConns": 20,`` |
| | - Environment variable: ``MM_SQLSETTINGS_MAXIDLECONNS`` |
| Numerical input. Default is **20**. | |
+--------------------------------------------------------+------------------------------------------------------------------+

Maximum idle connections for high availability
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
Loading