https://github.com/python/cpython/commit/92a38e98740b244b0b0e79c8d03ea29422a66d0c commit: 92a38e98740b244b0b0e79c8d03ea29422a66d0c branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2024-06-07T10:42:37+03:00 summary:
[3.12] Add Plausible for docs metrics (GH-119977) (#120194) Co-authored-by: Hugo van Kemenade <[email protected]> Co-authored-by: Julien Palard <[email protected]> files: M Doc/conf.py M Doc/tools/templates/layout.html diff --git a/Doc/conf.py b/Doc/conf.py index e292bdd5003b97..e38476a0b70506 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -323,7 +323,8 @@ html_context = { "is_deployment_preview": os.getenv("READTHEDOCS_VERSION_TYPE") == "external", "repository_url": repository_url.removesuffix(".git") if repository_url else None, - "pr_id": os.getenv("READTHEDOCS_VERSION") + "pr_id": os.getenv("READTHEDOCS_VERSION"), + "enable_analytics": os.getenv("PYTHON_DOCS_ENABLE_ANALYTICS"), } # This 'Last updated on:' timestamp is inserted at the bottom of every page. diff --git a/Doc/tools/templates/layout.html b/Doc/tools/templates/layout.html index e931147813ae03..394ebee5f9e139 100644 --- a/Doc/tools/templates/layout.html +++ b/Doc/tools/templates/layout.html @@ -26,6 +26,9 @@ {% endblock %} {% block extrahead %} + {% if builder == "html" and enable_analytics %} + <script defer data-domain="docs.python.org" src="https://plausible.io/js/script.js"></script> + {% endif %} <link rel="canonical" href="https://docs.python.org/3/{{pagename}}.html" /> {% if builder != "htmlhelp" %} {% if pagename == 'whatsnew/changelog' and not embedded %} _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
