diff --git a/build/pkgs/configure/checksums.ini b/build/pkgs/configure/checksums.ini index 3ab3b15c533..f0b536dc5a5 100644 --- a/build/pkgs/configure/checksums.ini +++ b/build/pkgs/configure/checksums.ini @@ -1,3 +1,3 @@ tarball=configure-VERSION.tar.gz -sha1=8164bb387998beb2257d3e09f10697195e958860 -sha256=981eb6316a4ff9179b0eb7242e23f4cb39e00372d2aa855efde6885e599e26e8 +sha1=073570a8a0e80b27e70904471703583b24e59233 +sha256=69d0ccc374f0f7e536c2ecabfdbb433615b771e9eb41456f75092f14ae52e1d7 diff --git a/build/pkgs/configure/package-version.txt b/build/pkgs/configure/package-version.txt index 7da33645e59..30775debbbc 100644 --- a/build/pkgs/configure/package-version.txt +++ b/build/pkgs/configure/package-version.txt @@ -1 +1 @@ -fb2b8c823bcc3f168c1e6e467f254557fa714db9 +cbb8c24a5789cc48cb3a7c567d34903afd473970 diff --git a/src/doc/common/static/jupyter-sphinx-furo.js b/src/doc/common/static/jupyter-sphinx-furo.js index 01839aa4e99..a43a7c8b122 100644 --- a/src/doc/common/static/jupyter-sphinx-furo.js +++ b/src/doc/common/static/jupyter-sphinx-furo.js @@ -45,7 +45,7 @@ function handlePrefersColorSchemeChange(e) { prefersDarkMode.addEventListener('change', handlePrefersColorSchemeChange); -// Change the editor theme of a new CodeMirror cell. +// Change the editor theme of a new CodeMirror cell const callback = function(mutationsList, observer) { for(const mutation of mutationsList) { if (mutation.type === 'childList') { @@ -113,7 +113,8 @@ thebelab.on("status", function (evt, data) { } }); -// Activate Thebe when "Sage (live)" tab is clicked + +// Activate Thebe when "Sage Live" tab is clicked document.querySelectorAll('input[class="tab-input"]').forEach((elem) => { elem.addEventListener("click", function(event) { if (elem.nextElementSibling) { diff --git a/src/sage_docbuild/conf.py b/src/sage_docbuild/conf.py index 4a29787aa46..cab1bb46dea 100644 --- a/src/sage_docbuild/conf.py +++ b/src/sage_docbuild/conf.py @@ -399,7 +399,7 @@ def linkcode_resolve(domain, info): anchor = f'#L{lineno}' else: anchor = '' - return f"{source_repository}blob/{version}/src/{filename}{anchor}" + return f"{source_repository}blob/develop/src/{filename}{anchor}" return None @@ -680,7 +680,7 @@ def add_page_context(app, pagename, templatename, context, doctree): # https://pradyunsg.me/furo/customisation/edit-button/#adding-an-edit-button # This works well if the source file is '.rst' file. But the '.rst' # files in the directory 'sage/' are generated by the Sphinx - # autodoc from the Python or Cython source files. Hence we teak + # autodoc from the Python or Cython source files. Hence we tweak # here template context variables so that links to the correct # source files are generated. suffix = '.py' if importlib.import_module(pagename.replace('/','.')).__file__.endswith('.py') else '.pyx'