From 26553842b4182b8042e9c5075bca0881540ac8d8 Mon Sep 17 00:00:00 2001 From: Anastasia Alexadrova Date: Tue, 12 Mar 2024 09:15:39 +0100 Subject: [PATCH] DOCS-106 Added Osano cookies modified: config/sphinx-build/__pycache__/conf.cpython-37.pyc modified: config/sphinx-build/_static/_templates/theme/layout.html new file: config/sphinx-build/_static/osano.js modified: config/sphinx-build/conf-material/conf.py modified: config/sphinx-build/conf.py --- .../__pycache__/conf.cpython-37.pyc | Bin 1384 -> 1429 bytes .../_static/_templates/theme/layout.html | 10 ++++++++++ config/sphinx-build/_static/osano.js | 1 + config/sphinx-build/conf-material/conf.py | 2 ++ config/sphinx-build/conf.py | 4 +++- 5 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 config/sphinx-build/_static/osano.js diff --git a/config/sphinx-build/__pycache__/conf.cpython-37.pyc b/config/sphinx-build/__pycache__/conf.cpython-37.pyc index 4ad8af33bb5f89a4931ca2768af069651ce93eec..666cebdc00e40c462f6b3dd9ecfe9ac415ab23af 100644 GIT binary patch delta 118 zcmaFCHIQF`Y3*DUCIqF-jtZF_=M9dE%uwMw7{gjOrYw zRjkH(rh4X+6BzYas+d%ZCr@BBW36IVRxRFqlF^ls(HN*qd9o3+8C#XQk%1AIyE%h7 QijhqMXho64 + {% endblock %} {%- block relbar2 %} {% include "relbar2.html" %} {%- endblock %} +{%- block extrafooter %} +Cookie Preferences +{{ super() }} +{%- endblock %} + + +{# Adds Osano cookie module #} +{% set script_files = script_files + ["_static/osano.js"] %} + diff --git a/config/sphinx-build/_static/osano.js b/config/sphinx-build/_static/osano.js new file mode 100644 index 00000000..47d80be5 --- /dev/null +++ b/config/sphinx-build/_static/osano.js @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/config/sphinx-build/conf-material/conf.py b/config/sphinx-build/conf-material/conf.py index b4f9d387..f855692b 100644 --- a/config/sphinx-build/conf-material/conf.py +++ b/config/sphinx-build/conf-material/conf.py @@ -32,3 +32,5 @@ html_css_files = [ '../_static/css/material.css', ] + + diff --git a/config/sphinx-build/conf.py b/config/sphinx-build/conf.py index 203fe50d..56947138 100644 --- a/config/sphinx-build/conf.py +++ b/config/sphinx-build/conf.py @@ -41,7 +41,7 @@ master_doc = 'index' # General information about the project. project = u'Percona Toolkit' -copyright = u'2023, Percona LLC and/or its affiliates' +copyright = u'2024, Percona LLC and/or its affiliates' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -141,8 +141,10 @@ html_short_title = 'Percona Toolkit' # Path to custom css files. These will override the default css attribute if they exist html_css_files = [ '_static/css/material.css', + '_static/css/osano.css', ] + # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. #html_last_updated_fmt = '%b %d, %Y'