Skip to content

Commit 7b0835a

Browse files
Merge branch 'master' into broken-links
2 parents f12bd6d + 10e48e9 commit 7b0835a

File tree

2 files changed

+13
-28
lines changed

2 files changed

+13
-28
lines changed

_templates/footer.html

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

conf.py

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@
1111
# All configuration values have a default; values that are commented out
1212
# serve to show the default.
1313

14-
# pylint: disable=C0103,W0622
14+
# pylint: disable=C0103
1515

1616
import sys
1717
import os
1818
import importlib
19+
from datetime import datetime
1920

2021
# If extensions (or modules to document with autodoc) are in another directory,
2122
# add these directories to sys.path here. If the directory is relative to the
@@ -54,15 +55,15 @@
5455

5556
# The encoding of source files.
5657
#source_encoding = 'utf-8-sig'
57-
copyright = '© Copyright 1995-2024'
5858
author = 'Texas Instruments Incorporated'
59+
project_copyright = f"1995-{datetime.now().year} {author}, CC-BY-SA-4.0"
5960

6061
# The language for content autogenerated by Sphinx. Refer to documentation
6162
# for a list of supported languages.
6263
#
6364
# This is also used if you do content translation via gettext catalogs.
6465
# Usually you set "language" from the command line for these cases.
65-
language = None
66+
language = 'en'
6667

6768
# There are two options for replacing |today|: either, you set today to some
6869
# non-false value, then it is used:
@@ -192,6 +193,15 @@
192193
# implements a search results scorer. If empty, the default will be used.
193194
html_search_scorer = ''
194195

196+
# Read the Docs specific parameters for the "Edit on GitHub" button
197+
html_context = {
198+
"display_github": True,
199+
"github_user": "texasinstruments",
200+
"github_repo": "processor-sdk-doc",
201+
"github_version": "master",
202+
"conf_py_path": "/source/",
203+
}
204+
195205
# -- Options for LaTeX output ---------------------------------------------
196206

197207
latex_elements = {

0 commit comments

Comments
 (0)