Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python312-mkdocs-1.5.3-1.3 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: python312-mkdocs Distribution: openSUSE Tumbleweed
Version: 1.5.3 Vendor: openSUSE
Release: 1.3 Build date: Tue Sep 19 06:43:11 2023
Group: Unspecified Build host: reproducible
Size: 6561924 Source RPM: python-mkdocs-1.5.3-1.3.src.rpm
Packager: https://bugs.opensuse.org
Url: https://www.mkdocs.org
Summary: Project documentation with Markdown
MkDocs is a static site generator for building project documentation.
Documentation source files are written in Markdown, and configured
with a single YAML configuration file.

Provides

Requires

License

BSD-2-Clause

Changelog

* Tue Sep 19 2023 Johannes Kastl <kastl@b1-systems.de>
  - update to 1.5.3:
    * Fix mkdocs serve sometimes locking up all browser tabs when
      navigating quickly (#3390)
    * Add many new supported languages for "search" plugin - update
      lunr-languages to 1.12.0 (#3334)
    * Bugfix (regression in 1.5.0): In "readthedocs" theme the
      styling of "breadcrumb navigation" was broken for nested pages
      (#3383)
    * Built-in themes now also support Chinese (Traditional, Taiwan)
      language (#3370)
    * Plugins can now set File.page to their own subclass of Page.
      There is also now a warning if File.page is set to anything
      other than a strict subclass of Page. (#3367, #3381)
    * Note that just instantiating a Page sets the file
      automatically, so care needs to be taken not to create an
      unneeded Page.
* Fri Aug 04 2023 Johannes Kastl <kastl@b1-systems.de>
  - update to 1.5.2:
    * Bugfix (regression in 1.5.0): Restore functionality of
    - -no-livereload. (#3320)
    * Bugfix (regression in 1.5.0): The new page title detection
      would sometimes be unable to drop anchorlinks - fix that.
      (#3325)
    * Partly bring back pre-1.5 API: extra_javascript items will once
      again be mostly strings, and only sometimes ExtraStringValue
      (when the extra script functionality is used).
    * Plugins should be free to append strings to
      config.extra_javascript, but when reading the values, they must
      still make sure to read it as str(value) in case it is an
      ExtraScriptValue item. For querying the attributes such as
      .type you need to check isinstance first. Static type checking
      will guide you in that. (#3324)
* Tue Aug 01 2023 Johannes Kastl <kastl@b1-systems.de>
  - update to 1.5.1:
    * Bug fixes
    - Bugfix (regression in 1.5.0): Make it possible to treat
      ExtraScriptValue as a path. This lets some plugins still work
      despite the breaking change.
    - Bugfix (regression in 1.5.0): Prevent errors for special
      setups that have 3 conflicting files, such as index.html,
      index.md and README.md (#3314)
* Thu Jul 27 2023 Johannes Kastl <kastl@b1-systems.de>
  - update to 1.5.0:
    * very long changelog that can be found here:
      https://github.com/mkdocs/mkdocs/releases/tag/1.5.0
    * Bug fixes
    - Relative paths in the nav can traverse above the root
      Regression in 1.2 - relative paths in the nav could no longer
      traverse above the site's root and were truncated to the
      root. Although such traversal is discouraged and produces a
      warning, this was a documented behavior. The behavior is now
      restored.
    - MkDocs can accept the config from stdin
      This can be used for config overrides on the fly. See updated
      section at the bottom of Configuration Inheritance.
      The command to use this is mkdocs build -f -. In previous
      versions doing this led to an error.
* Thu Jul 06 2023 Johannes Kastl <kastl@b1-systems.de>
  - update to 1.4.3:
    * Bugfix: for the hooks feature, modules no longer fail to load
      if using some advanced Python features like dataclasses (#3193)
    * Bugfix: Don't create None sitemap entries if the page has no
      populated URL - affects sites that exclude some files from
      navigation (07a297b)
    * "readthedocs" theme:
    - Accessibility: add aria labels to Home logo (#3129) and
      search inputs (#3046)
    - "readthedocs" theme now supports hljs_style: config, same as
      "mkdocs" theme (#3199)
    * Translations:
    - Built-in themes now also support Indonesian language (#3154)
    - Fixed zh_CN translation (#3125)
    - tr_TR translation becomes just tr - usage should remain
      unaffected (#3195)
* Thu Jul 06 2023 ecsos <ecsos@opensuse.org>
  - Add %{?sle15_python_module_pythons}
* Fri Mar 17 2023 Johannes Kastl <kastl@b1-systems.de>
  - update to 1.4.2:
    * Officially support Python 3.11 (#3020)
    - Note: Simply upgrading to Python 3.11 can cut off 10-15% of
      your site's build time.
    * Support multiple instances of the same plugin (#3027)
    * If a plugin is specified multiple times in the list under the
      plugins: config, that will create 2 (or more) instances of the
      plugin with their own config each.
    * Previously this case was unforeseen and, as such, bugged.
    * Now even though this works, by default a warning will appear
      from MkDocs anyway, unless the plugin adds a class variable
      supports_multiple_instances = True.
    * Bugfix (regression in 1.4.1): Don't error when a plugin puts a
      plain string into warnings (#3016)
    * Bugfix: Relative links will always render with a trailing
      slash (#3022)
    * Previously under use_directory_urls, links from a sub-page to
      the main index page rendered as e.g. `<a href="../..">` even
      though in all other cases the links look like
      `<a href="../../">`. This caused unwanted behavior on some
      combinations of Web browsers and servers. Now this special-case
      bug was removed.
    * Built-in "mkdocs" theme now also supports Norwegian language
      (#3024)
    * Plugin-related warnings look more readable (#3016)
  - adjust spec file to build with hatch and pyproject.toml
  - update to 1.4.1:
    * Support theme-namespaced plugin loading (#2998)
    * Plugins' entry points can be named as 'sometheme/someplugin'.
      That will have the following outcome:
    - If the current theme is 'sometheme', the plugin
      'sometheme/someplugin' will always be preferred over
      'someplugin'.
    - If the current theme isn't 'sometheme', the only way to use
      this plugin is by specifying plugins: [sometheme/someplugin].
    * One can also specify plugins: ['/someplugin'] instead of
      plugins: ['someplugin'] to definitely avoid the
      theme-namespaced plugin.
    * Bugfix: mkdocs serve will work correctly with non-ASCII paths
      and redirects (#3001)
    * Windows: 'colorama' is now a dependency of MkDocs, to ensure
      colorful log output (#2987)
    * Plugin-related config options have more reliable validation
      and error reporting (#2997)
    * Translation sub-commands of setup.py were completely dropped.
      See documentation [1] [2] for their new replacements (#2990)
    * The 'mkdocs' package (wheel and source) is now produced by
      Hatch build system and pyproject.toml instead of setup.py
      (#2988)
  - update to 1.4.0:
    * Large update, full changelog at
      https://github.com/mkdocs/mkdocs/releases/tag/1.4.0
* Mon Feb 27 2023 Matej Cepl <mcepl@suse.com>
  - Enable tests
  - Don't use fdupes -s, it hurts.
* Sun Sep 04 2022 Elisei Roca <eroca@mailbox.org>
  - fix fontawesome unbundling for Leap
* Mon Aug 29 2022 Elisei Roca <eroca@mailbox.org>
  - Update to version 1.3.1 (2022-07-19)
    * Release 1.3.1 (#2895)
    * Requirements: pin Markdown version to <3.4 (#2893)
    * When a Markdown extension fails to load, print its name and traceback (#2894)
    * Italian translation for mkdocs and readthedocs themes (#2860)
    * Docs: `site_url` is optional (#2863)
    * Check only for uppercase README.md file (#2852)
    * Clean up code style (#2825)
    * Fix typo in configuration.md (#2844)
    * Added an extra space to the readthedocs theme breadcrumbs (#2810)
  - update fontawesome unbundling section in spec file
* Sun Jun 12 2022 Elisei Roca <eroca@mailbox.org>
  - update to version 1.3.0 (2022-03-26)
    * Release 1.3.0 (#2806)
    * Revert to disregarding the mount path for /livereload/ endpoint (#2804)
    * Ensure that the `edit_uri` option does not modify the `repo_url` (#2733)
    * Revert "SubConfig now catches failures and warnings (#2710)"
    * Prevent XSS searching in builtin themes (#2791)
    * SubConfig now catches failures and warnings (#2710)
    * Add Persian (fa) translation to the default themes (#2787)
    * Make Jinja2 errors and OSErrors produce a clearer message (#2801)
    * Add --no-history option to not push parent history for gh_deploy (#2594)
    * Bump importlib_metadata to at least 4.3 to support Python 3.10 (#2802)
    * dev-guide: document page.file (#2763)
    * add GitHub URL for PyPi (#2785)
    * Compatibility with Jinja2 3.1.0 (#2800)
    * Fix documentation error in Developing Themes (#2781)
    * Pin MarkupSafe to <= 2.0.1 to support Jinja2 in minimum requirements (#2778)
    * Docs: fix relative link (#2756)
    * Fix PyPy version in MacOS CI workflow (#2755)
    * Fix imports to get tests passing (#2751)
    * Don't inject javascript poll script if livereload is disabled (#2742)
    * Move livereload endpoint under the mount path (#2740)
    * Don't define __ne__ methods, they're implicit since Py3 (#2735)
    * Declare support for Python 3.10 (#2617)
    * Don't import unused commands (#2714)
    * Reuse Jinja2 `tojson` builtin filter (#2713)
    * Drop needless assert from `FilesystemObject` config option (#2712)
    * Update ja translation for readthedocs theme (#2708)
    * Update brazilian portuguese translation for readthedocs Theme (#2705)
    * Update readthedocs theme French translation (#2699)
    * Update Spanish translation for Readthedocs theme (#2698)
    * Allow CI to run when pushing to a branch (#2439)
    * Turn the deprecated 'pages' config into an error on use (#2652)
    * Recursively validate `Nav` config option types (#2680)
    * Provide german locale file for readthedocs theme (#2633)
    * zh_CN: Update the translation of readthedocs (#2673)
    * Support custom directories to watch when running mkdocs serve (#2642)
    * Upgrade readthedocs theme to v1.0.0 (#2585)
    * Remove duplicated sentences in docs/deploying (#2667)
    * Add latest members of MkDocs maintenance team (#2661)
    * Fix typo (#2663)
    * Fix typo `mkdocs-theme.yml` (`mkdocs_theme.yml`) (#2654)
    * Modernize usages of assertRaises in tests (#2653)
    * Remove line length limit from Markdown documents (#2626)
    * Fix mistake in docs about nav configuration (#2636)
    * Update codebase to Python >= 3.6 (#2612)
    * Rewrite `test_build_page_empty` test (#2613)
    * Refactor `Nav` config option (#2622)
  - changes in version 1.2.4 (2022-03-26)
    * Release 1.2.4 (#2805)
    * Compatibility with Jinja2 3.1.0 (#2800)
* Wed Nov 17 2021 Elisei Roca <eroca@mailbox.org>
  - do not build for python2; mkdocs is python3-only since 1.1
  - update dependencies and add all also as BuildRequires to always deliver an
    installable package
  - update to version 1.2.3 (2021-10-12)
    https://github.com/mkdocs/mkdocs/blob/1.2.3/docs/about/release-notes.md
    * Built-in themes now also support these languages:
    * Simplified Chinese (#2497)
    * Japanese (#2525)
    * Brazilian Portuguese (#2535)
    * Spanish (#2545, previously #2396)
    * Third-party plugins will take precedence over built-in plugins with the same
      name (#2591)
    * Bugfix: Fix ability to load translations for some languages:
      core support (#2565) and search plugin support with fallbacks (#2602)
    * Bugfix (regression in 1.2): Prevent directory traversal in the dev server
      (#2604)
    * Bugfix (regression in 1.2): Prevent webserver warnings from being treated as
      a build failure in strict mode (#2607)
    * Bugfix: Correctly print colorful messages in the terminal on Windows (#2606)
    * Bugfix: Python version 3.10 was displayed incorrectly in `--version` (#2618)
    * Other small improvements
      see commit log (https://github.com/mkdocs/mkdocs/compare/1.2.2...1.2.3).
  - changes in 1.2.2 (2021-07-18)
    * Bugfix (regression in 1.2): Fix serving files/paths with Unicode characters
      (#2464)
    * Bugfix (regression in 1.2): Revert livereload file watching to use polling
      observer (#2477)
    * Revert from 1.2: Remove the requirement of a `site_url` config and the
      restriction on `use_directory_urls` (#2490)
    * Bugfix (regression in 1.2): Don't require trailing slash in the URL when
      serving a directory index in `mkdocs serve` server (#2507)
    * Bugfix: Fix `gh_deploy` with config-file in the current directory (#2481)
    * Bugfix: Fix reversed breadcrumbs in "readthedocs" theme (#2179)
    * Allow "mkdocs.yaml" as the file name when '--config' is not passed (#2478)
    * Stop treating ";" as a special character in URLs: urlparse -> urlsplit (#2502)
    * Improve build performance for sites with many pages
      (partly already done in 1.2) (#2407)
  - changes in 1.2.1 (2021-06-09)
    * Bugfix (regression in 1.2): Ensure 'gh-deploy' always pushes.
  - changes in 1.2 (2021-06-04)
    * Support added for Theme Localization (#2299)
    * Support added for Environment Variables in the configuration file (#1954)
    * Support added for Configuration Inheritance (#2218)
    * Update `gh-deploy` command (#2170)
    * Rework auto-reload and HTTP server for `mkdocs serve` (#2385)
    * Offset the local site root according to the sub-path of the `site_url` (#2424)
    * A `build_error` event was added (#2103)
    * Three new exceptions: BuildError PluginError and Abort (#2103)
    * Search Indexing Strategy configuration
    * Backwards incompatible changes in 1.2
      https://github.com/mkdocs/mkdocs/blob/1.2/docs/about/release-notes.md?plain=1#L160
    * Other changes and additions, bugfixes in 1.2
      https://github.com/mkdocs/mkdocs/blob/1.2/docs/about/release-notes.md?plain=1#L230
* Sat Aug 14 2021 Jan Engelhardt <jengelh@inai.de>
  - Trim conjecture from description. Use multi-file find -exec.
  - Make fdupes actually functional.
* Wed May 19 2021 Matthias Mailänder <mailaender@opensuse.org>
  - update to version 1.1.2
  - unbundled font awesome

Files

/etc/alternatives/mkdocs
/usr/bin/mkdocs
/usr/bin/mkdocs-3.12
/usr/lib/python3.12/site-packages/mkdocs
/usr/lib/python3.12/site-packages/mkdocs-1.5.3.dist-info
/usr/lib/python3.12/site-packages/mkdocs-1.5.3.dist-info/INSTALLER
/usr/lib/python3.12/site-packages/mkdocs-1.5.3.dist-info/METADATA
/usr/lib/python3.12/site-packages/mkdocs-1.5.3.dist-info/RECORD
/usr/lib/python3.12/site-packages/mkdocs-1.5.3.dist-info/REQUESTED
/usr/lib/python3.12/site-packages/mkdocs-1.5.3.dist-info/WHEEL
/usr/lib/python3.12/site-packages/mkdocs-1.5.3.dist-info/entry_points.txt
/usr/lib/python3.12/site-packages/mkdocs-1.5.3.dist-info/licenses
/usr/lib/python3.12/site-packages/mkdocs-1.5.3.dist-info/licenses/LICENSE
/usr/lib/python3.12/site-packages/mkdocs/__init__.py
/usr/lib/python3.12/site-packages/mkdocs/__main__.py
/usr/lib/python3.12/site-packages/mkdocs/__pycache__
/usr/lib/python3.12/site-packages/mkdocs/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/__pycache__/__main__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/__pycache__/__main__.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/__pycache__/exceptions.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/__pycache__/exceptions.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/__pycache__/localization.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/__pycache__/localization.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/__pycache__/plugins.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/__pycache__/plugins.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/__pycache__/theme.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/__pycache__/theme.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/commands
/usr/lib/python3.12/site-packages/mkdocs/commands/__init__.py
/usr/lib/python3.12/site-packages/mkdocs/commands/__pycache__
/usr/lib/python3.12/site-packages/mkdocs/commands/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/commands/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/commands/__pycache__/build.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/commands/__pycache__/build.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/commands/__pycache__/get_deps.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/commands/__pycache__/get_deps.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/commands/__pycache__/gh_deploy.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/commands/__pycache__/gh_deploy.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/commands/__pycache__/new.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/commands/__pycache__/new.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/commands/__pycache__/serve.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/commands/__pycache__/serve.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/commands/build.py
/usr/lib/python3.12/site-packages/mkdocs/commands/get_deps.py
/usr/lib/python3.12/site-packages/mkdocs/commands/gh_deploy.py
/usr/lib/python3.12/site-packages/mkdocs/commands/new.py
/usr/lib/python3.12/site-packages/mkdocs/commands/serve.py
/usr/lib/python3.12/site-packages/mkdocs/config
/usr/lib/python3.12/site-packages/mkdocs/config/__init__.py
/usr/lib/python3.12/site-packages/mkdocs/config/__pycache__
/usr/lib/python3.12/site-packages/mkdocs/config/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/config/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/config/__pycache__/base.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/config/__pycache__/base.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/config/__pycache__/config_options.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/config/__pycache__/config_options.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/config/__pycache__/defaults.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/config/__pycache__/defaults.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/config/base.py
/usr/lib/python3.12/site-packages/mkdocs/config/config_options.py
/usr/lib/python3.12/site-packages/mkdocs/config/defaults.py
/usr/lib/python3.12/site-packages/mkdocs/contrib
/usr/lib/python3.12/site-packages/mkdocs/contrib/__init__.py
/usr/lib/python3.12/site-packages/mkdocs/contrib/__pycache__
/usr/lib/python3.12/site-packages/mkdocs/contrib/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/contrib/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/contrib/search
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/__init__.py
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/__pycache__
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/__pycache__/search_index.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/__pycache__/search_index.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.ar.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.da.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.de.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.du.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.es.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.fi.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.fr.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.hi.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.hu.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.hy.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.it.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.ja.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.jp.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.kn.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.ko.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.multi.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.nl.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.no.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.pt.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.ro.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.ru.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.sa.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.stemmer.support.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.sv.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.ta.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.te.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.th.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.tr.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.vi.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/lunr.zh.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/lunr-language/tinyseg.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/prebuild-index.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/search_index.py
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/templates
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/templates/search
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/templates/search/lunr.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/templates/search/main.js
/usr/lib/python3.12/site-packages/mkdocs/contrib/search/templates/search/worker.js
/usr/lib/python3.12/site-packages/mkdocs/exceptions.py
/usr/lib/python3.12/site-packages/mkdocs/livereload
/usr/lib/python3.12/site-packages/mkdocs/livereload/__init__.py
/usr/lib/python3.12/site-packages/mkdocs/livereload/__pycache__
/usr/lib/python3.12/site-packages/mkdocs/livereload/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/livereload/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/localization.py
/usr/lib/python3.12/site-packages/mkdocs/plugins.py
/usr/lib/python3.12/site-packages/mkdocs/py.typed
/usr/lib/python3.12/site-packages/mkdocs/structure
/usr/lib/python3.12/site-packages/mkdocs/structure/__init__.py
/usr/lib/python3.12/site-packages/mkdocs/structure/__pycache__
/usr/lib/python3.12/site-packages/mkdocs/structure/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/structure/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/structure/__pycache__/files.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/structure/__pycache__/files.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/structure/__pycache__/nav.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/structure/__pycache__/nav.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/structure/__pycache__/pages.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/structure/__pycache__/pages.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/structure/__pycache__/toc.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/structure/__pycache__/toc.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/structure/files.py
/usr/lib/python3.12/site-packages/mkdocs/structure/nav.py
/usr/lib/python3.12/site-packages/mkdocs/structure/pages.py
/usr/lib/python3.12/site-packages/mkdocs/structure/toc.py
/usr/lib/python3.12/site-packages/mkdocs/templates
/usr/lib/python3.12/site-packages/mkdocs/templates/sitemap.xml
/usr/lib/python3.12/site-packages/mkdocs/tests
/usr/lib/python3.12/site-packages/mkdocs/tests/__init__.py
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/base.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/base.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/build_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/build_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/cli_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/cli_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/get_deps_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/get_deps_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/gh_deploy_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/gh_deploy_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/integration.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/integration.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/livereload_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/livereload_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/localization_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/localization_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/new_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/new_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/plugin_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/plugin_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/search_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/search_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/theme_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/__pycache__/theme_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/base.py
/usr/lib/python3.12/site-packages/mkdocs/tests/build_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/cli_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/config
/usr/lib/python3.12/site-packages/mkdocs/tests/config/__init__.py
/usr/lib/python3.12/site-packages/mkdocs/tests/config/__pycache__
/usr/lib/python3.12/site-packages/mkdocs/tests/config/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/config/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/config/__pycache__/base_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/config/__pycache__/base_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/config/__pycache__/config_options_legacy_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/config/__pycache__/config_options_legacy_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/config/__pycache__/config_options_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/config/__pycache__/config_options_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/config/__pycache__/config_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/config/__pycache__/config_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/config/base_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/config/config_options_legacy_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/config/config_options_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/config/config_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/get_deps_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/gh_deploy_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/integration.py
/usr/lib/python3.12/site-packages/mkdocs/tests/livereload_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/localization_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/new_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/plugin_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/search_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/structure
/usr/lib/python3.12/site-packages/mkdocs/tests/structure/__init__.py
/usr/lib/python3.12/site-packages/mkdocs/tests/structure/__pycache__
/usr/lib/python3.12/site-packages/mkdocs/tests/structure/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/structure/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/structure/__pycache__/file_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/structure/__pycache__/file_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/structure/__pycache__/nav_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/structure/__pycache__/nav_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/structure/__pycache__/page_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/structure/__pycache__/page_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/structure/__pycache__/toc_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/structure/__pycache__/toc_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/structure/file_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/structure/nav_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/structure/page_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/structure/toc_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/theme_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/utils
/usr/lib/python3.12/site-packages/mkdocs/tests/utils/__init__.py
/usr/lib/python3.12/site-packages/mkdocs/tests/utils/__pycache__
/usr/lib/python3.12/site-packages/mkdocs/tests/utils/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/utils/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/utils/__pycache__/babel_stub_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/utils/__pycache__/babel_stub_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/utils/__pycache__/templates_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/utils/__pycache__/templates_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/utils/__pycache__/utils_tests.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/utils/__pycache__/utils_tests.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/tests/utils/babel_stub_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/utils/templates_tests.py
/usr/lib/python3.12/site-packages/mkdocs/tests/utils/utils_tests.py
/usr/lib/python3.12/site-packages/mkdocs/theme.py
/usr/lib/python3.12/site-packages/mkdocs/themes
/usr/lib/python3.12/site-packages/mkdocs/themes/__init__.py
/usr/lib/python3.12/site-packages/mkdocs/themes/__pycache__
/usr/lib/python3.12/site-packages/mkdocs/themes/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/themes/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/404.html
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/__init__.py
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/__pycache__
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/base.html
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/content.html
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/css
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/css/base.css
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/css/bootstrap.min.css
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/css/font-awesome.min.css
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/fonts
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/fonts/fontawesome-webfont.eot
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/fonts/fontawesome-webfont.svg
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/fonts/fontawesome-webfont.ttf
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/fonts/fontawesome-webfont.woff
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/fonts/fontawesome-webfont.woff2
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/img
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/img/favicon.ico
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/img/grid.png
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/js
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/js/base.js
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/js/bootstrap.min.js
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/js/jquery-3.6.0.min.js
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/keyboard-modal.html
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/de
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/de/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/de/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/es
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/es/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/es/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/fa
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/fa/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/fa/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/fr
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/fr/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/fr/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/id
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/id/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/id/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/it
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/it/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/it/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/ja
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/ja/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/ja/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/nb
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/nb/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/nb/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/nn
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/nn/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/nn/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/pt_BR
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/pt_BR/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/pt_BR/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/ru
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/ru/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/ru/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/tr
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/tr/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/tr/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/uk
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/uk/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/uk/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/zh_CN
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/zh_CN/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/zh_CN/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/zh_TW
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/zh_TW/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/locales/zh_TW/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/main.html
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/mkdocs_theme.yml
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/nav-sub.html
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/search-modal.html
/usr/lib/python3.12/site-packages/mkdocs/themes/mkdocs/toc.html
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/404.html
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/__init__.py
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/__pycache__
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/base.html
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/breadcrumbs.html
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Bold.woff
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Bold.woff2
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Regular.woff
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Regular.woff2
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.eot
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.svg
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.ttf
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.woff
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.woff2
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts/lato-bold-italic.woff
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts/lato-bold-italic.woff2
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts/lato-bold.woff
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts/lato-bold.woff2
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts/lato-normal-italic.woff
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts/lato-normal-italic.woff2
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts/lato-normal.woff
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/fonts/lato-normal.woff2
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/theme.css
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/css/theme_extra.css
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/footer.html
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/img
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/img/favicon.ico
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/js
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/js/html5shiv.min.js
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/js/jquery-3.6.0.min.js
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/js/theme.js
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/js/theme_extra.js
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/de
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/de/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/de/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/es
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/es/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/es/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/fa
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/fa/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/fa/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/fr
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/fr/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/fr/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/id
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/id/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/id/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/it
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/it/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/it/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/ja
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/ja/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/ja/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/pt_BR
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/pt_BR/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/pt_BR/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/ru
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/ru/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/ru/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/tr
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/tr/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/tr/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/uk
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/uk/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/uk/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/zh_CN
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/zh_CN/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/zh_CN/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/zh_TW
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/zh_TW/LC_MESSAGES
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/locales/zh_TW/LC_MESSAGES/messages.mo
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/main.html
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/mkdocs_theme.yml
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/nav.html
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/search.html
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/searchbox.html
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/toc.html
/usr/lib/python3.12/site-packages/mkdocs/themes/readthedocs/versions.html
/usr/lib/python3.12/site-packages/mkdocs/utils
/usr/lib/python3.12/site-packages/mkdocs/utils/__init__.py
/usr/lib/python3.12/site-packages/mkdocs/utils/__pycache__
/usr/lib/python3.12/site-packages/mkdocs/utils/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/utils/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/utils/__pycache__/babel_stub.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/utils/__pycache__/babel_stub.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/utils/__pycache__/cache.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/utils/__pycache__/cache.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/utils/__pycache__/filters.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/utils/__pycache__/filters.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/utils/__pycache__/meta.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/utils/__pycache__/meta.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/utils/__pycache__/templates.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/utils/__pycache__/templates.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/utils/__pycache__/yaml.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/mkdocs/utils/__pycache__/yaml.cpython-312.pyc
/usr/lib/python3.12/site-packages/mkdocs/utils/babel_stub.py
/usr/lib/python3.12/site-packages/mkdocs/utils/cache.py
/usr/lib/python3.12/site-packages/mkdocs/utils/filters.py
/usr/lib/python3.12/site-packages/mkdocs/utils/meta.py
/usr/lib/python3.12/site-packages/mkdocs/utils/templates.py
/usr/lib/python3.12/site-packages/mkdocs/utils/yaml.py
/usr/share/doc/packages/python312-mkdocs
/usr/share/doc/packages/python312-mkdocs/README.md
/usr/share/licenses/python312-mkdocs
/usr/share/licenses/python312-mkdocs/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Mon Apr 29 23:22:28 2024