[Python-modules-commits] [sphinx] branch upstream updated (405ccc3 -> 0924d5b)
Dmitry Shachnev
mitya57 at moszumanska.debian.org
Sun Jul 9 09:39:45 UTC 2017
This is an automated email from the git hooks/post-receive script.
mitya57 pushed a change to branch upstream
in repository sphinx.
from 405ccc3 New upstream version 1.5.6
new 0924d5b New upstream version 1.6.3
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
AUTHORS | 6 +-
CHANGES | 358 ++++-
CONTRIBUTING.rst | 52 +-
EXAMPLES | 36 +-
LICENSE | 4 +-
Makefile | 34 +-
PKG-INFO | 2 +-
README.rst | 2 +-
Sphinx.egg-info/PKG-INFO | 2 +-
Sphinx.egg-info/SOURCES.txt | 275 ++--
Sphinx.egg-info/requires.txt | 5 +
babel.cfg | 13 +-
doc/_static/conf.py.txt | 7 +-
doc/builders.rst | 69 +-
doc/conf.py | 8 +-
doc/config.rst | 169 +--
doc/contents.rst | 1 +
doc/develop.rst | 60 +-
doc/domains.rst | 45 +-
doc/ext/autodoc.rst | 12 +-
doc/ext/autosectionlabel.rst | 16 +-
doc/ext/builtins.rst | 1 +
doc/ext/doctest.rst | 15 +-
doc/ext/example_google.py | 2 +-
doc/ext/example_numpy.py | 2 +-
doc/ext/graphviz.rst | 17 +-
doc/ext/imgconverter.rst | 30 +
doc/ext/math.rst | 14 +-
doc/extdev/appapi.rst | 44 +-
doc/extdev/builderapi.rst | 6 +
doc/extdev/collectorapi.rst | 9 +
doc/extdev/index.rst | 32 +
doc/extdev/logging.rst | 77 +
doc/extdev/nodes.rst | 1 -
doc/extdev/tutorial.rst | 25 +-
doc/extensions.rst | 2 +-
doc/faq.rst | 28 +-
doc/intl.rst | 2 +-
doc/intro.rst | 14 +-
doc/invocation.rst | 2 +-
doc/latex.rst | 555 ++++---
doc/markup/code.rst | 18 +-
doc/markup/misc.rst | 102 +-
doc/markup/toctree.rst | 2 +-
doc/rest.rst | 6 +-
doc/setuptools.rst | 178 +++
doc/templating.rst | 69 +-
doc/theming.rst | 80 +-
doc/tutorial.rst | 1 +
doc/web/api.rst | 21 +-
doc/web/quickstart.rst | 10 +-
doc/web/searchadapters.rst | 6 +-
doc/web/storagebackends.rst | 7 +-
setup.cfg | 5 +-
setup.py | 9 +
sphinx/__init__.py | 27 +-
sphinx/addnodes.py | 57 +-
sphinx/apidoc.py | 35 +-
sphinx/application.py | 815 +++++-----
sphinx/builders/__init__.py | 255 ++--
sphinx/builders/{epub.py => _epub_base.py} | 481 +++---
sphinx/builders/applehelp.py | 61 +-
sphinx/builders/changes.py | 49 +-
sphinx/builders/devhelp.py | 25 +-
sphinx/builders/dummy.py | 13 +
sphinx/builders/epub2.py | 100 ++
sphinx/builders/epub3.py | 318 ++--
sphinx/builders/gettext.py | 103 +-
sphinx/builders/html.py | 452 +++---
sphinx/builders/htmlhelp.py | 38 +-
sphinx/builders/latex.py | 195 +--
sphinx/builders/linkcheck.py | 73 +-
sphinx/builders/manpage.py | 37 +-
sphinx/builders/qthelp.py | 46 +-
sphinx/builders/texinfo.py | 92 +-
sphinx/builders/text.py | 25 +-
sphinx/builders/websupport.py | 167 +--
sphinx/builders/xml.py | 21 +-
sphinx/cmdline.py | 44 +-
sphinx/config.py | 110 +-
sphinx/deprecation.py | 10 +-
sphinx/directives/__init__.py | 26 +-
sphinx/directives/code.py | 471 +++---
sphinx/directives/other.py | 38 +-
sphinx/directives/patches.py | 8 +
sphinx/domains/__init__.py | 83 +-
sphinx/domains/c.py | 35 +-
sphinx/domains/cpp.py | 756 +++++++---
sphinx/domains/javascript.py | 272 +++-
sphinx/domains/python.py | 111 +-
sphinx/domains/rst.py | 23 +-
sphinx/domains/std.py | 196 ++-
sphinx/environment/__init__.py | 803 ++++------
.../{writers => environment/adapters}/__init__.py | 6 +-
sphinx/environment/adapters/asset.py | 28 +
.../{managers => adapters}/indexentries.py | 64 +-
sphinx/environment/adapters/toctree.py | 336 +++++
sphinx/environment/collectors/__init__.py | 85 ++
sphinx/environment/collectors/asset.py | 149 ++
sphinx/environment/collectors/dependencies.py | 66 +
sphinx/environment/collectors/indexentries.py | 66 +
sphinx/environment/collectors/metadata.py | 79 +
sphinx/environment/collectors/title.py | 72 +
sphinx/environment/collectors/toctree.py | 294 ++++
sphinx/environment/managers/__init__.py | 37 -
sphinx/environment/managers/toctree.py | 565 -------
sphinx/errors.py | 10 +
sphinx/events.py | 87 ++
sphinx/ext/autodoc.py | 341 +++--
sphinx/ext/autosectionlabel.py | 14 +-
sphinx/ext/autosummary/__init__.py | 83 +-
sphinx/ext/autosummary/generate.py | 83 +-
sphinx/ext/coverage.py | 63 +-
sphinx/ext/doctest.py | 171 ++-
sphinx/ext/graphviz.py | 88 +-
sphinx/ext/ifconfig.py | 14 +-
sphinx/ext/imgconverter.py | 93 ++
sphinx/ext/imgmath.py | 263 ++--
sphinx/ext/inheritance_diagram.py | 39 +-
sphinx/ext/intersphinx.py | 223 ++-
sphinx/ext/linkcode.py | 9 +-
sphinx/ext/mathbase.py | 43 +-
sphinx/ext/mathjax.py | 2 +-
sphinx/ext/napoleon/__init__.py | 12 +-
sphinx/ext/napoleon/docstring.py | 169 ++-
sphinx/ext/napoleon/iterators.py | 21 +-
sphinx/ext/pngmath.py | 43 +-
sphinx/ext/todo.py | 51 +-
sphinx/ext/viewcode.py | 54 +-
sphinx/extension.py | 61 +
sphinx/highlighting.py | 49 +-
sphinx/io.py | 56 +-
sphinx/jinja2glue.py | 33 +-
sphinx/locale/__init__.py | 94 +-
sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 14336 -> 23427 bytes
sphinx/locale/bn/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 11323 -> 20484 bytes
sphinx/locale/ca/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 11471 -> 20620 bytes
sphinx/locale/cs/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 11380 -> 20533 bytes
sphinx/locale/cy/LC_MESSAGES/sphinx.po | 800 +++++++---
sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 11231 -> 20397 bytes
sphinx/locale/da/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11555 -> 20703 bytes
sphinx/locale/de/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 14824 -> 23914 bytes
sphinx/locale/el/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 11147 -> 20313 bytes
sphinx/locale/eo/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 11933 -> 21212 bytes
sphinx/locale/es/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/et/LC_MESSAGES/sphinx.js | 2 +-
sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 11325 -> 20591 bytes
sphinx/locale/et/LC_MESSAGES/sphinx.po | 830 ++++++++---
sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 11410 -> 20567 bytes
sphinx/locale/eu/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 11888 -> 21054 bytes
sphinx/locale/fa/LC_MESSAGES/sphinx.po | 800 +++++++---
sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 10971 -> 20136 bytes
sphinx/locale/fi/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/fr/LC_MESSAGES/sphinx.js | 2 +-
sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 11836 -> 21047 bytes
sphinx/locale/fr/LC_MESSAGES/sphinx.po | 828 ++++++++---
sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 11691 -> 20853 bytes
sphinx/locale/he/LC_MESSAGES/sphinx.po | 800 +++++++---
sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 11591 -> 20757 bytes
sphinx/locale/hi/LC_MESSAGES/sphinx.po | 800 +++++++---
sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 11339 -> 20612 bytes
sphinx/locale/hr/LC_MESSAGES/sphinx.po | 800 +++++++---
sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11793 -> 20947 bytes
sphinx/locale/hu/LC_MESSAGES/sphinx.po | 811 +++++++---
sphinx/locale/id/LC_MESSAGES/sphinx.js | 2 +-
sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 11216 -> 20375 bytes
sphinx/locale/id/LC_MESSAGES/sphinx.po | 828 ++++++++---
sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 11635 -> 20836 bytes
sphinx/locale/it/LC_MESSAGES/sphinx.po | 806 +++++++---
sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 12237 -> 23241 bytes
sphinx/locale/ja/LC_MESSAGES/sphinx.po | 816 +++++++---
sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 11185 -> 20367 bytes
sphinx/locale/ko/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 11626 -> 20787 bytes
sphinx/locale/lt/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 11546 -> 20691 bytes
sphinx/locale/lv/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 11469 -> 20635 bytes
sphinx/locale/mk/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 11045 -> 20207 bytes
sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 13874 -> 22966 bytes
sphinx/locale/ne/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/nl/LC_MESSAGES/sphinx.js | 2 +-
sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 11445 -> 21244 bytes
sphinx/locale/nl/LC_MESSAGES/sphinx.po | 850 ++++++++---
sphinx/locale/pl/LC_MESSAGES/sphinx.js | 2 +-
sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 11578 -> 20979 bytes
sphinx/locale/pl/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 11674 -> 20816 bytes
sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 800 +++++++---
sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 11678 -> 20828 bytes
sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 11655 -> 20805 bytes
sphinx/locale/ro/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 14547 -> 23631 bytes
sphinx/locale/ru/LC_MESSAGES/sphinx.po | 800 +++++++---
sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 11984 -> 21150 bytes
sphinx/locale/si/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 11507 -> 21046 bytes
sphinx/locale/sk/LC_MESSAGES/sphinx.po | 800 +++++++---
sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 11265 -> 20417 bytes
sphinx/locale/sl/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/sphinx.pot | 802 +++++++---
sphinx/locale/sr/LC_MESSAGES/sphinx.js | 1 +
sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 0 -> 20367 bytes
sphinx/locale/sr/LC_MESSAGES/sphinx.po | 1314 +++++++++++++++++
sphinx/locale/sr at latin/LC_MESSAGES/sphinx.js | 1 +
sphinx/locale/sr at latin/LC_MESSAGES/sphinx.mo | Bin 0 -> 20381 bytes
sphinx/locale/sr at latin/LC_MESSAGES/sphinx.po | 1314 +++++++++++++++++
sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 11087 -> 20239 bytes
sphinx/locale/sv/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 11658 -> 20828 bytes
sphinx/locale/tr/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 12847 -> 22013 bytes
sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/vi/LC_MESSAGES/sphinx.js | 2 +-
sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 11688 -> 20855 bytes
sphinx/locale/vi/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 10778 -> 19984 bytes
sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 802 +++++++---
sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js | 2 +-
sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 10945 -> 20079 bytes
sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 847 ++++++++---
sphinx/make_mode.py | 64 +-
sphinx/parsers.py | 34 +
sphinx/pycode/__init__.py | 47 +-
sphinx/pycode/nodes.py | 10 +-
sphinx/pycode/pgen2/grammar.py | 18 +-
sphinx/pycode/pgen2/parse.py | 15 +-
sphinx/pycode/pgen2/pgen.py | 25 +-
sphinx/pycode/pgen2/tokenize.py | 16 +-
sphinx/quickstart.py | 36 +-
sphinx/registry.py | 226 +++
sphinx/roles.py | 42 +-
sphinx/search/__init__.py | 100 +-
sphinx/search/en.py | 31 +-
sphinx/search/ja.py | 25 +-
sphinx/search/ro.py | 8 +-
sphinx/search/tr.py | 8 +-
sphinx/search/zh.py | 39 +-
sphinx/setup_command.py | 86 +-
sphinx/templates/epub2/container.xml | 6 +
sphinx/templates/epub2/content.opf_t | 37 +
sphinx/templates/epub2/mimetype | 1 +
sphinx/templates/epub2/toc.ncx_t | 15 +
sphinx/templates/epub3/container.xml | 6 +
sphinx/templates/epub3/content.opf_t | 46 +
sphinx/templates/epub3/mimetype | 1 +
sphinx/templates/epub3/nav.xhtml_t | 26 +
sphinx/templates/epub3/toc.ncx_t | 24 +
.../templates/latex/{content.tex_t => latex.tex_t} | 4 +-
sphinx/templates/latex/longtable.tex_t | 32 +
sphinx/templates/latex/tabular.tex_t | 27 +
sphinx/templates/latex/tabulary.tex_t | 27 +
sphinx/templates/quickstart/Makefile.new_t | 2 +-
sphinx/templates/quickstart/Makefile_t | 2 +-
sphinx/templates/quickstart/conf.py_t | 15 +
sphinx/templates/quickstart/make.bat.new_t | 10 +-
sphinx/templates/quickstart/make.bat_t | 27 +-
sphinx/testing/__init__.py | 15 +
tests/conftest.py => sphinx/testing/fixtures.py | 81 +-
{tests => sphinx/testing}/path.py | 9 +-
{tests => sphinx/testing}/util.py | 69 +-
sphinx/texinputs/Makefile_t | 98 +-
sphinx/texinputs/footnotehyper-sphinx.sty | 372 +++--
sphinx/texinputs/latexmkjarc | 7 +
sphinx/texinputs/latexmkrc_t | 17 +
sphinx/texinputs/needspace.sty | 35 -
sphinx/texinputs/sphinx.sty | 368 +++--
sphinx/texinputs/sphinxhowto.cls | 19 +-
sphinx/texinputs/sphinxmanual.cls | 19 +-
sphinx/texinputs/sphinxmulticell.sty | 317 ++++
sphinx/themes/basic/layout.html | 34 +-
sphinx/themes/basic/static/basic.css_t | 7 +
sphinx/themes/epub/static/epub.css_t | 126 +-
sphinx/themes/scrolls/layout.html | 5 +-
sphinx/theming.py | 378 ++---
sphinx/transforms/__init__.py | 175 ++-
sphinx/transforms/compact_bullet_list.py | 13 +-
sphinx/transforms/i18n.py | 85 +-
sphinx/transforms/post_transforms/__init__.py | 209 +++
sphinx/transforms/post_transforms/images.py | 263 ++++
sphinx/util/__init__.py | 200 ++-
sphinx/util/compat.py | 56 +-
sphinx/util/console.py | 18 +-
sphinx/util/docfields.py | 67 +-
sphinx/util/docstrings.py | 6 +
sphinx/util/docutils.py | 107 +-
sphinx/util/fileutil.py | 12 +-
sphinx/util/i18n.py | 104 +-
sphinx/util/images.py | 98 +-
sphinx/util/inspect.py | 122 +-
sphinx/util/inventory.py | 191 +++
sphinx/util/jsdump.py | 22 +-
sphinx/util/jsonimpl.py | 11 +-
sphinx/util/logging.py | 431 ++++++
sphinx/util/matching.py | 15 +-
sphinx/util/nodes.py | 97 +-
sphinx/util/osutil.py | 38 +-
sphinx/util/parallel.py | 53 +-
sphinx/util/png.py | 2 +
sphinx/util/pycompat.py | 130 +-
sphinx/util/requests.py | 18 +-
sphinx/util/rst.py | 5 +-
sphinx/util/smartypants.py | 626 ++++----
sphinx/util/stemmer/__init__.py | 51 +
sphinx/util/{stemmer.py => stemmer/porter.py} | 25 +-
sphinx/util/tags.py | 27 +-
sphinx/util/template.py | 26 +-
sphinx/util/texescape.py | 4 +-
sphinx/util/typing.py | 24 +
sphinx/util/websupport.py | 9 +-
sphinx/versioning.py | 13 +-
sphinx/websupport/__init__.py | 457 +-----
sphinx/websupport/errors.py | 16 +-
sphinx/websupport/search/__init__.py | 124 +-
sphinx/websupport/search/nullsearch.py | 14 +-
sphinx/websupport/search/whooshsearch.py | 51 +-
sphinx/websupport/search/xapiansearch.py | 76 +-
sphinx/websupport/storage/__init__.py | 106 +-
sphinx/websupport/storage/differ.py | 76 +-
sphinx/websupport/storage/sqlalchemy_db.py | 211 +--
sphinx/websupport/storage/sqlalchemystorage.py | 167 +--
sphinx/writers/html.py | 276 ++--
sphinx/writers/{html.py => html5.py} | 367 +++--
sphinx/writers/latex.py | 905 ++++++++----
sphinx/writers/manpage.py | 119 +-
sphinx/writers/texinfo.py | 361 ++++-
sphinx/writers/text.py | 272 +++-
sphinx/writers/websupport.py | 36 +-
sphinx/writers/xml.py | 15 +-
test-reqs.txt | 2 +
tests/conftest.py | 236 +--
tests/etree13/ElementPath.py | 226 +++
tests/etree13/ElementTree.py | 1553 ++++++++++++++++++++
tests/py35/test_autodoc_py35.py | 14 +-
tests/root/markup.txt | 432 ------
tests/roots/test-build-html-translator/conf.py | 19 +
tests/roots/test-build-html-translator/index.rst | 24 +
tests/roots/test-directive-code/dedent.rst | 35 -
tests/roots/test-directive-code/dedent_code.rst | 53 -
tests/roots/test-directive-code/lineno_match.rst | 26 -
tests/roots/test-directive-code/lineno_start.rst | 6 -
tests/roots/test-directive-code/linenos.rst | 12 +
.../test-directive-code/literal-diff.inc} | 3 +-
tests/roots/test-directive-code/py-decorators.inc | 16 +
tests/roots/test-directive-code/py-decorators.rst | 17 +
tests/roots/test-directive-code/target.py | 5 +
.../conf.py | 0
tests/roots/test-directives-raw/index.rst | 40 +
tests/roots/test-doctest/doctest.txt | 16 +-
tests/roots/test-domain-js/index.rst | 1 +
tests/roots/test-domain-js/module.rst | 27 +
tests/roots/test-double-inheriting-theme/conf.py | 1 +
.../conf.py | 1 +
.../index.rst | 25 +
.../autosummary_dummy_module.py | 9 +
.../conf.py | 4 +-
tests/roots/test-ext-autosummary/contents.rst | 6 +
.../conf.py | 1 +
tests/roots/test-ext-imgconverter/index.rst | 4 +
.../test-ext-imgconverter}/svgimg.svg | 0
.../conf.py | 1 +
.../roots/test-ext-intersphinx-cppdomain/index.rst | 6 +
tests/roots/test-ext-viewcode/spam/mod1.py | 5 +
tests/roots/test-ext-viewcode/spam/mod2.py | 5 +
tests/roots/test-image-glob/index.rst | 16 -
.../roots/{test-image-glob => test-images}/conf.py | 0
tests/{root => roots/test-images}/img.gif | Bin
.../{test-image-glob => test-images}/img.ja.png | Bin
tests/{root => roots/test-images}/img.pdf | Bin
tests/{root => roots/test-images}/img.png | Bin
.../{test-image-glob => test-images}/img.zh.png | Bin
tests/roots/test-images/index.rst | 22 +
tests/{root => roots/test-images}/rimg.png | Bin
.../{test-image-glob => test-images}/rimg.png.xx | Bin
.../{test-image-glob => test-images}/rimg.xx.png | Bin
.../subdir/index.rst | 4 +-
.../subdir}/rimg.png | Bin
.../subdir/rimg.xx.png | Bin
.../{root => roots/test-images/subdir}/svgimg.pdf | Bin
.../subdir/svgimg.svg | 0
.../subdir/svgimg.xx.svg | 0
.../roots/test-images/testima\314\210ge.png" | Bin
tests/roots/test-latex-table/complex.rst | 35 +
.../roots/{test-basic => test-latex-table}/conf.py | 0
.../expects/complex_spanning_cell.tex | 57 +
tests/roots/test-latex-table/expects/gridtable.tex | 56 +
tests/roots/test-latex-table/expects/longtable.tex | 45 +
.../expects/longtable_having_align.tex | 45 +
.../expects/longtable_having_caption.tex | 46 +
.../expects/longtable_having_problematic_cell.tex | 51 +
...le_having_stub_columns_and_problematic_cell.tex | 54 +
.../expects/longtable_having_verbatim.tex | 47 +
.../expects/longtable_having_widths.tex | 45 +
...ongtable_having_widths_and_problematic_cell.tex | 51 +
.../expects/longtable_with_tabularcolumn.tex | 45 +
.../test-latex-table/expects/simple_table.tex | 30 +
.../expects/table_having_caption.tex | 33 +
.../expects/table_having_problematic_cell.tex | 36 +
...le_having_stub_columns_and_problematic_cell.tex | 37 +
.../expects/table_having_verbatim.tex | 32 +
.../expects/table_having_widths.tex | 30 +
.../table_having_widths_and_problematic_cell.tex | 36 +
.../expects/tabular_having_widths.tex | 30 +
.../test-latex-table/expects/tabularcolumn.tex | 30 +
.../expects/tabulary_having_widths.tex | 30 +
tests/roots/test-latex-table/index.rst | 8 +
tests/roots/test-latex-table/longtable.rst | 151 ++
tests/roots/test-latex-table/tabular.rst | 153 ++
tests/{root => roots/test-root}/Makefile | 7 +-
tests/{root => roots/test-root}/_static/README | 0
.../{root => roots/test-root}/_static/excluded.css | 0
.../test-root}/_static/subdir/foo.css | 0
.../test-root}/_templates/contentssb.html | 0
.../test-root}/_templates/customsb.html | 0
.../test-root}/_templates/layout.html | 0
tests/{root => roots/test-root}/autodoc.txt | 0
tests/{root => roots/test-root}/autodoc_fodder.py | 0
.../test-root}/autodoc_missing_imports.py | 0
tests/{root => roots/test-root}/bom.po | 0
tests/{root => roots/test-root}/bom.txt | 0
tests/{root => roots/test-root}/conf.py | 2 +-
tests/{root => roots/test-root}/contents.txt | 0
.../test-root}/en.lproj/localized.txt | 0
tests/{root => roots/test-root}/ext.py | 0
tests/{root => roots/test-root}/extapi.txt | 0
tests/{root => roots/test-root}/extensions.txt | 0
tests/{root => roots/test-root}/footnote.txt | 11 +-
tests/{root => roots/test-root}/images.txt | 2 +-
tests/{root => roots/test-root}/img.foo.png | Bin
tests/roots/{test-image-glob => test-root}/img.gif | Bin
tests/roots/{test-image-glob => test-root}/img.pdf | Bin
tests/{root/subdir => roots/test-root}/img.png | Bin
tests/{root => roots/test-root}/includes.txt | 0
tests/{root => roots/test-root}/lists.txt | 0
tests/{root => roots/test-root}/literal.inc | 0
tests/{root => roots/test-root}/literal_orig.inc | 0
.../{test-searchadapters => test-root}/markup.txt | 35 +-
tests/{root => roots/test-root}/math.txt | 0
tests/{root => roots/test-root}/metadata.add | 0
tests/{root => roots/test-root}/objects.txt | 0
tests/{root => roots/test-root}/otherext.foo | 0
tests/{root => roots/test-root}/parsermod.py | 0
tests/{root => roots/test-root}/quotes.inc | 0
.../{test-image-glob/subdir => test-root}/rimg.png | Bin
tests/{root => roots/test-root}/robots.txt | 0
tests/{root => roots/test-root}/special/api.h | 0
tests/{root => roots/test-root}/special/code.py | 0
tests/{root => roots/test-root}/subdir.po | 0
.../{root => roots/test-root}/subdir/excluded.txt | 0
tests/{root => roots/test-root}/subdir/images.txt | 0
.../{test-image-glob => test-root/subdir}/img.png | Bin
tests/{root => roots/test-root}/subdir/include.inc | 0
.../{root => roots/test-root}/subdir/includes.txt | 0
tests/{root => roots/test-root}/subdir/simg.png | Bin
.../subdir => test-root}/svgimg.pdf | Bin
tests/{root => roots/test-root}/svgimg.svg | 0
tests/{root => roots/test-root}/tabs.inc | 0
tests/{root => roots/test-root}/templated.css_t | 0
tests/{root => roots/test-root}/test.inc | 0
.../test-root}/testtheme/layout.html | 0
.../test-root}/testtheme/static/staticimg.png | Bin
.../test-root}/testtheme/static/statictmpl.html_t | 0
.../{root => roots/test-root}/testtheme/theme.conf | 0
tests/{root => roots/test-root}/wrongenc.inc | 0
tests/{root => roots/test-root}/ziptheme.zip | Bin
tests/roots/test-searchadapters/conf.py | 4 -
.../roots/test-stylesheets/_templates/layout.html | 8 +
tests/roots/test-stylesheets/conf.py | 12 +
tests/roots/test-stylesheets/index.rst | 4 +
tests/roots/test-theming/child.zip | Bin 0 -> 661 bytes
tests/roots/test-theming/conf.py | 1 +
.../ziptheme.zip => roots/test-theming/parent.zip} | Bin
tests/roots/test-warnings/index.rst | 3 -
tests/run.py | 18 +-
tests/test_api_translator.py | 79 +-
tests/test_apidoc.py | 33 +-
tests/test_application.py | 51 +-
tests/test_autodoc.py | 22 +-
tests/test_build.py | 17 +-
tests/test_build_applehelp.py | 2 +-
tests/test_build_epub.py | 249 ++++
tests/test_build_html.py | 131 +-
tests/test_build_html5.py | 328 +++++
tests/test_build_latex.py | 272 +++-
tests/test_build_texinfo.py | 4 +-
tests/test_build_text.py | 2 +-
tests/test_catalogs.py | 37 +-
tests/test_config.py | 35 +-
tests/test_directive_code.py | 483 ++++--
tests/test_docutilsconf.py | 9 +-
tests/test_domain_cpp.py | 16 +-
tests/test_domain_js.py | 144 +-
tests/test_domain_py.py | 36 +-
tests/test_domain_std.py | 20 +
tests/test_environment.py | 42 +-
tests/test_environment_indexentries.py | 2 +-
tests/test_environment_toctree.py | 8 +-
tests/test_ext_autosectionlabel.py | 6 +
tests/test_ext_autosummary.py | 25 +-
tests/test_ext_doctest.py | 16 +
tests/test_ext_graphviz.py | 16 +-
tests/test_ext_imgconverter.py | 24 +
tests/test_ext_inheritance_diagram.py | 7 +-
tests/test_ext_intersphinx.py | 237 +--
tests/test_ext_math.py | 10 +-
tests/test_ext_napoleon_docstring.py | 4 +-
tests/test_ext_viewcode.py | 1 +
tests/test_highlighting.py | 15 +-
tests/test_intl.py | 28 +-
tests/test_markup.py | 13 +-
tests/test_metadata.py | 4 +-
tests/test_pycode.py | 90 ++
tests/test_quickstart.py | 2 +-
tests/test_searchadapters.py | 69 -
tests/test_setup_command.py | 34 +-
tests/test_theming.py | 45 +-
tests/test_util.py | 60 +-
tests/test_util_i18n.py | 21 +-
tests/test_util_images.py | 100 ++
tests/test_util_inspect.py | 62 +
tests/test_util_inventory.py | 74 +
tests/test_util_logging.py | 248 ++++
tests/test_util_rst.py | 4 +-
tests/test_versioning.py | 15 +-
tests/test_websupport.py | 250 +---
tox.ini | 16 +-
utils/CHANGES_template | 3 +
utils/bump_version.py | 56 +-
utils/check_sources.py | 3 +
utils/release-checklist | 11 +-
541 files changed, 49552 insertions(+), 18817 deletions(-)
create mode 100644 doc/ext/imgconverter.rst
create mode 100644 doc/extdev/collectorapi.rst
create mode 100644 doc/extdev/logging.rst
create mode 100644 doc/setuptools.rst
rename sphinx/builders/{epub.py => _epub_base.py} (63%)
create mode 100644 sphinx/builders/epub2.py
copy sphinx/{writers => environment/adapters}/__init__.py (60%)
create mode 100644 sphinx/environment/adapters/asset.py
rename sphinx/environment/{managers => adapters}/indexentries.py (78%)
create mode 100644 sphinx/environment/adapters/toctree.py
create mode 100644 sphinx/environment/collectors/__init__.py
create mode 100644 sphinx/environment/collectors/asset.py
create mode 100644 sphinx/environment/collectors/dependencies.py
create mode 100644 sphinx/environment/collectors/indexentries.py
create mode 100644 sphinx/environment/collectors/metadata.py
create mode 100644 sphinx/environment/collectors/title.py
create mode 100644 sphinx/environment/collectors/toctree.py
delete mode 100644 sphinx/environment/managers/__init__.py
delete mode 100644 sphinx/environment/managers/toctree.py
create mode 100644 sphinx/events.py
create mode 100644 sphinx/ext/imgconverter.py
create mode 100644 sphinx/extension.py
create mode 100644 sphinx/locale/sr/LC_MESSAGES/sphinx.js
create mode 100644 sphinx/locale/sr/LC_MESSAGES/sphinx.mo
create mode 100644 sphinx/locale/sr/LC_MESSAGES/sphinx.po
create mode 100644 sphinx/locale/sr at latin/LC_MESSAGES/sphinx.js
create mode 100644 sphinx/locale/sr at latin/LC_MESSAGES/sphinx.mo
create mode 100644 sphinx/locale/sr at latin/LC_MESSAGES/sphinx.po
create mode 100644 sphinx/registry.py
create mode 100644 sphinx/templates/epub2/container.xml
create mode 100644 sphinx/templates/epub2/content.opf_t
create mode 100644 sphinx/templates/epub2/mimetype
create mode 100644 sphinx/templates/epub2/toc.ncx_t
create mode 100644 sphinx/templates/epub3/container.xml
create mode 100644 sphinx/templates/epub3/content.opf_t
create mode 100644 sphinx/templates/epub3/mimetype
create mode 100644 sphinx/templates/epub3/nav.xhtml_t
create mode 100644 sphinx/templates/epub3/toc.ncx_t
rename sphinx/templates/latex/{content.tex_t => latex.tex_t} (95%)
create mode 100644 sphinx/templates/latex/longtable.tex_t
create mode 100644 sphinx/templates/latex/tabular.tex_t
create mode 100644 sphinx/templates/latex/tabulary.tex_t
create mode 100644 sphinx/testing/__init__.py
copy tests/conftest.py => sphinx/testing/fixtures.py (80%)
rename {tests => sphinx/testing}/path.py (96%)
mode change 100755 => 100644
rename {tests => sphinx/testing}/util.py (89%)
create mode 100644 sphinx/texinputs/latexmkjarc
create mode 100644 sphinx/texinputs/latexmkrc_t
delete mode 100644 sphinx/texinputs/needspace.sty
create mode 100644 sphinx/texinputs/sphinxmulticell.sty
create mode 100644 sphinx/transforms/post_transforms/__init__.py
create mode 100644 sphinx/transforms/post_transforms/images.py
create mode 100644 sphinx/util/inventory.py
create mode 100644 sphinx/util/stemmer/__init__.py
rename sphinx/util/{stemmer.py => stemmer/porter.py} (94%)
create mode 100644 sphinx/util/typing.py
copy sphinx/writers/{html.py => html5.py} (76%)
create mode 100644 tests/etree13/ElementPath.py
create mode 100644 tests/etree13/ElementTree.py
delete mode 100644 tests/root/markup.txt
create mode 100644 tests/roots/test-build-html-translator/conf.py
create mode 100644 tests/roots/test-build-html-translator/index.rst
delete mode 100644 tests/roots/test-directive-code/dedent.rst
delete mode 100644 tests/roots/test-directive-code/dedent_code.rst
delete mode 100644 tests/roots/test-directive-code/lineno_match.rst
delete mode 100644 tests/roots/test-directive-code/lineno_start.rst
copy tests/{root/literal.inc => roots/test-directive-code/literal-diff.inc} (80%)
create mode 100644 tests/roots/test-directive-code/py-decorators.inc
create mode 100644 tests/roots/test-directive-code/py-decorators.rst
copy tests/roots/{test-image-glob => test-directives-raw}/conf.py (100%)
create mode 100644 tests/roots/test-directives-raw/index.rst
create mode 100644 tests/roots/test-domain-js/module.rst
copy tests/roots/{test-ext-autosectionlabel => test-ext-autosectionlabel-prefix-document}/conf.py (69%)
create mode 100644 tests/roots/test-ext-autosectionlabel-prefix-document/index.rst
create mode 100644 tests/roots/test-ext-autosummary/autosummary_dummy_module.py
copy tests/roots/{test-autosummary => test-ext-autosummary}/conf.py (85%)
create mode 100644 tests/roots/test-ext-autosummary/contents.rst
copy tests/roots/{test-image-glob => test-ext-imgconverter}/conf.py (52%)
create mode 100644 tests/roots/test-ext-imgconverter/index.rst
copy tests/{root => roots/test-ext-imgconverter}/svgimg.svg (100%)
copy tests/roots/{test-image-glob => test-ext-intersphinx-cppdomain}/conf.py (53%)
create mode 100644 tests/roots/test-ext-intersphinx-cppdomain/index.rst
delete mode 100644 tests/roots/test-image-glob/index.rst
rename tests/roots/{test-image-glob => test-images}/conf.py (100%)
rename tests/{root => roots/test-images}/img.gif (100%)
rename tests/roots/{test-image-glob => test-images}/img.ja.png (100%)
rename tests/{root => roots/test-images}/img.pdf (100%)
rename tests/{root => roots/test-images}/img.png (100%)
rename tests/roots/{test-image-glob => test-images}/img.zh.png (100%)
create mode 100644 tests/roots/test-images/index.rst
rename tests/{root => roots/test-images}/rimg.png (100%)
rename tests/roots/{test-image-glob => test-images}/rimg.png.xx (100%)
rename tests/roots/{test-image-glob => test-images}/rimg.xx.png (100%)
rename tests/roots/{test-image-glob => test-images}/subdir/index.rst (66%)
rename tests/roots/{test-image-glob => test-images/subdir}/rimg.png (100%)
rename tests/roots/{test-image-glob => test-images}/subdir/rimg.xx.png (100%)
rename tests/{root => roots/test-images/subdir}/svgimg.pdf (100%)
rename tests/roots/{test-image-glob => test-images}/subdir/svgimg.svg (100%)
rename tests/roots/{test-image-glob => test-images}/subdir/svgimg.xx.svg (100%)
rename "tests/roots/test-image-glob/testima\314\210ge.png" => "tests/roots/test-images/testima\314\210ge.png" (100%)
create mode 100644 tests/roots/test-latex-table/complex.rst
copy tests/roots/{test-basic => test-latex-table}/conf.py (100%)
create mode 100644 tests/roots/test-latex-table/expects/complex_spanning_cell.tex
create mode 100644 tests/roots/test-latex-table/expects/gridtable.tex
create mode 100644 tests/roots/test-latex-table/expects/longtable.tex
create mode 100644 tests/roots/test-latex-table/expects/longtable_having_align.tex
create mode 100644 tests/roots/test-latex-table/expects/longtable_having_caption.tex
create mode 100644 tests/roots/test-latex-table/expects/longtable_having_problematic_cell.tex
create mode 100644 tests/roots/test-latex-table/expects/longtable_having_stub_columns_and_problematic_cell.tex
create mode 100644 tests/roots/test-latex-table/expects/longtable_having_verbatim.tex
create mode 100644 tests/roots/test-latex-table/expects/longtable_having_widths.tex
create mode 100644 tests/roots/test-latex-table/expects/longtable_having_widths_and_problematic_cell.tex
create mode 100644 tests/roots/test-latex-table/expects/longtable_with_tabularcolumn.tex
create mode 100644 tests/roots/test-latex-table/expects/simple_table.tex
create mode 100644 tests/roots/test-latex-table/expects/table_having_caption.tex
create mode 100644 tests/roots/test-latex-table/expects/table_having_problematic_cell.tex
create mode 100644 tests/roots/test-latex-table/expects/table_having_stub_columns_and_problematic_cell.tex
create mode 100644 tests/roots/test-latex-table/expects/table_having_verbatim.tex
create mode 100644 tests/roots/test-latex-table/expects/table_having_widths.tex
create mode 100644 tests/roots/test-latex-table/expects/table_having_widths_and_problematic_cell.tex
create mode 100644 tests/roots/test-latex-table/expects/tabular_having_widths.tex
create mode 100644 tests/roots/test-latex-table/expects/tabularcolumn.tex
create mode 100644 tests/roots/test-latex-table/expects/tabulary_having_widths.tex
create mode 100644 tests/roots/test-latex-table/index.rst
create mode 100644 tests/roots/test-latex-table/longtable.rst
create mode 100644 tests/roots/test-latex-table/tabular.rst
rename tests/{root => roots/test-root}/Makefile (88%)
rename tests/{root => roots/test-root}/_static/README (100%)
rename tests/{root => roots/test-root}/_static/excluded.css (100%)
rename tests/{root => roots/test-root}/_static/subdir/foo.css (100%)
rename tests/{root => roots/test-root}/_templates/contentssb.html (100%)
rename tests/{root => roots/test-root}/_templates/customsb.html (100%)
rename tests/{root => roots/test-root}/_templates/layout.html (100%)
rename tests/{root => roots/test-root}/autodoc.txt (100%)
rename tests/{root => roots/test-root}/autodoc_fodder.py (100%)
rename tests/{root => roots/test-root}/autodoc_missing_imports.py (100%)
rename tests/{root => roots/test-root}/bom.po (100%)
rename tests/{root => roots/test-root}/bom.txt (100%)
rename tests/{root => roots/test-root}/conf.py (98%)
rename tests/{root => roots/test-root}/contents.txt (100%)
rename tests/{root => roots/test-root}/en.lproj/localized.txt (100%)
rename tests/{root => roots/test-root}/ext.py (100%)
rename tests/{root => roots/test-root}/extapi.txt (100%)
rename tests/{root => roots/test-root}/extensions.txt (100%)
rename tests/{root => roots/test-root}/footnote.txt (75%)
rename tests/{root => roots/test-root}/images.txt (90%)
rename tests/{root => roots/test-root}/img.foo.png (100%)
rename tests/roots/{test-image-glob => test-root}/img.gif (100%)
rename tests/roots/{test-image-glob => test-root}/img.pdf (100%)
rename tests/{root/subdir => roots/test-root}/img.png (100%)
rename tests/{root => roots/test-root}/includes.txt (100%)
rename tests/{root => roots/test-root}/lists.txt (100%)
rename tests/{root => roots/test-root}/literal.inc (100%)
rename tests/{root => roots/test-root}/literal_orig.inc (100%)
rename tests/roots/{test-searchadapters => test-root}/markup.txt (93%)
rename tests/{root => roots/test-root}/math.txt (100%)
rename tests/{root => roots/test-root}/metadata.add (100%)
rename tests/{root => roots/test-root}/objects.txt (100%)
rename tests/{root => roots/test-root}/otherext.foo (100%)
rename tests/{root => roots/test-root}/parsermod.py (100%)
rename tests/{root => roots/test-root}/quotes.inc (100%)
rename tests/roots/{test-image-glob/subdir => test-root}/rimg.png (100%)
rename tests/{root => roots/test-root}/robots.txt (100%)
rename tests/{root => roots/test-root}/special/api.h (100%)
rename tests/{root => roots/test-root}/special/code.py (100%)
rename tests/{root => roots/test-root}/subdir.po (100%)
rename tests/{root => roots/test-root}/subdir/excluded.txt (100%)
rename tests/{root => roots/test-root}/subdir/images.txt (100%)
rename tests/roots/{test-image-glob => test-root/subdir}/img.png (100%)
rename tests/{root => roots/test-root}/subdir/include.inc (100%)
rename tests/{root => roots/test-root}/subdir/includes.txt (100%)
rename tests/{root => roots/test-root}/subdir/simg.png (100%)
rename tests/roots/{test-image-glob/subdir => test-root}/svgimg.pdf (100%)
rename tests/{root => roots/test-root}/svgimg.svg (100%)
rename tests/{root => roots/test-root}/tabs.inc (100%)
rename tests/{root => roots/test-root}/templated.css_t (100%)
rename tests/{root => roots/test-root}/test.inc (100%)
rename tests/{root => roots/test-root}/testtheme/layout.html (100%)
rename tests/{root => roots/test-root}/testtheme/static/staticimg.png (100%)
rename tests/{root => roots/test-root}/testtheme/static/statictmpl.html_t (100%)
rename tests/{root => roots/test-root}/testtheme/theme.conf (100%)
rename tests/{root => roots/test-root}/wrongenc.inc (100%)
copy tests/{root => roots/test-root}/ziptheme.zip (100%)
delete mode 100644 tests/roots/test-searchadapters/conf.py
create mode 100644 tests/roots/test-stylesheets/_templates/layout.html
create mode 100644 tests/roots/test-stylesheets/conf.py
create mode 100644 tests/roots/test-stylesheets/index.rst
create mode 100644 tests/roots/test-theming/child.zip
rename tests/{root/ziptheme.zip => roots/test-theming/parent.zip} (100%)
create mode 100644 tests/test_build_epub.py
create mode 100644 tests/test_build_html5.py
create mode 100644 tests/test_ext_imgconverter.py
create mode 100644 tests/test_pycode.py
delete mode 100644 tests/test_searchadapters.py
create mode 100644 tests/test_util_images.py
create mode 100644 tests/test_util_inventory.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/sphinx.git
More information about the Python-modules-commits
mailing list