This is an automated email from the ASF dual-hosted git repository. janc pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-documentation.git
commit 6872622d41f6ab3667a2a72ea735b60504d390e0 Author: Wojciech Pietraszewski <wojciech.pietraszew...@codecoup.pl> AuthorDate: Thu Aug 22 16:13:12 2024 +0200 docs/conf: Fix broken `slack_url` reference and set document language Fixes the broken `slack_url` reference that caused the Slack button in the footer to redirect to the home page. Specifies the document language as `en` in the Sphinx configuration. --- docs/conf.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 58bf1e1..7440819 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -72,7 +72,7 @@ release = u'latest' # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +language = 'en' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. @@ -186,4 +186,6 @@ edit_on_github_projects = { } edit_on_github_branch = 'master' -slack_url = 'https://join.slack.com/t/mynewt/shared_invite/enQtNjA1MTg0NzgyNzg3LTcyMmZiOGQzOGMxM2U4ODFmMTIwNjNmYTE5Y2UwYjQwZWIxNTE0MTUzY2JmMTEzOWFjYWZkNGM0YmM4MzAxNWQ' +html_context = { + 'slack_url': 'https://join.slack.com/t/mynewt/shared_invite/enQtNjA1MTg0NzgyNzg3LTcyMmZiOGQzOGMxM2U4ODFmMTIwNjNmYTE5Y2UwYjQwZWIxNTE0MTUzY2JmMTEzOWFjYWZkNGM0YmM4MzAxNWQ' +}