gh-118689: Doc: fix ePub build (GH-118690)

(cherry picked from commit 7ac933e260)

Co-authored-by: Inada Naoki <songofacandy@gmail.com>
This commit is contained in:
Miss Islington (bot) 2024-05-10 12:40:35 +02:00 committed by GitHub
parent d524802e9d
commit 760b3f08dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 7 additions and 2 deletions

View File

@ -435,6 +435,10 @@ latex_appendices = ['glossary', 'about', 'license', 'copyright']
epub_author = 'Python Documentation Authors' epub_author = 'Python Documentation Authors'
epub_publisher = 'Python Software Foundation' epub_publisher = 'Python Software Foundation'
# index pages are not valid xhtml
# https://github.com/sphinx-doc/sphinx/issues/12359
epub_use_index = False
# Options for the coverage checker # Options for the coverage checker
# -------------------------------- # --------------------------------

View File

@ -16,7 +16,6 @@ but they are available on most other systems as well. Here's an overview:
io.rst io.rst
time.rst time.rst
argparse.rst argparse.rst
getopt.rst
logging.rst logging.rst
logging.config.rst logging.config.rst
logging.handlers.rst logging.handlers.rst

View File

@ -20,7 +20,7 @@ JSON = 'glossary.json'
def process_glossary_nodes(app, doctree, fromdocname): def process_glossary_nodes(app, doctree, fromdocname):
if app.builder.format != 'html': if app.builder.format != 'html' or app.builder.embedded:
return return
terms = {} terms = {}

View File

@ -42,6 +42,7 @@
</style> </style>
{{ super() }} {{ super() }}
{%- if not embedded %}
<meta name="readthedocs-addons-api-version" content="1"> <meta name="readthedocs-addons-api-version" content="1">
<script type="text/javascript"> <script type="text/javascript">
function onSwitch(event) { function onSwitch(event) {
@ -127,4 +128,5 @@
} }
}); });
</script> </script>
{%- endif %}
{% endblock %} {% endblock %}