Sphinx 7.4.6__py3-none-any.whl → 8.0.0rc1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of Sphinx might be problematic. Click here for more details.

Files changed (115) hide show
  1. sphinx/__init__.py +2 -2
  2. sphinx/_cli/__init__.py +4 -4
  3. sphinx/application.py +7 -7
  4. sphinx/builders/__init__.py +2 -3
  5. sphinx/builders/_epub_base.py +33 -12
  6. sphinx/builders/changes.py +13 -5
  7. sphinx/builders/epub3.py +6 -2
  8. sphinx/builders/html/__init__.py +90 -59
  9. sphinx/builders/latex/__init__.py +38 -12
  10. sphinx/builders/latex/transforms.py +1 -1
  11. sphinx/builders/linkcheck.py +8 -49
  12. sphinx/builders/texinfo.py +12 -6
  13. sphinx/builders/text.py +7 -3
  14. sphinx/builders/xml.py +7 -3
  15. sphinx/cmd/quickstart.py +10 -20
  16. sphinx/config.py +12 -12
  17. sphinx/deprecation.py +8 -8
  18. sphinx/directives/__init__.py +14 -9
  19. sphinx/directives/other.py +2 -3
  20. sphinx/directives/patches.py +2 -2
  21. sphinx/domains/__init__.py +4 -2
  22. sphinx/domains/c/__init__.py +2 -2
  23. sphinx/domains/c/_ast.py +3 -2
  24. sphinx/domains/c/_parser.py +4 -3
  25. sphinx/domains/cpp/__init__.py +2 -2
  26. sphinx/domains/cpp/_ast.py +1 -2
  27. sphinx/domains/cpp/_parser.py +2 -2
  28. sphinx/domains/cpp/_symbol.py +2 -2
  29. sphinx/domains/javascript.py +1 -1
  30. sphinx/domains/math.py +1 -1
  31. sphinx/domains/python/__init__.py +1 -1
  32. sphinx/domains/python/_annotations.py +23 -1
  33. sphinx/domains/python/_object.py +0 -1
  34. sphinx/domains/std/__init__.py +7 -8
  35. sphinx/environment/__init__.py +14 -32
  36. sphinx/environment/adapters/indexentries.py +4 -6
  37. sphinx/environment/adapters/toctree.py +4 -4
  38. sphinx/environment/collectors/title.py +1 -1
  39. sphinx/environment/collectors/toctree.py +1 -1
  40. sphinx/events.py +3 -1
  41. sphinx/ext/autodoc/__init__.py +25 -67
  42. sphinx/ext/autodoc/directive.py +7 -5
  43. sphinx/ext/autodoc/importer.py +2 -1
  44. sphinx/ext/autodoc/preserve_defaults.py +2 -2
  45. sphinx/ext/autosummary/__init__.py +15 -7
  46. sphinx/ext/autosummary/generate.py +5 -4
  47. sphinx/ext/doctest.py +5 -5
  48. sphinx/ext/graphviz.py +1 -1
  49. sphinx/ext/imgmath.py +1 -1
  50. sphinx/ext/inheritance_diagram.py +1 -1
  51. sphinx/ext/intersphinx/__init__.py +25 -5
  52. sphinx/ext/intersphinx/_cli.py +7 -6
  53. sphinx/ext/intersphinx/_load.py +240 -115
  54. sphinx/ext/intersphinx/_resolve.py +12 -11
  55. sphinx/ext/intersphinx/_shared.py +102 -9
  56. sphinx/ext/mathjax.py +1 -1
  57. sphinx/ext/napoleon/docstring.py +2 -2
  58. sphinx/ext/todo.py +2 -2
  59. sphinx/ext/viewcode.py +2 -1
  60. sphinx/highlighting.py +3 -3
  61. sphinx/io.py +2 -2
  62. sphinx/jinja2glue.py +13 -6
  63. sphinx/locale/__init__.py +4 -3
  64. sphinx/locale/ta/LC_MESSAGES/sphinx.js +54 -54
  65. sphinx/locale/ta/LC_MESSAGES/sphinx.mo +0 -0
  66. sphinx/locale/ta/LC_MESSAGES/sphinx.po +1578 -1843
  67. sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +496 -704
  68. sphinx/project.py +23 -19
  69. sphinx/pycode/ast.py +2 -2
  70. sphinx/pycode/parser.py +2 -2
  71. sphinx/pygments_styles.py +3 -3
  72. sphinx/registry.py +3 -8
  73. sphinx/search/__init__.py +1 -1
  74. sphinx/testing/path.py +2 -1
  75. sphinx/testing/util.py +1 -1
  76. sphinx/texinputs/Makefile.jinja +2 -1
  77. sphinx/texinputs_win/Makefile.jinja +2 -1
  78. sphinx/theming.py +3 -12
  79. sphinx/transforms/__init__.py +5 -5
  80. sphinx/transforms/references.py +1 -1
  81. sphinx/util/__init__.py +11 -35
  82. sphinx/util/_timestamps.py +12 -0
  83. sphinx/util/cfamily.py +5 -5
  84. sphinx/util/console.py +4 -3
  85. sphinx/util/display.py +3 -3
  86. sphinx/util/docfields.py +1 -1
  87. sphinx/util/docutils.py +44 -10
  88. sphinx/util/fileutil.py +41 -9
  89. sphinx/util/i18n.py +9 -4
  90. sphinx/util/images.py +3 -2
  91. sphinx/util/inspect.py +29 -44
  92. sphinx/util/inventory.py +2 -2
  93. sphinx/util/matching.py +2 -2
  94. sphinx/util/math.py +1 -1
  95. sphinx/util/nodes.py +8 -8
  96. sphinx/util/osutil.py +46 -23
  97. sphinx/util/parallel.py +2 -2
  98. sphinx/util/requests.py +1 -1
  99. sphinx/util/template.py +3 -3
  100. sphinx/util/typing.py +67 -70
  101. sphinx/writers/html.py +1 -1
  102. sphinx/writers/html5.py +1 -1
  103. sphinx/writers/latex.py +4 -4
  104. sphinx/writers/manpage.py +2 -2
  105. sphinx/writers/texinfo.py +5 -5
  106. sphinx/writers/text.py +4 -4
  107. sphinx/writers/xml.py +2 -2
  108. {sphinx-7.4.6.dist-info → sphinx-8.0.0rc1.dist-info}/METADATA +10 -9
  109. {sphinx-7.4.6.dist-info → sphinx-8.0.0rc1.dist-info}/RECORD +112 -114
  110. sphinx/templates/quickstart/Makefile.jinja +0 -98
  111. sphinx/templates/quickstart/make.bat.jinja +0 -110
  112. sphinx/util/_pathlib.py +0 -120
  113. {sphinx-7.4.6.dist-info → sphinx-8.0.0rc1.dist-info}/LICENSE.rst +0 -0
  114. {sphinx-7.4.6.dist-info → sphinx-8.0.0rc1.dist-info}/WHEEL +0 -0
  115. {sphinx-7.4.6.dist-info → sphinx-8.0.0rc1.dist-info}/entry_points.txt +0 -0
@@ -1,127 +1,127 @@
1
- sphinx/__init__.py,sha256=L0jzbPHxzSdBVmC-QfTfKvwdk3Mcz0s-A7JmZ-rLvP8,1690
1
+ sphinx/__init__.py,sha256=Q3MjugbNoDLvcQolO8URfhiyNHRB1OrioQCsjNTvpto,1697
2
2
  sphinx/__main__.py,sha256=wIifwXlZHdi4gtQmkJ6KF0BsflvD9o0Wd5nARTdJc8A,127
3
3
  sphinx/addnodes.py,sha256=EQTIi9Zta6DaNa-2WGE3l9AVjdp7WzwwrfwRnax8vXE,18707
4
- sphinx/application.py,sha256=5QXM7tYRt1s4q00GHPtAK2EIxu6G_UkzMB3MOKOkuUI,57793
5
- sphinx/config.py,sha256=8q1CB3Yr4LXrYqOyiw_OUxLsTaWjihONrOyLnNQ3_9g,31179
6
- sphinx/deprecation.py,sha256=ABIo1t4mSwCTT2uxpUKNcwQHb3X6qur_tziCWzIhqtE,2437
4
+ sphinx/application.py,sha256=zftymJ_WGryYtMQ-GVuDTdY5WO-BCVQKKZPz-1YKpwc,57760
5
+ sphinx/config.py,sha256=VQ8ooKzzg8nIYawM-G4vFRVkUBkn7MGL1EDyAyT08bk,31192
6
+ sphinx/deprecation.py,sha256=E8lNCClHC1Mt2IiXNYp5oULqukUjfvSnHqUmDXfvobw,2438
7
7
  sphinx/errors.py,sha256=mFyE7P1fmnVTeYtpP3wv8oXrKyTw1H0WcE46VypUPd0,3412
8
- sphinx/events.py,sha256=zb0K0Mq2a_MRr6lwLaD8ODhUnASd16vmYI8rKc_g-KY,4383
8
+ sphinx/events.py,sha256=rZkchR3dFN54FG5pc4k9yrImicSCmjOHyoJd187R4sM,4415
9
9
  sphinx/extension.py,sha256=F4AZzY3BAVRXaeE3p0CYFM4TJ24GESuxjk6z0gtdJ4o,3169
10
- sphinx/highlighting.py,sha256=uFIxhsmOZVXbEmnN7Xlk7u7N1kzGRvpLz_fuind_PzA,7380
11
- sphinx/io.py,sha256=vfO8klgS6lGBKj-HBOWN9LA4I7kQX3z8X7suGTLJxJs,6142
12
- sphinx/jinja2glue.py,sha256=Vad7QaIbEW--5BZl3RxeHXoV12luVa6dJdY944XMD54,7234
10
+ sphinx/highlighting.py,sha256=ECKagCnRgMVViFEymgENRjE87YTNHcglyxe84SzdcGA,7412
11
+ sphinx/io.py,sha256=C0yF1BMsMPiaWJ16uKjIDZ4wgpQ4kwJ8mw1syTEFkTc,6186
12
+ sphinx/jinja2glue.py,sha256=_G9x8uypW9kAlMGGSkectaN4VIosDi0SXn_2qFe91_4,7463
13
13
  sphinx/parsers.py,sha256=86Yn9xUBWWe8FxvDf1_BlEzqvSDZ8AMFeYJCbx7AtMQ,3179
14
- sphinx/project.py,sha256=t8mzAJgG6nvYFbm94VMik4PuCd3YAN4lux9-EZV981M,4389
14
+ sphinx/project.py,sha256=bER_1RsiwKPkAZ_hSlMut3_F_mm3_OE4d-yy6I9u9wE,4437
15
15
  sphinx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- sphinx/pygments_styles.py,sha256=0RJn6WC7rPnQu7BDqrqb0gkJcb3elRfizGVBW9bcmRE,2861
17
- sphinx/registry.py,sha256=RQoHNd0VaHEFD3fGBbELJlNuVsEhTDi0jqNnBdO8eyY,22826
16
+ sphinx/pygments_styles.py,sha256=oC5LM3fXUdF1qERN9MQjkez-HirhxL8ADWpgWWlc0ys,2853
17
+ sphinx/registry.py,sha256=jJQdrz7VQJvKAFdqAmcUScbn6D0qqoKmUegMbPRh0yI,22724
18
18
  sphinx/roles.py,sha256=mTnbo0R6w5V9wlOmx2BU4P0MnpSj0csE9zeEdqT06zs,16966
19
- sphinx/theming.py,sha256=M9fQgECyQevHffOUZFR9MVHg0IHWv18TDSx8UVvTP_U,20312
19
+ sphinx/theming.py,sha256=weW8BDilQks_tRRnewsXTi2WTf0KilEkX753HKeH298,19895
20
20
  sphinx/versioning.py,sha256=IlROZblXuBBJGLgQkcuCiWa4DNDm3iNUrvHmzayASps,6240
21
- sphinx/_cli/__init__.py,sha256=XYuU9iaWqP2yHdl5_5mIdU3Z4Of6hBZbYDBnVuOSbZ8,9694
21
+ sphinx/_cli/__init__.py,sha256=wkG6YzQ2dbIlALI3Jnz3xzTXuyjB7qIO8k-bdN6XoOU,9740
22
22
  sphinx/_cli/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
23
  sphinx/_cli/util/colour.py,sha256=YanbRS5c_cwrPW6lQQi0DHIn0Ye2SRWoUcl-NaIEeTE,3032
24
24
  sphinx/_cli/util/errors.py,sha256=xKJMQ8syFDHffLpDf9TKq6u78LtQIAx0Y_dtT9zS2fc,4718
25
- sphinx/builders/__init__.py,sha256=nJTIAnoTZ6vF3ebthWUeCZhBjS1DnHkhybR0jEKk8fQ,29345
26
- sphinx/builders/_epub_base.py,sha256=h4rPF8thRAd7ZJqI8G0cick7sILG2y0ktRwOplrEICE,29111
27
- sphinx/builders/changes.py,sha256=Tz9a18tmhGwZiJuZkZrl13mzTSBoJuirTYvUkqppWy4,6723
25
+ sphinx/builders/__init__.py,sha256=W7b2KjvFs3nf9UwdEftQyMKXHATrNQIN2IVVC2G26c8,29308
26
+ sphinx/builders/_epub_base.py,sha256=kZKnQoVFES3ZdsKCUxDOcTUbdL8cjb-AZDh4xIq7nI4,29532
27
+ sphinx/builders/changes.py,sha256=1NMLFPW0I2_AAjT65iyYgFLpWdLS4RjHGXr2x67Ne9A,6822
28
28
  sphinx/builders/dirhtml.py,sha256=yw00d2HmkC4yulrYcDBz7olfEZsCEM7akYuXQRm4u8o,1594
29
29
  sphinx/builders/dummy.py,sha256=bF7IVI7qrmNXfsgfFrT6FUZLnW6-RENhniKhr1V3aX4,1075
30
- sphinx/builders/epub3.py,sha256=v9tPYpLexL7TJuLZ-7FxbyMWAecsljqdHOuWFpbWViE,11461
30
+ sphinx/builders/epub3.py,sha256=XpmKRiH-s1xxBHxk-ZmTcHE-uEd5GPwM7QWQPFTszY0,11516
31
31
  sphinx/builders/gettext.py,sha256=-h7af0Z7PW51DY-IoxkALbhXoWASHVhfMfokUvQpp7M,11791
32
- sphinx/builders/linkcheck.py,sha256=rCJ1rLLqOBQfEvczJCKIshd5z0EBLSiUcrsBxC5oNcY,29294
32
+ sphinx/builders/linkcheck.py,sha256=c14ib0ux4mla7iUf6k68q73VIfAbl58re-T56j44-wg,26919
33
33
  sphinx/builders/manpage.py,sha256=5XYxs6iSpc1bdL3IS5VHLt40oUYJAnO_TZLKhV5FO7U,4583
34
34
  sphinx/builders/singlehtml.py,sha256=mYsB_J5AOi7wEswNbH0v5XXZnmZkBmLRHJaQtz_nB-c,7749
35
- sphinx/builders/texinfo.py,sha256=cROws1DmYPp4-_uD62Ryu7Vn5Kv-JYIH1YCCm-_SRWU,9804
36
- sphinx/builders/text.py,sha256=YCNWggEL5GCjh5lQLT8z_NgVZdMYAHtAHfGAoUAvT0w,2996
37
- sphinx/builders/xml.py,sha256=SIblnQLGGzTPTv4xnFFy-Sf66YxP9q1n-28yoVajWhA,3901
38
- sphinx/builders/html/__init__.py,sha256=6xiPEQD9dlUZnnrEr7pJnwCPBxqlyZ-Jf9QjJ4f9LKk,59861
35
+ sphinx/builders/texinfo.py,sha256=nz8nIIljMHfrEb89EUnXLCD7KSA275eoc0PZtNK7cfo,9896
36
+ sphinx/builders/text.py,sha256=RoNTuXGBn9k3XxhvbFpiNiR6WYkP1MFT6B6_BnDeJCM,3046
37
+ sphinx/builders/xml.py,sha256=SiG6rPNmFE9R3rprIBNKODQbzk21QPtHIiCyKqa07TQ,3951
38
+ sphinx/builders/html/__init__.py,sha256=5nxDq59Dv_3zD-1KJDCuLHylPGfLdz2kdmyR9cdLSAQ,60208
39
39
  sphinx/builders/html/_assets.py,sha256=9GhVCpJDTD17WzZavhONH9kqOEGS9glD62kBQ16jLeA,5599
40
40
  sphinx/builders/html/transforms.py,sha256=DhIabbXbvZM8lrT9AvKJb9JoawsmEt__DhpoeXA8Yvw,2597
41
- sphinx/builders/latex/__init__.py,sha256=fQvWHt7EuFFQBghaD2_TCwEBaheQKkFbxKu9GIP4lWU,24497
41
+ sphinx/builders/latex/__init__.py,sha256=KmVBVPoVqNvleQsXLSdfvLctazDBQb7KmV2xsIv7I1Q,24908
42
42
  sphinx/builders/latex/constants.py,sha256=_Yu1kn9W6KEC97cBQEjs5FmpSSPDSPgbAnucR3FF06U,7527
43
43
  sphinx/builders/latex/nodes.py,sha256=S3BRn-_54R8b1PaZr9sb9wGG0OleDubO0sXrC-tdkYQ,872
44
44
  sphinx/builders/latex/theming.py,sha256=G6ZJWI13inqlXlntiHiSfqYJKk5YB5wChlMiGxVqwjQ,4505
45
- sphinx/builders/latex/transforms.py,sha256=Ul0BvlGrrn6s7QkCmKwqYtuf7U9OI7QylPo2803mrgI,21039
45
+ sphinx/builders/latex/transforms.py,sha256=MiYNgE6H6sIXWpsvO43kE3PMqQ8blG2p2q-u87LDTMo,21038
46
46
  sphinx/builders/latex/util.py,sha256=sAMav2oGWB3l-oQc2TxsH-P1zBbREZi282-2TtqQnbk,1703
47
47
  sphinx/cmd/__init__.py,sha256=X5XI0lk1-VMeBM6fjCLYc-a_094wd9KyOSKIjpXwge4,44
48
48
  sphinx/cmd/build.py,sha256=Ysqb1Bw16t3pFQQYTE1MubuDgMU9jgNSyNLglGobLhU,15814
49
49
  sphinx/cmd/make_mode.py,sha256=zyQrCH8tWPT2ifwDB5_Wm_H8MSwpQnh1Wg-F-LNrmco,7057
50
- sphinx/cmd/quickstart.py,sha256=XxF1hMsn7H0VZGy64yLEbTTSFc9ZANZHWIvEk21GOUE,24247
51
- sphinx/directives/__init__.py,sha256=PnsmKvTOcRgfwzp8NFfhmdVJfbcDktcHD7sd1fnddNE,15100
50
+ sphinx/cmd/quickstart.py,sha256=plnHwb-xlOLG0r-MeUbc77Fmc0tVRQte7DgEUZ-FSMU,23638
51
+ sphinx/directives/__init__.py,sha256=ql28VHzQ6qisUHIuuTrnJmsFZo_U3OXwvUmlhhmOxug,15335
52
52
  sphinx/directives/code.py,sha256=yTy4GsZZ6PYKdnhysJpEj3eYRIpDEoYIsWtm9io59p8,18264
53
- sphinx/directives/other.py,sha256=IMVRQyPT_zkU34V4A9pdsR8S4HnryoJutYCpt4LnFh8,16492
54
- sphinx/directives/patches.py,sha256=cK4KPUe1U7MOOxQzXshAJEMPKnpG5_T-7Ch5pOB5PXs,7801
55
- sphinx/domains/__init__.py,sha256=LLaAZAn0984o2LSYH_UZcEdndE9azmNUDALae74nuRE,15392
53
+ sphinx/directives/other.py,sha256=i-BAUC7VRNL7kFRF-CX0KCOKlancfihMkJqikc0kw90,16433
54
+ sphinx/directives/patches.py,sha256=yXcQCKEmL32GmHcVnKV9LW_WumUYl8EnEIupsljW6WY,7845
55
+ sphinx/domains/__init__.py,sha256=JCJlHT7yyEFAbx7TVmbvX2KsDgfq6cW7pd1sDCKJ1lo,15450
56
56
  sphinx/domains/changeset.py,sha256=J9LWgh2dtBAXbX6L3a4J8YB3-wA62AMS1GolKTQsWJ0,5692
57
57
  sphinx/domains/citation.py,sha256=G9i8IYsR1tsGfAln7Z9Z_wNL2FDM2sXbWgTojxN_77I,5767
58
58
  sphinx/domains/index.py,sha256=3eHbatgPlpfeEbJtqQ6HfBQlEFSem9rYG8fdMUExypU,4266
59
- sphinx/domains/javascript.py,sha256=Wi6V3B0TykHGfLYcLqDhSmUxalBVntXEJtzzdFArsy4,19223
60
- sphinx/domains/math.py,sha256=OJF3eKEZWGtR4zIQha3l_txUBUxEsrD1nHQc-HDDqNk,5728
59
+ sphinx/domains/javascript.py,sha256=LzjdqMlC8Bwz_x_buCiV7wERVKkfhXGlGe1kJ1ZjCTY,19194
60
+ sphinx/domains/math.py,sha256=Q0i04GFVlBLHhdAkCQmiVmsQCtno5J1-PHHWvlY7BXY,5727
61
61
  sphinx/domains/rst.py,sha256=HEd973tJlD8OXrg1Mmyufq9eed9M_W4utwtCHwDnhDY,10693
62
- sphinx/domains/c/__init__.py,sha256=xa8hn_dBre4oL9UD7VIVOLEEKwQwcmyGMv0u1ksxzG0,32679
63
- sphinx/domains/c/_ast.py,sha256=PFaTrXNu7FnbR15l32OBBg3xPfaq1HhBPKA73oIcSX0,65954
62
+ sphinx/domains/c/__init__.py,sha256=O4TznFcdiuPSoaLkDCvHXKJzpilyVGAIfhDXNoQr5eo,32679
63
+ sphinx/domains/c/_ast.py,sha256=EidrZhDl8t8voHxiw0tbCScoqjrhTUj6qgrMIqoKfgU,66044
64
64
  sphinx/domains/c/_ids.py,sha256=R_6xOt4CSGmDxkXwJ5MElKhLLjkZSJdZdvwIr0VvEoM,2220
65
- sphinx/domains/c/_parser.py,sha256=1jTwk2nHwZqDq5PCd2bxhmA8ElO9WBwHGCniaynH4Zs,41261
65
+ sphinx/domains/c/_parser.py,sha256=rJ2h5bj7FuFxIj7S4flmg8P18TGYvajG-D2GN1Pf3nw,41295
66
66
  sphinx/domains/c/_symbol.py,sha256=NZS4_-uxs1OcFnMYNXEkRE-VzdGRwc1MTQjOpHI1s4o,25993
67
- sphinx/domains/cpp/__init__.py,sha256=lMsTlvdNn2cEMCXgR8IRjgfbb8g7oY_nnvVRzUmCyZw,47154
68
- sphinx/domains/cpp/_ast.py,sha256=GeM5V5UobeKgmycesZqwcZqSoWmTxWk3h_g8rFQA2lI,163788
67
+ sphinx/domains/cpp/__init__.py,sha256=torzx87GGdOq3hWqS78duBOknmbcMd75KUpWkwPv9AA,47154
68
+ sphinx/domains/cpp/_ast.py,sha256=p7Q0udO0HnB9GRcNHuMf_IBDm3SopHOHxbVCZkOIETQ,163818
69
69
  sphinx/domains/cpp/_ids.py,sha256=-h42RrmFnuq4AyZ0EVHtAk_H_9Umrca24Tu-w73TKCw,18028
70
- sphinx/domains/cpp/_parser.py,sha256=EaKoUzpUgZnAFKZYfOBl_-Iw8z2LdYxfZtdWglpSE3Q,88250
71
- sphinx/domains/cpp/_symbol.py,sha256=0aiZMW2Lsn4Fiw3PCMT42u6zb9JZ52JbaGuAspp9DQk,48863
72
- sphinx/domains/python/__init__.py,sha256=mWEy28rgBrk1hBGoN5SOTw9PptIg58ghby_1iuLEVvA,35444
73
- sphinx/domains/python/_annotations.py,sha256=bLay4nHo1L7KxfX2exE2ttTLqwOnMBDVEg7r6v_YeSY,22302
74
- sphinx/domains/python/_object.py,sha256=5DjvYfjQwmJToudJQNSogfP4LIAMU8fp6rd-Xe6nhzY,17011
75
- sphinx/domains/std/__init__.py,sha256=gXNUycqNBSeFBXg89WStSk9pZsvaS6BuDtTBee-DWoM,49514
76
- sphinx/environment/__init__.py,sha256=8078TrLXUERa0RbBBLZxwPDndYqhqTZNrwlL2zwzj6A,32545
70
+ sphinx/domains/cpp/_parser.py,sha256=i83YLN8NVxnRTTIvWwYz-k7Y1fiT0jZ9DLFUwATKvAE,88250
71
+ sphinx/domains/cpp/_symbol.py,sha256=zMpQa7WvbhOlvVCZvAfhWXpQ16eIhOncf6EwVm8_MJ4,48863
72
+ sphinx/domains/python/__init__.py,sha256=bOD71LelNZKkgutWktS8ju7qoz714__cv1VpPTGlvmM,35415
73
+ sphinx/domains/python/_annotations.py,sha256=cO7U8JvRcKX1CObNlZrO57UcuhfTNRnczOHmVZiMixo,23388
74
+ sphinx/domains/python/_object.py,sha256=p4uRVcSCWfzHI0HxMxDrilVuyjvfqkjtyhWVtSANrdE,17010
75
+ sphinx/domains/std/__init__.py,sha256=NwHwOhKdG6SD4vPsTTI9btE3_rey22fic1bWkvGe8uc,49485
76
+ sphinx/environment/__init__.py,sha256=umL8gPOasc21rdJj_TfmOa3weF0ZHtTAmDEY8jn6DpE,31979
77
77
  sphinx/environment/adapters/__init__.py,sha256=VnDotW2UbxjWeVITmz7iTsVrzqQcvmLHr3euKqqKHwo,34
78
78
  sphinx/environment/adapters/asset.py,sha256=huGHWMReM80cD9b88thQeqvJZG3G6BCnG_DY2uIZt0Q,418
79
- sphinx/environment/adapters/indexentries.py,sha256=v_U51MZyYgkwVcFG0cCVICwSJALjlIxFHCpcxg2Nqbs,8926
80
- sphinx/environment/adapters/toctree.py,sha256=3HCv085j2kPRNZCKSDVTAQsHBHFmE-FZfITmZ6CAVtk,18824
79
+ sphinx/environment/adapters/indexentries.py,sha256=P_wReCJyXOZVs-0152oTAGJuv357mKjx8_b0O5jtbzI,8874
80
+ sphinx/environment/adapters/toctree.py,sha256=vCa1n-odYNgcqCl79nLarg_kr1H9-KOnQakMy1n_pEY,18826
81
81
  sphinx/environment/collectors/__init__.py,sha256=f3C6lHkxrMcbyd23UOZZmnzzh2UbzgXQvExv2wqP0QU,3136
82
82
  sphinx/environment/collectors/asset.py,sha256=S8rp4EAGR7ipzaTiqJYl6wotf3s2MRKDPe2oNjFkf_w,6394
83
83
  sphinx/environment/collectors/dependencies.py,sha256=8h8bCjecyrnB9lj7e0Aor9QZWS1CJAoJ5l6eMuw4VuU,1985
84
84
  sphinx/environment/collectors/metadata.py,sha256=Ku2PHIElGkdfPQCXaVAYGnrPJRXGKvEXmygPk1BiVsQ,2733
85
- sphinx/environment/collectors/title.py,sha256=xuPGXNHILsN2JIC-bPUCpjkpgGQ8wiZrZThnE0Gvge0,2237
86
- sphinx/environment/collectors/toctree.py,sha256=tYir0TzAIMkxjIp7_2uPy-1hPsewMLFPEIrvZyl5exw,16940
85
+ sphinx/environment/collectors/title.py,sha256=F_YhSjiAaA0jgOGEt7EAV80wnvNz94TY0angblUY3po,2270
86
+ sphinx/environment/collectors/toctree.py,sha256=rLFooRUMZ8XCbXGWVLbzZLBTpd0aeIAX99GM8a202bM,16973
87
87
  sphinx/ext/__init__.py,sha256=eTgzKayTdBtgvOc6-TtgyhsIEiKixojINnE4bf_dyZY,57
88
88
  sphinx/ext/apidoc.py,sha256=uzHTT4nYvmtJEa1h1Y2fBWic79HA0BQo5VfplrfW2Is,21887
89
89
  sphinx/ext/autosectionlabel.py,sha256=8pXINli2kyPic82NhLIMs9sFDL0iS-QOJyfvVOXWgCk,2386
90
90
  sphinx/ext/coverage.py,sha256=LP3BuVNI0Ylpu-LUkebOoeQUZe-eyJmy1LOuABoJ4Mg,21258
91
- sphinx/ext/doctest.py,sha256=vSXzEt6zc4wICnquzwVS2_t-JTf4YL_W1W9MovRDQfc,23438
91
+ sphinx/ext/doctest.py,sha256=mtSF1N5X1-lPBjYBzsTJBWN_YD54OQ5GDEbiPBdInvM,23441
92
92
  sphinx/ext/duration.py,sha256=s8506Au0l5Be7D2NEDtzIsVG4ZBm4oWyFlB3Te5mJEU,3177
93
93
  sphinx/ext/extlinks.py,sha256=UHsnpIR8zpH9iBXinTz_ygP0hW_jzmJzYSjXkupNxjE,4725
94
94
  sphinx/ext/githubpages.py,sha256=8OHrSSgxWfSao_bRBJBi6y3DQoe1iPqjCnL1KIsbj90,2045
95
- sphinx/ext/graphviz.py,sha256=X6mpD_UwzKXUPaBcnih3kN1_z-ue0i85qsDa6X6rOWc,17638
95
+ sphinx/ext/graphviz.py,sha256=B8FB8eLr2ea59FZoEmVJYmCeHQqNRGvVl_ITq6i7shE,17639
96
96
  sphinx/ext/ifconfig.py,sha256=3jTdCsDeVaSCZej8Tc4ivtlWtds3h8p-vNQ9dgDx1P0,2531
97
97
  sphinx/ext/imgconverter.py,sha256=KOLaEB45qXptUAwNKbvkXb6oMB6vyqOmTntz78vVCgg,3696
98
- sphinx/ext/imgmath.py,sha256=01mzOdmIDy5PpS8PT9pErrVfK-Ef9We-czpPCyObicc,15550
99
- sphinx/ext/inheritance_diagram.py,sha256=ocxm7JADD3_Ed43jK-LtawoRfO6IowjIGqJU-U7L83g,17490
98
+ sphinx/ext/imgmath.py,sha256=7H_PMC6cFbj4VozzJWKL8HexYmRriKZVyoxuyreh5zw,15551
99
+ sphinx/ext/inheritance_diagram.py,sha256=Hpxa78QfmqjydOux_pFB0zk97Mo_jy1RkkyPGxG6rEk,17491
100
100
  sphinx/ext/linkcode.py,sha256=x4Ku-cssPT771pj5Rp966kPSK20hq06O9pf03asl2lk,2352
101
- sphinx/ext/mathjax.py,sha256=ezbvP5pqDlTHhNwhGHj_sbquVLLqM2_8Th5YMIqIOWU,5408
102
- sphinx/ext/todo.py,sha256=xjoaguKakr0Xe6IMZASlCRD7YAlqCaHnK8KYtNL7Z-U,8327
103
- sphinx/ext/viewcode.py,sha256=KwmggBvSO0OK9w-WHDPKzG3SLsYNdN9xuJkb7xl8goQ,13792
104
- sphinx/ext/autodoc/__init__.py,sha256=aGYSAMwuGYQvIDNp365m7DM839yhn4wu-NfKEKzgktQ,116920
105
- sphinx/ext/autodoc/directive.py,sha256=IqDLJnc91_SxqlQkBR2yGoK_ewTzCjGwozCY0eP5HHY,5833
106
- sphinx/ext/autodoc/importer.py,sha256=RM8dL4e3dcXIooTg2guvEBcjYzd5lak8_QrGNiHgjEI,15841
101
+ sphinx/ext/mathjax.py,sha256=039LM1bTDlt01BdORkQU2Kx2Utn_-yFuBVOBerFpYlc,5409
102
+ sphinx/ext/todo.py,sha256=ZESgIdZnvvh0NXidcdqJjiSr_Y-alHMrtaQqxV1nVIA,8350
103
+ sphinx/ext/viewcode.py,sha256=_lnsW6NPZHZ0ZDw70L8lrIWcsc3cAOiA3-345I_88wc,13855
104
+ sphinx/ext/autodoc/__init__.py,sha256=Y6dbsFLtPJwWHnKzqHBbtStXuvgMEhV6G0DliY8Lkh4,114962
105
+ sphinx/ext/autodoc/directive.py,sha256=0i6Tp6WTd8UEupIAqic9BRN1OpPMhxII-uMY_77mRL0,5872
106
+ sphinx/ext/autodoc/importer.py,sha256=LCNU8ieyglCpfv1QkvDE-a9Y9-vsHm1iee-a7iDGkz0,15866
107
107
  sphinx/ext/autodoc/mock.py,sha256=qMGXSS0-s4ODVC8u0Ao9-TSTqbw2Nhcg3ZuQhBcl9dc,6049
108
- sphinx/ext/autodoc/preserve_defaults.py,sha256=eimSeG8656Z9KpCTuOKmbbASWLIDLbVUkverJDqOHJM,7121
108
+ sphinx/ext/autodoc/preserve_defaults.py,sha256=-JWkgpDvPWtnubUiFOLMfhDmnqg7Ma2xcdd4moEblak,7120
109
109
  sphinx/ext/autodoc/type_comment.py,sha256=FclaU566JP0ly2k0XupMi9efnBKWiW1Zoc9L1cQdliI,5422
110
110
  sphinx/ext/autodoc/typehints.py,sha256=LIO8sgLCCdvJAnmM5OSPQQHStwUa5igjZgnu803Fy4Q,7973
111
- sphinx/ext/autosummary/__init__.py,sha256=L3EoGQX_URQRh-ap_Kde6d6oGrByYqkSn5uBCAdWWpo,31862
112
- sphinx/ext/autosummary/generate.py,sha256=q0n46AAiwCAwELSZ-pecEvL8OJFpLp3CISDKlXMMQkU,28199
111
+ sphinx/ext/autosummary/__init__.py,sha256=3uVXaLYgquyk5CPSALONK30ynKhsF_SQMmMu1hpmieo,32130
112
+ sphinx/ext/autosummary/generate.py,sha256=SW7sJMtNjZfxjZXz__08qvb0JvrchuoR6QxXQzt2hxg,28253
113
113
  sphinx/ext/autosummary/templates/autosummary/base.rst,sha256=AfG9oeDMTKBsBf2lUKr-NolOeV7ImT_JrKG3KQkEGzE,106
114
114
  sphinx/ext/autosummary/templates/autosummary/class.rst,sha256=1uu4SSX9KRCeNlcr7FMRZ-DrPuW7E6tQ7QZC1asnAL0,553
115
115
  sphinx/ext/autosummary/templates/autosummary/module.rst,sha256=HuEHeghiPzJ5jgDNy3_3vZ7De-AtWZjgYx_57LrP9tM,1085
116
- sphinx/ext/intersphinx/__init__.py,sha256=olSC7q5eSOaQ_hFv_YRMlUd4fVFzMaotspUCfc198_U,2675
116
+ sphinx/ext/intersphinx/__init__.py,sha256=FdZnFq4CLNiJS2Rx5gguNKV9hnQHM6cnLuz9X6lUErc,3355
117
117
  sphinx/ext/intersphinx/__main__.py,sha256=zapvRzIUEUskvRfaYkf0okrNxPVL2rMWso4NvHOsz7g,218
118
- sphinx/ext/intersphinx/_cli.py,sha256=pcq57fnqtKa_MO3Hl4KbvkKsaDhyJofYqrKVcQh_WeQ,1440
119
- sphinx/ext/intersphinx/_load.py,sha256=92kayDPfE62ieHVDZAHVOoWp2hvDAmZylK1YVBS2i60,9610
120
- sphinx/ext/intersphinx/_resolve.py,sha256=LXSW-mtRb8u2hJtj1WeymcW6vi1JkIiecJ0c63OUdj4,20883
121
- sphinx/ext/intersphinx/_shared.py,sha256=z7MEIyMmlVWcJb8zSCExs-RRz0DoeDHsSgsJVxQstrM,1923
118
+ sphinx/ext/intersphinx/_cli.py,sha256=ule-GoRxPfJc9hGhCdufGrmFdUYto4ErRdQ79h19T7U,1501
119
+ sphinx/ext/intersphinx/_load.py,sha256=CrUz-E7T0N8o3FvU3mEzCaiPKCifN0RSQQ_m9DG-HGA,13736
120
+ sphinx/ext/intersphinx/_resolve.py,sha256=pVYa_unkLOMZg83lLyfKK14uc4HJWw7-3PPqJqyi47I,21027
121
+ sphinx/ext/intersphinx/_shared.py,sha256=5KAjorx5QKuj0GhsHpSY-Omyc06ha8H_gS30W6o_AhM,5467
122
122
  sphinx/ext/napoleon/__init__.py,sha256=nGH7cDpl-BnEyeEoRlpk28XQ-X7zIdYTDxIYkP0z0Fo,18153
123
- sphinx/ext/napoleon/docstring.py,sha256=QI6XEPlCh3ZUewnRjrx_hrciBEUB8qY_e4a5t4YZkZY,49017
124
- sphinx/locale/__init__.py,sha256=Z89AJiDoKlsRyNJrU9tyCiyKH7ApBKiBlkT8uhlvB9Y,7263
123
+ sphinx/ext/napoleon/docstring.py,sha256=DImNdKvEctIDda4NqGbfrkrrGAF1cB3zbR5hK-wz9GA,49017
124
+ sphinx/locale/__init__.py,sha256=u61rnvedi1WUvADaa034ggmvcLOCwtyRvbzkncMYa98,7296
125
125
  sphinx/locale/sphinx.pot,sha256=dJ1MrXH53ReUORSTANR3kSzKEm_SfmjZl4g7pG__j1c,91434
126
126
  sphinx/locale/.tx/config,sha256=WhhxMTRN6Jtvv0v4eQdX003u8JDsCtT9_Ln2n4X8eBM,165
127
127
  sphinx/locale/ar/LC_MESSAGES/sphinx.js,sha256=7IEiPDCGU7n_hbsbx5BqoIGYlusMKLXonApNkTPMdSA,3495
@@ -292,9 +292,9 @@ sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po,sha256=3CiWkDY6uvDbOc2qo5qXVVzVFVGJssJ
292
292
  sphinx/locale/sv/LC_MESSAGES/sphinx.js,sha256=sYbEozwp12g5BpvZ1epVdXQeVsBOe4crC7AXxg8VWqI,3261
293
293
  sphinx/locale/sv/LC_MESSAGES/sphinx.mo,sha256=gOy1O97wEJUf700KSm0C59hRdvzEwMT1h0JEzSexsi8,6376
294
294
  sphinx/locale/sv/LC_MESSAGES/sphinx.po,sha256=yZgPt7EzTRmzeX99MVDj14pzZ8T2tatS6ti_YjOP76I,93284
295
- sphinx/locale/ta/LC_MESSAGES/sphinx.js,sha256=lEF6xR0-WOr0rIGIZnvNZuJQbCCa2Rnpb-G_X2atfDM,10644
296
- sphinx/locale/ta/LC_MESSAGES/sphinx.mo,sha256=CaBJ88S-xWhr7lIKA598i8GVtB1MabDo56vEhK25-1A,137491
297
- sphinx/locale/ta/LC_MESSAGES/sphinx.po,sha256=bfh-Ef-H_shQ-tgYsnlc7xAGSWuAEBehwru_O5gqoIg,183430
295
+ sphinx/locale/ta/LC_MESSAGES/sphinx.js,sha256=Z_VSkp6AQYsRsJceRKXMWp8pxxizmTbxCMbU3GLrxH0,2300
296
+ sphinx/locale/ta/LC_MESSAGES/sphinx.mo,sha256=ZNLx56n-dKayAnZvnUqT4UhZ2IIvTYFv-ajKZ-LYKkw,647
297
+ sphinx/locale/ta/LC_MESSAGES/sphinx.po,sha256=tuMT-0MUfi38EobuWb79Cn-e98FXinhM6yyf-tT6Uz8,84381
298
298
  sphinx/locale/te/LC_MESSAGES/sphinx.js,sha256=Xla07Tz_nhkxy7nQ7LRuL4dbA7KYk73gmACHGJSYwSI,2301
299
299
  sphinx/locale/te/LC_MESSAGES/sphinx.mo,sha256=aaMwmnaL4ZhtTvJ_eI-hgQNljSOEti12Y-Zzp270Cew,489
300
300
  sphinx/locale/te/LC_MESSAGES/sphinx.po,sha256=GSQ70s6Jal4YQdXr57R2qIYyaWxpsjdLejW-BUgOQ04,91440
@@ -315,7 +315,7 @@ sphinx/locale/yue/LC_MESSAGES/sphinx.mo,sha256=Qz2gEm8_iqiOU6t-MdRSpSWzchwb1IbFv
315
315
  sphinx/locale/yue/LC_MESSAGES/sphinx.po,sha256=fTInWiPcbMOzTkNCgpMxdHvuDoUZnortWl1VX5tcYu8,91438
316
316
  sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js,sha256=Ms4qOciN2sxV8xmIBFKsXOQEfcXf-GfhQ6kHsbkHPVs,4318
317
317
  sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo,sha256=I7m3GDvtssnuSn4veCuX9tEOqnI_b6NZcMwbhB9XyNE,73260
318
- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po,sha256=45I8IgSvg4nXPVNYj2DPw4PmIwqS-8UN8mUaWme5Fzk,122030
318
+ sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po,sha256=w8pU8agHA3FVklqO64Vap5vP6eiJXWGfQOOr1tvenGM,116867
319
319
  sphinx/locale/zh_HK/LC_MESSAGES/sphinx.js,sha256=ZbQAiim_q3ynWkqeCt0-eZART7CoNZXDi4URAaJFyzo,2302
320
320
  sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo,sha256=HOnr3tkv1EyLcegD9C0Xs03SYmACPjzAStcts7WjbN4,501
321
321
  sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po,sha256=eTObc-T9K2fT825zwk9xpwCxERDYT_IbwzLCQCpLUGQ,91452
@@ -326,9 +326,9 @@ sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.js,sha256=Tt2nMAt1cVDpCu8DzEZFQ0cd8H
326
326
  sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo,sha256=59FWyxemEIyq_eRgFCt9OrNUR_4KjjRqCZM7IWidmYs,516
327
327
  sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po,sha256=PH-suw3OS_zTll5fuNuyJYL3voQq5tiJu7bVTv1bxXg,91467
328
328
  sphinx/pycode/__init__.py,sha256=dgOyw_XVGDMTH6G_GfDfvruivkAFTBMVJeYutC7HvIE,5663
329
- sphinx/pycode/ast.py,sha256=tMiNehYNFV2FICTScq-TAjAIKwwK7aTzJGJlOOMDcns,6903
330
- sphinx/pycode/parser.py,sha256=5xi4DKXETcSusZTH6Bz8azb0Nylf2n2pI3n1Fln0fdE,21558
331
- sphinx/search/__init__.py,sha256=yoETSDtDNNLvqHA_3AU9UU8cNgWNu8Bd5zoYAKTD44E,22625
329
+ sphinx/pycode/ast.py,sha256=GWBb2Yhyn8iSiij0BUpOqVnGkG5pUileIFJZl82ycPY,6916
330
+ sphinx/pycode/parser.py,sha256=M7mwtgV0qmcLJtAbX97XhNrlSrInIZI9uB0IlA4rbt8,21556
331
+ sphinx/search/__init__.py,sha256=GYIHXNV0rQnaxS3xM7zwv3CENGzWbkwDdkVPHd47RlQ,22645
332
332
  sphinx/search/da.py,sha256=V1MB6Fm22pDr6DqMe-EsDjDS4wEjEsakyjtQbqt0Oe8,3587
333
333
  sphinx/search/de.py,sha256=BD0sSdQAzUOwhjHKxXkl5P9Dgh_dThF9feBXQ1iFOQA,4663
334
334
  sphinx/search/en.py,sha256=vLe7P5KcRcNMvli9CYqhXlyN__qvm_RbyLOAghaFfPM,4924
@@ -398,22 +398,20 @@ sphinx/templates/latex/longtable.tex.jinja,sha256=VIuSxSPVSLMhv2qFd1rPmuWJibGEEf
398
398
  sphinx/templates/latex/sphinxmessages.sty.jinja,sha256=N9Tszwtp1E57mz7RfpQH2AvjpAHUPVREY-nNozxDRfk,944
399
399
  sphinx/templates/latex/tabular.tex.jinja,sha256=xxvO5DhX1EMuv0VS9oA9B5mrYa8IzWKQWsHtRi8IYBo,1406
400
400
  sphinx/templates/latex/tabulary.tex.jinja,sha256=y6z1JMtVHlKU7Am7jm8Sr6hdl_6I5Ev9f4AEKmhQcP8,1420
401
- sphinx/templates/quickstart/Makefile.jinja,sha256=dwRv9XGw_AkWtmwseD4fHVaRflev6_MGFQdjt_WrSXI,4031
402
401
  sphinx/templates/quickstart/Makefile.new.jinja,sha256=KobDbRiR48StwxroIgIth_rEVculGpA3kA93VMnM5Hc,656
403
402
  sphinx/templates/quickstart/conf.py.jinja,sha256=NESS5FSezA-nrvw2c6AGjTBV3zt7VSqIwAtD9e3YVCk,2129
404
- sphinx/templates/quickstart/make.bat.jinja,sha256=NYENBCwKpEH-DGKLJXBXC16z9zmnOACybHYOuRyznqk,3293
405
403
  sphinx/templates/quickstart/make.bat.new.jinja,sha256=WUv8Ogd_Pk_P2X3F2YMY5HfNCZVlAGfIDBIt4K36KgY,787
406
404
  sphinx/templates/quickstart/root_doc.rst.jinja,sha256=LN1_-BHgdF953u_Fie-aoyWc8WAAKO7O7ZLTQyamzPE,553
407
405
  sphinx/templates/texinfo/Makefile,sha256=PCeGkxsBfz8gCLOf7RfwSjS0AyvubOF-_ykkrInk5FU,1423
408
406
  sphinx/testing/__init__.py,sha256=eUkVgaQPTQJbIlJtVa9q3AKCG14Y_TrAufbKtyy6YJs,171
409
407
  sphinx/testing/fixtures.py,sha256=cLnt3zwwR2q1XEt4MLaoftZ9QK-piq4BaBFqmQwRrSM,7688
410
- sphinx/testing/path.py,sha256=lNg9CBnlKViv6y7dnatTIwwEgq9aq1FfJI0iLp9QMVo,6665
408
+ sphinx/testing/path.py,sha256=wAOu7mAwUem2a3AdtpoP9ydlg8M3IOsre2PG1W1E_go,6696
411
409
  sphinx/testing/restructuredtext.py,sha256=TOl7a8HvqzKhPSxh3YHpax9_wrYxJUKmuQPwLkzqHbY,1159
412
- sphinx/testing/util.py,sha256=AOIwPxPzYB85nx8nIkj_0b3jDfXU5QKF8fKwr-isfRA,9640
410
+ sphinx/testing/util.py,sha256=mzdt-eM2MHaHkIUKfEt01gdAEsJkrDWzZOXMJ4BewkY,9639
413
411
  sphinx/texinputs/LICRcyr2utf8.xdy,sha256=I_eroJJiDZWFHCzmeqvGPbziOJUFlOddmhjkgKwQZPE,4366
414
412
  sphinx/texinputs/LICRlatin2utf8.xdy,sha256=C6MbfqokFyKTl5dBpxW827Bl6AfhPtivp1UTW7IyjLQ,10188
415
413
  sphinx/texinputs/LatinRules.xdy,sha256=qCpjGrmo6ZdChkmNsQPU83im7pAqFvAZQDUMPM5hxFM,18890
416
- sphinx/texinputs/Makefile.jinja,sha256=V-aabhWFrC4RPKwdcXVf9r7i3AQWTXJsE8mIXNwDKFM,2401
414
+ sphinx/texinputs/Makefile.jinja,sha256=8l0u5ewzHVfp6WnTDWQRUPBQekwOCzgR6JIwYf2OPEI,2442
417
415
  sphinx/texinputs/latexmkjarc.jinja,sha256=MAEuOfgjE56gBm5tt9pr3x1dLkaYQRVvtLKKOyK_Riw,695
418
416
  sphinx/texinputs/latexmkrc.jinja,sha256=CaSKfWWrcA-l0BMSxa8h3YFf-C_hMjsNs2fe5Z9XEwA,1104
419
417
  sphinx/texinputs/make.bat.jinja,sha256=ZgR_dDOU01AT_VFmD4L97dbpTDSUGHksLjVfTmBj2gg,1041
@@ -441,7 +439,7 @@ sphinx/texinputs/sphinxpackageboxes.sty,sha256=Gak07JiZONSDM4xP4kOHEeoaF0Z4ztzHg
441
439
  sphinx/texinputs/sphinxpackagecyrillic.sty,sha256=LEJ6Ost3RzOCpmit4R4AXRXLuOnVY7EoUtDPG9EcwZo,2590
442
440
  sphinx/texinputs/sphinxpackagefootnote.sty,sha256=WGOIayYISdVRE02yvbilskCk2gJGIyb87ccYUVjSU4s,15330
443
441
  sphinx/texinputs/sphinxpackagesubstitutefont.sty,sha256=Hs_O33bV5FtSOSlyoGgWUhc4wAVW_dU95J12YuOKr9s,755
444
- sphinx/texinputs_win/Makefile.jinja,sha256=nLm13JY4ZQrL9GXvMnMgf6-YZpQyvjmobJau5HRxkxc,2503
442
+ sphinx/texinputs_win/Makefile.jinja,sha256=3W_FMcGHsfj-OKcCy73gXO9EX5FCrVAFhhP0nUkMaGA,2544
445
443
  sphinx/themes/agogo/layout.html,sha256=-6oU_gxBK_xJP0qW_t7IG3bcAEHpxH31a53aqXd4mmo,3318
446
444
  sphinx/themes/agogo/theme.toml,sha256=mBku0dxk8VkMkBQ7iFKnTeDgsEFjQqgdBZ-gTGbcL-8,541
447
445
  sphinx/themes/agogo/static/agogo.css.jinja,sha256=hIERF51qslya6eFA76R875AzL3HGh43q6OuZGzEDVGM,9236
@@ -537,55 +535,55 @@ sphinx/themes/sphinxdoc/static/navigation.png,sha256=P_UYPDtA6_O8T5yPc0pylIgA9Z9
537
535
  sphinx/themes/sphinxdoc/static/sphinxdoc.css.jinja,sha256=a4CtHu34gG8pJdvYeW0_BtRi8Z2cwiYwCngvf4oarFQ,6349
538
536
  sphinx/themes/traditional/theme.toml,sha256=62jCk65qFyUPdBmYF_9gdCJROI9Ki9UatbPK-82lVck,123
539
537
  sphinx/themes/traditional/static/traditional.css.jinja,sha256=MRylDg8au9OFDGvCjhA9bwJGSXShJiCsMNAqeOrnda0,12162
540
- sphinx/transforms/__init__.py,sha256=2nrQb5e8g1orrP-aBqO_00UBdv2t-xCt4WdOzKqhhUM,17529
538
+ sphinx/transforms/__init__.py,sha256=jDkcp0D8Da-UqlMAgquleCN6njzC4D0OY2J7MZCHgvw,17561
541
539
  sphinx/transforms/compact_bullet_list.py,sha256=Y3Lo-Dqp4mSk826ZjqEhUYQJoi643FyaDCRKydJNM-8,2844
542
540
  sphinx/transforms/i18n.py,sha256=KdfgrCC0RlY50_IpB998dMcIaemd9Wzu6tMKpkjcr6Y,26072
543
- sphinx/transforms/references.py,sha256=aY0Y5rpmWDRdetj4kMUTzOi4WyLHYUfD9o87jaT7xUM,1418
541
+ sphinx/transforms/references.py,sha256=WbIrhe6A5vSDRe8NXqp2o_pfvfE8HGf75-XfzS3cbyA,1451
544
542
  sphinx/transforms/post_transforms/__init__.py,sha256=SFKX9Y11nzrksV3TnoZwTjp_zSMZqK3sb9dT_udKLw4,12627
545
543
  sphinx/transforms/post_transforms/code.py,sha256=PdE6XgBLmKVmHtpwX8ixDMSfDAY0mds9YTYFscSQ_UY,4587
546
544
  sphinx/transforms/post_transforms/images.py,sha256=7pCetn7M9gzBXjtt4eM3sZzOe0iW2PoVYrpnlFGW6x0,10420
547
- sphinx/util/__init__.py,sha256=Tmc05cE6lRfhbnh5Uf6BZQEgIuuXGAXTv5MdOKUTorI,10441
545
+ sphinx/util/__init__.py,sha256=WFsdNCvKhBmb0cDJdxZT7BncZnHpxASpTxZny1mGesQ,9092
548
546
  sphinx/util/_io.py,sha256=GCiCi91Au93IfqNGqkkNgTB-TAWHUTcgoQq5-CNEq9U,892
549
- sphinx/util/_pathlib.py,sha256=dcY6Y9My4qgX4hQ5xTYv-dhIKa4O0u0aCp2R9h430VI,4650
547
+ sphinx/util/_timestamps.py,sha256=4OkEaMTVHYpWSCHkF_nfpMKoNqxqByIMNCQhLFe5Gk8,403
550
548
  sphinx/util/build_phase.py,sha256=vP_oJuPjl9SU7MbK-QTHBeqcs7KhQ-RoL4hNWTt-BJY,241
551
- sphinx/util/cfamily.py,sha256=SaLEYi2CeHx8DCJ0CR0PjFUJk0KmPNazRA5VEbMu7mA,16431
552
- sphinx/util/console.py,sha256=pmi2Sigof2qSrYazYEHW6uzRAbbx9tlQHkztXcYMLuw,6033
553
- sphinx/util/display.py,sha256=rlnBcJfeBW-GhsXoP0Zi20GnYM-hRxcPY0TQxN8Qu4w,3062
554
- sphinx/util/docfields.py,sha256=WIrmB3z4B1fsE7IGoRU9f7fB526HnOHFuBTb27Qz4m8,16975
549
+ sphinx/util/cfamily.py,sha256=RkNSPzNNYh6IWp-Q97Q3xU-bazc-B-3URNHrQgFiSc4,16478
550
+ sphinx/util/console.py,sha256=B3qpXQk5ixv_mCfhVzeiqxdHB6ctodfbsD_i3DHcLVo,6070
551
+ sphinx/util/display.py,sha256=M2JXvDx8HnXvaNSHERb76i88slM9npcFPOnbf5tRjcQ,3061
552
+ sphinx/util/docfields.py,sha256=Vzdu3QkYToRkCf-iYtLbyAL1m6HalXThirAZvKvT-iM,16974
555
553
  sphinx/util/docstrings.py,sha256=g__pCkpIBjCew6rP6ytJAYXgTKMKxjTdUDOaF2EDqCs,2944
556
- sphinx/util/docutils.py,sha256=A-msKRFgAD7UD-D6F-w4o9nKegHF0cX7fLuaF5MFsM0,24180
554
+ sphinx/util/docutils.py,sha256=pSctiPPNO2GKoClRo64k2rn-I0nVDhJEBSwIGnxxeOw,24688
557
555
  sphinx/util/exceptions.py,sha256=_ZcjI6sTQv0bLlkBu5XsD_QwUHphjKKq17391azKs7c,2010
558
- sphinx/util/fileutil.py,sha256=J-R7g3nI6CywRpXk1iWEzL7BqFCwH5Ecus3eBfaOP6w,4328
556
+ sphinx/util/fileutil.py,sha256=jMeqsbnKOACNyCsuWFuyQNqQo71fqwWQbDq3RynyWCI,5522
559
557
  sphinx/util/http_date.py,sha256=j9jvARRJrYjuIK_oR4H4dLyeCeZIDaOGCQz-8FDpufg,1626
560
- sphinx/util/i18n.py,sha256=K5smw0FQ3Hkr4Bp17o2BQRMK-8s76edJPsdWgLT5AFM,10542
561
- sphinx/util/images.py,sha256=Y5Oy1M_BD6HRsUyWFQ2DvvCL4VDOFHDPZxtYnO8QEfM,3701
558
+ sphinx/util/i18n.py,sha256=b3euz0Tn0-SnW5dgOcQ4el4ET_n4MNQVNmfgIbwW8AM,10606
559
+ sphinx/util/images.py,sha256=SE5HaM3BUYisjBFhUxbsD4CukGTBWEHbDXKJ77GC21E,3752
562
560
  sphinx/util/index_entries.py,sha256=wEa55m_tez3UFNFEVuIesEQKWavANQ2O-l86k1If0sY,986
563
- sphinx/util/inspect.py,sha256=BdltEA-0lZKhCcCa3DmS7kIV7Xf5KZS6d8VKf6uLNMI,33077
564
- sphinx/util/inventory.py,sha256=Mo9JGfs-4hFv8l94-w53L5uarrSMdWiagPCWjCeafI4,7967
561
+ sphinx/util/inspect.py,sha256=IPACQc1CTyXw9Xt2znORZvLNd1xOqlBJofbT7OU8p6s,32322
562
+ sphinx/util/inventory.py,sha256=vxKkV7jn6RXYhsdgOGPIUG4BQkeuCGO_k0pplAZu3WA,7967
565
563
  sphinx/util/logging.py,sha256=WokXNrpfjX7kekEE6N59MitS23DzdCpyEw0GTiQovug,20542
566
- sphinx/util/matching.py,sha256=pywT5EKjUUJ-PX4H6mm-LA3f37AvYfxwEpraHHrhVsI,5368
567
- sphinx/util/math.py,sha256=GuBqbvunQfOE2JpxjFsUoWwujDhWaYELczJIyNGzLhE,1984
568
- sphinx/util/nodes.py,sha256=X9mpo0MiLEWcYYDIDY5zUWnQwBIQYzfGj-TgP5loQMM,24638
569
- sphinx/util/osutil.py,sha256=hyqgVweL0QT7Lv402nZ-VaBWjXaUSNtfwe8nj0ww5WI,7005
570
- sphinx/util/parallel.py,sha256=PActfjRJU0-NNqAgfuuVsyQc7mXiowuPLYwXYaAa7HI,5272
564
+ sphinx/util/matching.py,sha256=QPjNwrQTU8AJYlcn8PsdgzRA2J9XImd3qIxEmG0CgS0,5368
565
+ sphinx/util/math.py,sha256=oCVLqoa1de61u3yY48DzsAFZSTdAwGRbzw_-k9XorFo,1984
566
+ sphinx/util/nodes.py,sha256=1HFsan1mxV9lUQC83dT5DKNATRtGWeKIl9sNEaJwZpQ,24622
567
+ sphinx/util/osutil.py,sha256=T3mhSUYSipjpyUiDya9_f8j7_-eDVnMNcQOHDiKrbxI,7839
568
+ sphinx/util/parallel.py,sha256=G1FVaC_OMvT7xvNt5KGUzeWEnVru4luE3X8rqqQ04Og,5272
571
569
  sphinx/util/parsing.py,sha256=3F3mbV2OjHLUnrU2trwQxKabfk_x0c8_onCKGNDNUJk,3321
572
570
  sphinx/util/png.py,sha256=78SpKyEuQTlaHXIpnHZ3kDaTQZqhNivGcW7KXbrG7Ns,1445
573
- sphinx/util/requests.py,sha256=VbMPIzL97wusDa57BE9pGYY-3VUbTC8desGDqxNOC5o,2455
571
+ sphinx/util/requests.py,sha256=zUS88cvmmNtsv4PU_BLY7EsZMs_MWiwz_cm5SaE_eF8,2454
574
572
  sphinx/util/rst.py,sha256=YY2Wk4Pn1vNQAi1iDjUCYeBYGutYYo4curTpdsVcyKE,3585
575
573
  sphinx/util/tags.py,sha256=K6tiZhx-V60aKZ4Z3ie5kasMYGGV_WPUTq8ncWlWnJM,3927
576
- sphinx/util/template.py,sha256=jxQgY24NYYfMc1M951DKQn2oSk0-wxEGqKBPR98eRbc,5146
574
+ sphinx/util/template.py,sha256=aoyfjipov8vBwOfKGahtBRRSkwRAW_lupkWOhbFJFwk,5145
577
575
  sphinx/util/texescape.py,sha256=eGHE_GX732SVeSHcmprXbOa2euwNh37kREwWPTY1hvY,5442
578
- sphinx/util/typing.py,sha256=nSZtWgMw4IqRkjplxPANTlTd7Nj5hvUrT6VLVqThO9M,22617
576
+ sphinx/util/typing.py,sha256=kVkxggN0PuvDrgflaRSZ1gdNR9shRgVgOSbJvlIr48k,22882
579
577
  sphinx/writers/__init__.py,sha256=efGdnx4MWlPEDzXACf4Q18Oi3GTyY5Ob14I_j3XXtXc,31
580
- sphinx/writers/html.py,sha256=ptitqWUkA4wnY0HuPIjy1GuKG4cOPCuPlAdH7aMRhyg,1604
581
- sphinx/writers/html5.py,sha256=KmE-WAPcIX1laEHXBX2H8zRwCDC66vGzys_32UV5yM4,37671
582
- sphinx/writers/latex.py,sha256=rJLo1X-4cMuP-uC_-RJ_4jjtSRYs1S2MwNCT1dJOafg,92659
583
- sphinx/writers/manpage.py,sha256=iLoC4i81W52dTl8Kpug65CV1M7cCz1buGgsN7FhazYo,16215
584
- sphinx/writers/texinfo.py,sha256=UU3Zrt-zBgdwYgqj4BJFNthggzMr_Gllx2ewBeWrkcI,53451
585
- sphinx/writers/text.py,sha256=HEiYXsWXO9QVOazg2V3D0ehGTnK38dAtYP9v0rst684,42964
586
- sphinx/writers/xml.py,sha256=NyDl82hCFSRiHrCZV6vBfn4AsAyXH6khtSJEfhOX8a0,1502
587
- sphinx-7.4.6.dist-info/entry_points.txt,sha256=KU_c9jqXj7yyZylSz11XRIXG3gAZApQa0d5DmcfyA7M,188
588
- sphinx-7.4.6.dist-info/LICENSE.rst,sha256=HdZPUFcmQaLySBc9fKvRC5aOUNkxL9Gz5py0p6XGDk4,3135
589
- sphinx-7.4.6.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
590
- sphinx-7.4.6.dist-info/METADATA,sha256=CvuHVqocZr1i5bNql51QIW9JtCIuLJ9Q0HcpyYRaQe4,6113
591
- sphinx-7.4.6.dist-info/RECORD,,
578
+ sphinx/writers/html.py,sha256=eXf1wH9Vt-GWREN4_1tA4B0ibGRriqSnv3sPYw0gcqw,1626
579
+ sphinx/writers/html5.py,sha256=RZuVwQq6lPVp6SC1w5XN6xaAaPy5BdYKRGigRg8YRBk,37693
580
+ sphinx/writers/latex.py,sha256=6xD3EyJTDnsZLqpVGHuviEQypY6JqpZIctwFZnDcqSM,92678
581
+ sphinx/writers/manpage.py,sha256=7RFc0CEnUyejf5vEp9M18JnZS6lv8ZxOvq3Y2KgNQdQ,16259
582
+ sphinx/writers/texinfo.py,sha256=2XL6KCGBOeFCs1wu0gInQ6ALssgGvPeKlnmoSJ9ce1s,53470
583
+ sphinx/writers/text.py,sha256=SYlQC54pxkiF8nNJCthDwa2m7Sb2UKmRS-jC-SjFn84,43006
584
+ sphinx/writers/xml.py,sha256=4rj6wdeMFqR-aE6MR_j2VvdKL3cRLv_qgB8wSARkc3s,1546
585
+ sphinx-8.0.0rc1.dist-info/entry_points.txt,sha256=KU_c9jqXj7yyZylSz11XRIXG3gAZApQa0d5DmcfyA7M,188
586
+ sphinx-8.0.0rc1.dist-info/LICENSE.rst,sha256=HdZPUFcmQaLySBc9fKvRC5aOUNkxL9Gz5py0p6XGDk4,3135
587
+ sphinx-8.0.0rc1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
588
+ sphinx-8.0.0rc1.dist-info/METADATA,sha256=knNwBLayPr_AnxLvtGkT79HC3A6WAEJO20pPh0CSuH4,6208
589
+ sphinx-8.0.0rc1.dist-info/RECORD,,
@@ -1,98 +0,0 @@
1
- # Makefile for Sphinx documentation
2
- #
3
-
4
- # You can set these variables from the command line.
5
- SPHINXOPTS ?=
6
- SPHINXBUILD ?= sphinx-build
7
- PAPER ?=
8
- SOURCEDIR = {{ rsrcdir }}
9
- BUILDDIR = {{ rbuilddir }}
10
-
11
- # Internal variables.
12
- PAPEROPT_a4 = -D latex_elements.papersize=a4paper
13
- PAPEROPT_letter = -D latex_elements.papersize=letterpaper
14
- # $(O) is meant as a shortcut for $(SPHINXOPTS)
15
- ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) $(O) $(SOURCEDIR)
16
- # the i18n builder cannot share the environment and doctrees with the others
17
- I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) $(O) $(SOURCEDIR)
18
-
19
- .PHONY: help
20
- help:
21
- @echo "Please use \`make <target>' where <target> is one of"
22
- @echo " html to make standalone HTML files"
23
- @echo " dirhtml to make HTML files named index.html in directories"
24
- @echo " singlehtml to make a single large HTML file"
25
- @echo " pickle to make pickle files"
26
- @echo " json to make JSON files"
27
- @echo " htmlhelp to make HTML files and an HTML help project"
28
- @echo " qthelp to make HTML files and a qthelp project"
29
- @echo " applehelp to make an Apple Help Book"
30
- @echo " devhelp to make HTML files and a Devhelp project"
31
- @echo " epub to make an epub"
32
- @echo " latex to make LaTeX files (you can set PAPER=a4 or PAPER=letter)"
33
- @echo " latexpdf to make LaTeX files and then PDFs out of them"
34
- @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx"
35
- @echo " lualatexpdf to make LaTeX files and run them through lualatex"
36
- @echo " xelatexpdf to make LaTeX files and run them through xelatex"
37
- @echo " text to make text files"
38
- @echo " man to make manual pages"
39
- @echo " texinfo to make Texinfo files"
40
- @echo " info to make Texinfo files and run them through makeinfo"
41
- @echo " gettext to make PO message catalogs"
42
- @echo " changes to make an overview of all changed/added/deprecated items"
43
- @echo " xml to make Docutils-native XML files"
44
- @echo " pseudoxml to make pseudoxml-XML files for display purposes"
45
- @echo " linkcheck to check all external links for integrity"
46
- @echo " doctest to run all doctests embedded in the documentation (if enabled)"
47
- @echo " coverage to run coverage check of the documentation (if enabled)"
48
- @echo " dummy to check syntax errors of document sources"
49
- @echo " clean to remove everything in the build directory"
50
-
51
- .PHONY: clean
52
- clean:
53
- rm -rf $(BUILDDIR)
54
-
55
- .PHONY: latexpdf
56
- latexpdf:
57
- $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
58
- @echo "Running LaTeX files through pdflatex..."
59
- $(MAKE) -C $(BUILDDIR)/latex all-pdf
60
- @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
61
-
62
- .PHONY: latexpdfja
63
- latexpdfja:
64
- $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
65
- @echo "Running LaTeX files through platex and dvipdfmx..."
66
- $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja
67
- @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
68
-
69
- .PHONY: lualatexpdf
70
- lualatexpdf:
71
- $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
72
- @echo "Running LaTeX files through lualatex..."
73
- $(MAKE) PDFLATEX=lualatex -C $(BUILDDIR)/latex all-pdf
74
- @echo "lualatex finished; the PDF files are in $(BUILDDIR)/latex."
75
-
76
- .PHONY: xelatexpdf
77
- xelatexpdf:
78
- $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
79
- @echo "Running LaTeX files through xelatex..."
80
- $(MAKE) PDFLATEX=xelatex -C $(BUILDDIR)/latex all-pdf
81
- @echo "xelatex finished; the PDF files are in $(BUILDDIR)/latex."
82
-
83
- .PHONY: info
84
- info:
85
- $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
86
- @echo "Running Texinfo files through makeinfo..."
87
- make -C $(BUILDDIR)/texinfo info
88
- @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."
89
-
90
- .PHONY: gettext
91
- gettext:
92
- $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
93
-
94
- # Catch-all target: route all unknown targets to Sphinx
95
- .PHONY: Makefile
96
- %: Makefile
97
- $(SPHINXBUILD) -b "$@" $(ALLSPHINXOPTS) "$(BUILDDIR)/$@"
98
-
@@ -1,110 +0,0 @@
1
- @ECHO OFF
2
-
3
- REM Command file for Sphinx documentation
4
-
5
- pushd %~dp0
6
-
7
- if "%SPHINXBUILD%" == "" (
8
- set SPHINXBUILD=sphinx-build
9
- )
10
- set BUILDDIR={{ rbuilddir }}
11
- set SOURCEDIR={{ rsrcdir }}
12
- set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% %O% %SOURCEDIR%
13
- set I18NSPHINXOPTS=%SPHINXOPTS% %SOURCEDIR%
14
- if NOT "%PAPER%" == "" (
15
- set ALLSPHINXOPTS=-D latex_elements.papersize=%PAPER%paper %ALLSPHINXOPTS%
16
- set I18NSPHINXOPTS=-D latex_elements.papersize=%PAPER%paper %I18NSPHINXOPTS%
17
- )
18
-
19
- if "%1" == "" goto help
20
-
21
- if "%1" == "help" (
22
- :help
23
- echo.Please use `make ^<target^>` where ^<target^> is one of
24
- echo. html to make standalone HTML files
25
- echo. dirhtml to make HTML files named index.html in directories
26
- echo. singlehtml to make a single large HTML file
27
- echo. pickle to make pickle files
28
- echo. json to make JSON files
29
- echo. htmlhelp to make HTML files and an HTML help project
30
- echo. qthelp to make HTML files and a Qt help project
31
- echo. devhelp to make HTML files and a Devhelp project
32
- echo. epub to make an EPUB
33
- echo. latex to make LaTeX files (you can set PAPER=a4 or PAPER=letter)
34
- echo. latexpdf to make LaTeX files and then PDFs out of them
35
- echo. text to make text files
36
- echo. man to make manual pages
37
- echo. texinfo to make Texinfo files
38
- echo. gettext to make PO message catalogs
39
- echo. changes to make an overview over all changed/added/deprecated items
40
- echo. xml to make Docutils-native XML files
41
- echo. pseudoxml to make pseudoxml-XML files for display purposes
42
- echo. linkcheck to check all external links for integrity
43
- echo. doctest to run all doctests embedded in the documentation if enabled
44
- echo. coverage to run coverage check of the documentation if enabled
45
- echo. dummy to check syntax errors of document sources
46
- echo. clean to remove everything in the build directory
47
- goto end
48
- )
49
-
50
- if "%1" == "clean" (
51
- for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
52
- del /q /s %BUILDDIR%\*
53
- goto end
54
- )
55
-
56
- REM Check if sphinx-build is available and fallback to Python version if any
57
- %SPHINXBUILD% 1>NUL 2>NUL
58
- if errorlevel 9009 goto sphinx_python
59
- goto sphinx_ok
60
-
61
- :sphinx_python
62
-
63
- set SPHINXBUILD=python -m sphinx.__init__
64
- %SPHINXBUILD% 2> nul
65
- if errorlevel 9009 (
66
- echo.
67
- echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
68
- echo.installed, then set the SPHINXBUILD environment variable to point
69
- echo.to the full path of the 'sphinx-build' executable. Alternatively you
70
- echo.may add the Sphinx directory to PATH.
71
- echo.
72
- echo.If you don't have Sphinx installed, grab it from
73
- echo.https://www.sphinx-doc.org/
74
- exit /b 1
75
- )
76
-
77
- :sphinx_ok
78
-
79
- if "%1" == "latexpdf" (
80
- %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
81
- cd %BUILDDIR%/latex
82
- make all-pdf
83
- cd %~dp0
84
- echo.
85
- echo.Build finished; the PDF files are in %BUILDDIR%/latex.
86
- goto end
87
- )
88
-
89
- if "%1" == "latexpdfja" (
90
- %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
91
- cd %BUILDDIR%/latex
92
- make all-pdf-ja
93
- cd %~dp0
94
- echo.
95
- echo.Build finished; the PDF files are in %BUILDDIR%/latex.
96
- goto end
97
- )
98
-
99
- if "%1" == "gettext" (
100
- %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
101
- if errorlevel 1 exit /b 1
102
- goto end
103
- )
104
-
105
- %SPHINXBUILD% -b %1 %ALLSPHINXOPTS% %BUILDDIR%/%1
106
- goto end
107
-
108
- :end
109
- popd
110
-