Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-sphinx-tabs for openSUSE:Factory checked in at 2023-12-21 23:38:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-sphinx-tabs (Old) and /work/SRC/openSUSE:Factory/.python-sphinx-tabs.new.1840 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sphinx-tabs" Thu Dec 21 23:38:52 2023 rev:7 rq:1134376 version:3.4.4 Changes: -------- --- /work/SRC/openSUSE:Factory/python-sphinx-tabs/python-sphinx-tabs.changes 2023-10-12 11:55:56.626996188 +0200 +++ /work/SRC/openSUSE:Factory/.python-sphinx-tabs.new.1840/python-sphinx-tabs.changes 2023-12-21 23:39:00.951418920 +0100 @@ -1,0 +2,15 @@ +Thu Dec 21 06:24:22 UTC 2023 - Steve Kowalik <steven.kowa...@suse.com> + +- Update to 3.4.4: + * Added + + Testing for Python 3.11 and 3.12 + * Removed + + Dependency on unsupported sphinx_testing package + * Fixed + + tests for sphinx 7.2 + + slice assignment in update_context(), which was removing JS scripts + from other sphinx extensions/themes on pages where tabs were not used +- Drop patches sphinx71.patch and sphinx72.patch, included upstream. +- Switch to pyproject macros. + +------------------------------------------------------------------- Old: ---- sphinx71.patch sphinx72.patch v3.4.1.tar.gz New: ---- v3.4.4.tar.gz BETA DEBUG BEGIN: Old: from other sphinx extensions/themes on pages where tabs were not used - Drop patches sphinx71.patch and sphinx72.patch, included upstream. - Switch to pyproject macros. Old: from other sphinx extensions/themes on pages where tabs were not used - Drop patches sphinx71.patch and sphinx72.patch, included upstream. - Switch to pyproject macros. BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-sphinx-tabs.spec ++++++ --- /var/tmp/diff_new_pack.8011j2/_old 2023-12-21 23:39:01.611443022 +0100 +++ /var/tmp/diff_new_pack.8011j2/_new 2023-12-21 23:39:01.611443022 +0100 @@ -31,21 +31,18 @@ %{?sle15_python_module_pythons} Name: python-sphinx-tabs -Version: 3.4.1 +Version: 3.4.4 Release: 0 Summary: Tabbed views for Sphinx License: MIT -Group: Development/Languages/Python URL: https://github.com/executablebooks/sphinx-tabs # Use the github tag instead of the pythonhosted.org to get the tests folder Source: https://github.com/executablebooks/sphinx-tabs/archive/refs/tags/v%{version}.tar.gz -# PATCH-FIX-UPSTREAM https://github.com/executablebooks/sphinx-tabs/commit/f60a10e13b3a6a8d1d27f285d9942b57ab07d0a8 Make the tests pass with Sphinx 7.1 -Patch1: sphinx71.patch -# PATCH-FIX-UPSTREAM https://github.com/executablebooks/sphinx-tabs/pull/179 Fix tests for Sphinx 7.2 -Patch2: sphinx72.patch BuildRequires: %{python_module Pygments} BuildRequires: %{python_module Sphinx} BuildRequires: %{python_module docutils} +BuildRequires: %{python_module pip} +BuildRequires: %{python_module wheel} BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: python-Pygments @@ -67,11 +64,11 @@ %autosetup -p1 -n sphinx-tabs-%{version} %build -%python_build +%pyproject_wheel %install %if !%{with test} -%python_install +%pyproject_install %python_expand %fdupes %{buildroot}%{$python_sitelib} %endif @@ -84,6 +81,6 @@ %if !%{with test} %files %{python_files} %{python_sitelib}/sphinx_tabs -%{python_sitelib}/sphinx_tabs-%{version}*-info +%{python_sitelib}/sphinx_tabs-%{version}.dist-info %endif ++++++ v3.4.1.tar.gz -> v3.4.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/.github/workflows/tests.yml new/sphinx-tabs-3.4.4/.github/workflows/tests.yml --- old/sphinx-tabs-3.4.1/.github/workflows/tests.yml 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/.github/workflows/tests.yml 2023-10-22 22:17:37.000000000 +0200 @@ -20,14 +20,15 @@ runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - name: Install dependencies run: | python -m pip install --upgrade pip diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/.readthedocs.yml new/sphinx-tabs-3.4.4/.readthedocs.yml --- old/sphinx-tabs-3.4.1/.readthedocs.yml 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/.readthedocs.yml 2023-10-22 22:17:37.000000000 +0200 @@ -1,7 +1,11 @@ version: 2 +build: + os: ubuntu-22.04 + tools: + python: "3" + python: - version: 3 install: - method: pip path: . diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/CHANGELOG.md new/sphinx-tabs-3.4.4/CHANGELOG.md --- old/sphinx-tabs-3.4.1/CHANGELOG.md 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/CHANGELOG.md 2023-10-22 22:17:37.000000000 +0200 @@ -1,6 +1,24 @@ # Change Log -## 3.4.1 - 2022-97-02 +## 3.4.2 - 2023-19-22 + +### Added +* Testing for Python 3.11 and 3.12 + +### Removed +* Dependency on unsupported sphinx_testing package + +## 3.4.2 - 2023-19-22 + +### Fixed + +* tests for sphinx 7.2 +* slice assignment in update_context(), which was removing JS scripts from other sphinx extensions/themes on pages where tabs were not used + +### Added +* Note in docs to clarify that include directive can't be used within a code-tab + +## 3.4.1 - 2022-07-02 ### Added diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/docs/index.rst new/sphinx-tabs-3.4.4/docs/index.rst --- old/sphinx-tabs-3.4.1/docs/index.rst 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/docs/index.rst 2023-10-22 22:17:37.000000000 +0200 @@ -385,3 +385,6 @@ } Code tabs support highlighting using `custom syntax highlighters <https://pygments.org/docs/lexerdevelopment/>`_ that have been loaded in the sphinx configuration. To use custom lexers, pass the lexers alias as the first argument of `code-tab`. + +.. note:: + Sphinx's `include` directive does not work inside `code-tab`. Use `tab` or `group-tab` instead. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/setup.py new/sphinx-tabs-3.4.4/setup.py --- old/sphinx-tabs-3.4.1/setup.py 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/setup.py 2023-10-22 22:17:37.000000000 +0200 @@ -33,7 +33,6 @@ "pytest-cov", "pytest-regressions", "pygments", - "sphinx_testing", "bs4", "rinohtype", ], diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/sphinx_tabs/__init__.py new/sphinx-tabs-3.4.4/sphinx_tabs/__init__.py --- old/sphinx-tabs-3.4.1/sphinx_tabs/__init__.py 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/sphinx_tabs/__init__.py 2023-10-22 22:17:37.000000000 +0200 @@ -1,3 +1 @@ -__version__ = "3.4.1" - -__import__("pkg_resources").declare_namespace(__name__) +__version__ = "3.4.4" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/sphinx_tabs/tabs.py new/sphinx-tabs-3.4.4/sphinx_tabs/tabs.py --- old/sphinx-tabs-3.4.1/sphinx_tabs/tabs.py 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/sphinx_tabs/tabs.py 2023-10-22 22:17:37.000000000 +0200 @@ -325,12 +325,12 @@ if not visitor.found_tabs_directive and not include_assets_in_all_pages: paths = [Path("_static") / f for f in FILES] if "css_files" in context: - context["css_files"] = context["css_files"][:] + context["css_files"][:] = context["css_files"] for path in paths: if path.suffix == ".css" and path in context["css_files"]: context["css_files"].remove(path.as_posix()) if "script_files" in context: - context["script_files"] = context["script_files"][:] + context["script_files"][:] = context["script_files"] for path in paths: if path.suffix == ".js" and path.as_posix() in context["script_files"]: context["script_files"].remove(path.as_posix()) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/conftest.py new/sphinx-tabs-3.4.4/tests/conftest.py --- old/sphinx-tabs-3.4.1/tests/conftest.py 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/conftest.py 2023-10-22 22:17:37.000000000 +0200 @@ -2,7 +2,7 @@ import pytest from pathlib import Path from bs4 import BeautifulSoup -from sphinx.testing.path import path +import sphinx from sphinx_tabs.tabs import FILES @@ -18,7 +18,7 @@ @pytest.fixture(scope="session") def rootdir(): """Pytest uses this to find test documents.""" - return path(__file__).parent.abspath() / "roots" + return Path(__file__).parent.absolute() / "roots" @pytest.fixture(autouse=True) @@ -116,13 +116,18 @@ extension = ".xml" # convert absolute filenames - for node in doctree.traverse(lambda n: "source" in n): + for node in doctree.findall(lambda n: "source" in n): node["source"] = Path(node["source"]).name if regress: text = doctree.pformat() # type: str for find, rep in (replace or {}).items(): text = text.replace(find, rep) + if sphinx.version_info < (7, 1): + text = text.replace( + '<document source="index.rst">', + "<document source=\"index.rst\" translation_progress=\"{'total': 0, 'translated': 0}\">", + ) file_regression.check(text, extension=extension) return doctree diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_basic.xml new/sphinx-tabs-3.4.4/tests/test_build/test_basic.xml --- old/sphinx-tabs-3.4.1/tests/test_build/test_basic.xml 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_basic.xml 2023-10-22 22:17:37.000000000 +0200 @@ -1,4 +1,4 @@ -<document source="index.rst"> +<document source="index.rst" translation_progress="{'total': 0, 'translated': 0}"> <container classes="sphinx-tabs" type="tab-element"> <div aria-label="Tabbed content" classes="closeable" role="tablist"> <button aria-controls="panel-0-0-0" aria-selected="true" classes="sphinx-tabs-tab" ids="tab-0-0-0" name="0-0" role="tab" tabindex="0"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_html_assets_policy_index_.html new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_html_assets_policy_index_.html --- old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_html_assets_policy_index_.html 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_html_assets_policy_index_.html 2023-10-22 22:17:37.000000000 +0200 @@ -18,7 +18,7 @@ <section id="fruits"> <h1> Fruits - <a class="headerlink" href="#fruits" title="Permalink to this heading"> + <a class="headerlink" href="#fruits" title="Link to this heading"> ¶ </a> </h1> @@ -54,7 +54,7 @@ <section id="luminaries"> <h1> Luminaries - <a class="headerlink" href="#luminaries" title="Permalink to this heading"> + <a class="headerlink" href="#luminaries" title="Link to this heading"> ¶ </a> </h1> @@ -82,7 +82,7 @@ <section id="code-tabs"> <h1> Code Tabs - <a class="headerlink" href="#code-tabs" title="Permalink to this heading"> + <a class="headerlink" href="#code-tabs" title="Link to this heading"> ¶ </a> </h1> @@ -182,7 +182,7 @@ <section id="group-tabs"> <h1> Group Tabs - <a class="headerlink" href="#group-tabs" title="Permalink to this heading"> + <a class="headerlink" href="#group-tabs" title="Link to this heading"> ¶ </a> </h1> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_html_assets_policy_index_.xml new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_html_assets_policy_index_.xml --- old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_html_assets_policy_index_.xml 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_html_assets_policy_index_.xml 2023-10-22 22:17:37.000000000 +0200 @@ -1,4 +1,4 @@ -<document source="index.rst"> +<document source="index.rst" translation_progress="{'total': 0, 'translated': 0}"> <compound classes="toctree-wrapper"> <toctree caption="True" entries="(None,\ 'no_tabs1') (None,\ 'no_tabs2')" glob="False" hidden="False" includefiles="no_tabs1 no_tabs2" includehidden="False" maxdepth="-1" numbered="0" parent="index" rawentries="" titlesonly="False"> <section ids="fruits" names="fruits"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs1_.html new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs1_.html --- old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs1_.html 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs1_.html 2023-10-22 22:17:37.000000000 +0200 @@ -18,7 +18,7 @@ <section id="fruits"> <h1> Fruits - <a class="headerlink" href="#fruits" title="Permalink to this heading"> + <a class="headerlink" href="#fruits" title="Link to this heading"> ¶ </a> </h1> @@ -54,7 +54,7 @@ <section id="luminaries"> <h1> Luminaries - <a class="headerlink" href="#luminaries" title="Permalink to this heading"> + <a class="headerlink" href="#luminaries" title="Link to this heading"> ¶ </a> </h1> @@ -82,7 +82,7 @@ <section id="code-tabs"> <h1> Code Tabs - <a class="headerlink" href="#code-tabs" title="Permalink to this heading"> + <a class="headerlink" href="#code-tabs" title="Link to this heading"> ¶ </a> </h1> @@ -182,7 +182,7 @@ <section id="group-tabs"> <h1> Group Tabs - <a class="headerlink" href="#group-tabs" title="Permalink to this heading"> + <a class="headerlink" href="#group-tabs" title="Link to this heading"> ¶ </a> </h1> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs1_.xml new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs1_.xml --- old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs1_.xml 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs1_.xml 2023-10-22 22:17:37.000000000 +0200 @@ -1,4 +1,4 @@ -<document source="index.rst"> +<document source="index.rst" translation_progress="{'total': 0, 'translated': 0}"> <compound classes="toctree-wrapper"> <toctree caption="True" entries="(None,\ 'no_tabs1') (None,\ 'no_tabs2')" glob="False" hidden="False" includefiles="no_tabs1 no_tabs2" includehidden="False" maxdepth="-1" numbered="0" parent="index" rawentries="" titlesonly="False"> <section ids="fruits" names="fruits"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs2_.html new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs2_.html --- old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs2_.html 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs2_.html 2023-10-22 22:17:37.000000000 +0200 @@ -18,7 +18,7 @@ <section id="fruits"> <h1> Fruits - <a class="headerlink" href="#fruits" title="Permalink to this heading"> + <a class="headerlink" href="#fruits" title="Link to this heading"> ¶ </a> </h1> @@ -54,7 +54,7 @@ <section id="luminaries"> <h1> Luminaries - <a class="headerlink" href="#luminaries" title="Permalink to this heading"> + <a class="headerlink" href="#luminaries" title="Link to this heading"> ¶ </a> </h1> @@ -82,7 +82,7 @@ <section id="code-tabs"> <h1> Code Tabs - <a class="headerlink" href="#code-tabs" title="Permalink to this heading"> + <a class="headerlink" href="#code-tabs" title="Link to this heading"> ¶ </a> </h1> @@ -182,7 +182,7 @@ <section id="group-tabs"> <h1> Group Tabs - <a class="headerlink" href="#group-tabs" title="Permalink to this heading"> + <a class="headerlink" href="#group-tabs" title="Link to this heading"> ¶ </a> </h1> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs2_.xml new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs2_.xml --- old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs2_.xml 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs2_.xml 2023-10-22 22:17:37.000000000 +0200 @@ -1,4 +1,4 @@ -<document source="index.rst"> +<document source="index.rst" translation_progress="{'total': 0, 'translated': 0}"> <compound classes="toctree-wrapper"> <toctree caption="True" entries="(None,\ 'no_tabs1') (None,\ 'no_tabs2')" glob="False" hidden="False" includefiles="no_tabs1 no_tabs2" includehidden="False" maxdepth="-1" numbered="0" parent="index" rawentries="" titlesonly="False"> <section ids="fruits" names="fruits"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_index_.html new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_index_.html --- old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_index_.html 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_index_.html 2023-10-22 22:17:37.000000000 +0200 @@ -18,7 +18,7 @@ <section id="fruits"> <h1> Fruits - <a class="headerlink" href="#fruits" title="Permalink to this heading"> + <a class="headerlink" href="#fruits" title="Link to this heading"> ¶ </a> </h1> @@ -54,7 +54,7 @@ <section id="luminaries"> <h1> Luminaries - <a class="headerlink" href="#luminaries" title="Permalink to this heading"> + <a class="headerlink" href="#luminaries" title="Link to this heading"> ¶ </a> </h1> @@ -82,7 +82,7 @@ <section id="code-tabs"> <h1> Code Tabs - <a class="headerlink" href="#code-tabs" title="Permalink to this heading"> + <a class="headerlink" href="#code-tabs" title="Link to this heading"> ¶ </a> </h1> @@ -182,7 +182,7 @@ <section id="group-tabs"> <h1> Group Tabs - <a class="headerlink" href="#group-tabs" title="Permalink to this heading"> + <a class="headerlink" href="#group-tabs" title="Link to this heading"> ¶ </a> </h1> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_index_.xml new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_index_.xml --- old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_index_.xml 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_index_.xml 2023-10-22 22:17:37.000000000 +0200 @@ -1,4 +1,4 @@ -<document source="index.rst"> +<document source="index.rst" translation_progress="{'total': 0, 'translated': 0}"> <compound classes="toctree-wrapper"> <toctree caption="True" entries="(None,\ 'no_tabs1') (None,\ 'no_tabs2')" glob="False" hidden="False" includefiles="no_tabs1 no_tabs2" includehidden="False" maxdepth="-1" numbered="0" parent="index" rawentries="" titlesonly="False"> <section ids="fruits" names="fruits"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_no_tabs1_.html new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_no_tabs1_.html --- old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_no_tabs1_.html 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_no_tabs1_.html 2023-10-22 22:17:37.000000000 +0200 @@ -18,7 +18,7 @@ <section id="fruits"> <h1> Fruits - <a class="headerlink" href="#fruits" title="Permalink to this heading"> + <a class="headerlink" href="#fruits" title="Link to this heading"> ¶ </a> </h1> @@ -54,7 +54,7 @@ <section id="luminaries"> <h1> Luminaries - <a class="headerlink" href="#luminaries" title="Permalink to this heading"> + <a class="headerlink" href="#luminaries" title="Link to this heading"> ¶ </a> </h1> @@ -82,7 +82,7 @@ <section id="code-tabs"> <h1> Code Tabs - <a class="headerlink" href="#code-tabs" title="Permalink to this heading"> + <a class="headerlink" href="#code-tabs" title="Link to this heading"> ¶ </a> </h1> @@ -182,7 +182,7 @@ <section id="group-tabs"> <h1> Group Tabs - <a class="headerlink" href="#group-tabs" title="Permalink to this heading"> + <a class="headerlink" href="#group-tabs" title="Link to this heading"> ¶ </a> </h1> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_no_tabs1_.xml new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_no_tabs1_.xml --- old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_no_tabs1_.xml 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_no_tabs1_.xml 2023-10-22 22:17:37.000000000 +0200 @@ -1,4 +1,4 @@ -<document source="index.rst"> +<document source="index.rst" translation_progress="{'total': 0, 'translated': 0}"> <compound classes="toctree-wrapper"> <toctree caption="True" entries="(None,\ 'no_tabs1') (None,\ 'no_tabs2')" glob="False" hidden="False" includefiles="no_tabs1 no_tabs2" includehidden="False" maxdepth="-1" numbered="0" parent="index" rawentries="" titlesonly="False"> <section ids="fruits" names="fruits"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_no_tabs2_.html new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_no_tabs2_.html --- old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_no_tabs2_.html 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_no_tabs2_.html 2023-10-22 22:17:37.000000000 +0200 @@ -18,7 +18,7 @@ <section id="fruits"> <h1> Fruits - <a class="headerlink" href="#fruits" title="Permalink to this heading"> + <a class="headerlink" href="#fruits" title="Link to this heading"> ¶ </a> </h1> @@ -54,7 +54,7 @@ <section id="luminaries"> <h1> Luminaries - <a class="headerlink" href="#luminaries" title="Permalink to this heading"> + <a class="headerlink" href="#luminaries" title="Link to this heading"> ¶ </a> </h1> @@ -82,7 +82,7 @@ <section id="code-tabs"> <h1> Code Tabs - <a class="headerlink" href="#code-tabs" title="Permalink to this heading"> + <a class="headerlink" href="#code-tabs" title="Link to this heading"> ¶ </a> </h1> @@ -182,7 +182,7 @@ <section id="group-tabs"> <h1> Group Tabs - <a class="headerlink" href="#group-tabs" title="Permalink to this heading"> + <a class="headerlink" href="#group-tabs" title="Link to this heading"> ¶ </a> </h1> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_no_tabs2_.xml new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_no_tabs2_.xml --- old/sphinx-tabs-3.4.1/tests/test_build/test_conditional_assets_no_tabs2_.xml 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_conditional_assets_no_tabs2_.xml 2023-10-22 22:17:37.000000000 +0200 @@ -1,4 +1,4 @@ -<document source="index.rst"> +<document source="index.rst" translation_progress="{'total': 0, 'translated': 0}"> <compound classes="toctree-wrapper"> <toctree caption="True" entries="(None,\ 'no_tabs1') (None,\ 'no_tabs2')" glob="False" hidden="False" includefiles="no_tabs1 no_tabs2" includehidden="False" maxdepth="-1" numbered="0" parent="index" rawentries="" titlesonly="False"> <section ids="fruits" names="fruits"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_custom_lexer.xml new/sphinx-tabs-3.4.4/tests/test_build/test_custom_lexer.xml --- old/sphinx-tabs-3.4.1/tests/test_build/test_custom_lexer.xml 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_custom_lexer.xml 2023-10-22 22:17:37.000000000 +0200 @@ -1,4 +1,4 @@ -<document source="index.rst"> +<document source="index.rst" translation_progress="{'total': 0, 'translated': 0}"> <container classes="sphinx-tabs" type="tab-element"> <div aria-label="Tabbed content" classes="closeable" role="tablist"> <button aria-controls="panel-0-QllP" aria-selected="true" classes="sphinx-tabs-tab code-tab group-tab" ids="tab-0-QllP" name="QllP" role="tab" tabindex="0"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_disable_closing.xml new/sphinx-tabs-3.4.4/tests/test_build/test_disable_closing.xml --- old/sphinx-tabs-3.4.1/tests/test_build/test_disable_closing.xml 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_disable_closing.xml 2023-10-22 22:17:37.000000000 +0200 @@ -1,4 +1,4 @@ -<document source="index.rst"> +<document source="index.rst" translation_progress="{'total': 0, 'translated': 0}"> <container classes="sphinx-tabs" type="tab-element"> <div aria-label="Tabbed content" role="tablist"> <button aria-controls="panel-0-0-0" aria-selected="true" classes="sphinx-tabs-tab" ids="tab-0-0-0" name="0-0" role="tab" tabindex="0"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_disable_css_loading.xml new/sphinx-tabs-3.4.4/tests/test_build/test_disable_css_loading.xml --- old/sphinx-tabs-3.4.1/tests/test_build/test_disable_css_loading.xml 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_disable_css_loading.xml 2023-10-22 22:17:37.000000000 +0200 @@ -1,4 +1,4 @@ -<document source="index.rst"> +<document source="index.rst" translation_progress="{'total': 0, 'translated': 0}"> <container classes="sphinx-tabs" type="tab-element"> <div aria-label="Tabbed content" classes="closeable" role="tablist"> <button aria-controls="panel-0-0-0" aria-selected="true" classes="sphinx-tabs-tab" ids="tab-0-0-0" name="0-0" role="tab" tabindex="0"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_nested_markup.html new/sphinx-tabs-3.4.4/tests/test_build/test_nested_markup.html --- old/sphinx-tabs-3.4.1/tests/test_build/test_nested_markup.html 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_nested_markup.html 2023-10-22 22:17:37.000000000 +0200 @@ -4,7 +4,7 @@ <section id="markup-in-tab-titles"> <h1> Markup in Tab Titles - <a class="headerlink" href="#markup-in-tab-titles" title="Permalink to this heading"> + <a class="headerlink" href="#markup-in-tab-titles" title="Link to this heading"> ¶ </a> </h1> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_nested_markup.xml new/sphinx-tabs-3.4.4/tests/test_build/test_nested_markup.xml --- old/sphinx-tabs-3.4.1/tests/test_build/test_nested_markup.xml 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_nested_markup.xml 2023-10-22 22:17:37.000000000 +0200 @@ -1,4 +1,4 @@ -<document source="index.rst"> +<document source="index.rst" translation_progress="{'total': 0, 'translated': 0}"> <section ids="markup-in-tab-titles" names="markup\ in\ tab\ titles"> <title> Markup in Tab Titles diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_no_tabs.xml new/sphinx-tabs-3.4.4/tests/test_build/test_no_tabs.xml --- old/sphinx-tabs-3.4.1/tests/test_build/test_no_tabs.xml 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_no_tabs.xml 2023-10-22 22:17:37.000000000 +0200 @@ -1,3 +1,3 @@ -<document source="index.rst"> +<document source="index.rst" translation_progress="{'total': 0, 'translated': 0}"> <paragraph> There are no tabs here diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_other_with_assets.xml new/sphinx-tabs-3.4.4/tests/test_build/test_other_with_assets.xml --- old/sphinx-tabs-3.4.1/tests/test_build/test_other_with_assets.xml 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_other_with_assets.xml 2023-10-22 22:17:37.000000000 +0200 @@ -1,4 +1,4 @@ -<document source="index.rst"> +<document source="index.rst" translation_progress="{'total': 0, 'translated': 0}"> <container classes="sphinx-tabs" type="tab-element"> <div aria-label="Tabbed content" classes="closeable" role="tablist"> <button aria-controls="panel-0-Qysr" aria-selected="true" classes="sphinx-tabs-tab code-tab group-tab" ids="tab-0-Qysr" name="Qysr" role="tab" tabindex="0"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx-tabs-3.4.1/tests/test_build/test_rinohtype_pdf.xml new/sphinx-tabs-3.4.4/tests/test_build/test_rinohtype_pdf.xml --- old/sphinx-tabs-3.4.1/tests/test_build/test_rinohtype_pdf.xml 2022-07-02 11:44:47.000000000 +0200 +++ new/sphinx-tabs-3.4.4/tests/test_build/test_rinohtype_pdf.xml 2023-10-22 22:17:37.000000000 +0200 @@ -1,4 +1,4 @@ -<document source="index.rst"> +<document source="index.rst" translation_progress="{'total': 0, 'translated': 0}"> <section ids="testing-pdf" names="testing\ pdf"> <title> TESTING PDF