diff --git a/python/packages/autogen-core/docs/src/_static/override-switcher-button.js b/python/packages/autogen-core/docs/src/_static/override-switcher-button.js deleted file mode 100644 index 3d74310b6..000000000 --- a/python/packages/autogen-core/docs/src/_static/override-switcher-button.js +++ /dev/null @@ -1,43 +0,0 @@ -// When body is ready -document.addEventListener('DOMContentLoaded', async function() { - - const styles = ` - #bd-header-version-warning { - display: none !important; - } - `; - - // Fetch version list - // https://raw.githubusercontent.com/microsoft/autogen/refs/heads/main/docs/switcher.json - const response = await fetch('https://raw.githubusercontent.com/microsoft/autogen/refs/heads/main/docs/switcher.json'); - const data = await response.json(); - - // Find the entry where preferred is true - const preferred = data.find(entry => entry.preferred); - if (preferred) { - // Get current rendered version - const currentVersion = DOCUMENTATION_OPTIONS.VERSION; - const urlVersionPath = DOCUMENTATION_OPTIONS.theme_switcher_version_match; - // The version compare library seems to not like the dev suffix without - so we're going to do an exact match and hide the banner if so - // For the "dev" version which is always latest we don't want to consider hiding the banner - if ((currentVersion === preferred.version) && (urlVersionPath !== "dev")) { - // Hide the banner with id bd-header-version-warning - const styleSheet = document.createElement("style"); - styleSheet.textContent = styles; - document.head.appendChild(styleSheet); - return; - } - } - - // TODO: Please find a better way to override the button text... - setTimeout(async function() { - // Get the button with class "pst-button-link-to-stable-version". There is only one. - var button = document.querySelector('.pst-button-link-to-stable-version'); - if (!button) { - // If the button is not found, return. - return; - } - // Set the button's text to "Switch to latest dev release" - button.textContent = "Switch to latest dev release"; - }, 500); -}); diff --git a/python/packages/autogen-core/docs/src/conf.py b/python/packages/autogen-core/docs/src/conf.py index 3b5181fc6..7aa75ebd1 100644 --- a/python/packages/autogen-core/docs/src/conf.py +++ b/python/packages/autogen-core/docs/src/conf.py @@ -131,7 +131,7 @@ html_theme_options = { ] } -html_js_files = ["custom-icon.js", "override-switcher-button.js"] +html_js_files = ["custom-icon.js"] html_sidebars = { "packages/index": [], "user-guide/core-user-guide/**": ["sidebar-nav-bs-core"],