[Python-modules-commits] [sphinx] 02/03: Updated version 1.6.3 from 'upstream/1.6.3'.
Dmitry Shachnev
mitya57 at moszumanska.debian.org
Sun Jul 9 09:39:43 UTC 2017
This is an automated email from the git hooks/post-receive script.
mitya57 pushed a commit to branch debian/master
in repository sphinx.
commit 2995af8629993470fb45501fbee0f30e3911f944
Merge: b12de04 0924d5b
Author: Dmitry Shachnev <mitya57 at gmail.com>
Date: Sun Jul 9 12:12:26 2017 +0300
Updated version 1.6.3 from 'upstream/1.6.3'.
.gitignore | 24 -
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 | 1101 ++++++++++++++
Sphinx.egg-info/requires.txt | 5 +
babel.cfg | 13 +-
debian/changelog | 6 +
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 ++++------
sphinx/environment/adapters/__init__.py | 10 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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 | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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 | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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 | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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 | 1 +
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 | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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.js | 1 +
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 | 1 +
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.js | 1 +
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 | 1 +
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/Grammar-py2.pickle | Bin 0 -> 19065 bytes
sphinx/pycode/Grammar-py3.pickle | Bin 0 -> 19909 bytes
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/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/basic/static/jquery.js | 4 +
sphinx/themes/basic/static/underscore.js | 31 +
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 | 5 +
.../index.rst | 25 +
.../autosummary_dummy_module.py | 9 +
tests/roots/test-ext-autosummary/conf.py | 9 +
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 +
tests/roots/test-latex-table/conf.py | 7 +
.../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 +-
581 files changed, 50570 insertions(+), 18703 deletions(-)
diff --cc debian/changelog
index 6e015f1,0000000..5258593
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,1169 -1,0 +1,1175 @@@
++sphinx (1.6.3-1) UNRELEASED; urgency=medium
++
++ * New upstream release (closes: #866789).
++
++ -- Dmitry Shachnev <mitya57 at debian.org> Sun, 09 Jul 2017 12:12:43 +0300
++
+sphinx (1.5.6-2) unstable; urgency=medium
+
+ * Drop Patch-Name headers, not needed with gbp-pq.
+ * Bump Standards-Version to 4.0.0, no changes needed.
+ * Upload to unstable.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Sun, 09 Jul 2017 12:05:28 +0300
+
+sphinx (1.5.6-1) experimental; urgency=medium
+
+ * New upstream bugfix release.
+ * Update jstests for compatibility with WebKitGTK+ 2.16.2.
+ Now the title property can be no longer than 1000 characters, so we
+ cannot fetch the whole page using it. Instead, we compute the needed
+ numbers with JavaScript and then fetch them using the title property.
+ * Update debian/copyright for upstream LICENSE change.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Mon, 15 May 2017 11:31:42 +0300
+
+sphinx (1.5.5-1) experimental; urgency=medium
+
+ * New upstream release.
+ * dh_sphinxdoc: Use a better message for missing sourcelink_suffix, and
+ downgrade this error to a warning.
+ * Clean some files which erroneously got into the upstream tarball.
+ * Sync debian/copyright with upstream AUTHORS file.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Thu, 06 Apr 2017 23:27:29 +0300
+
+sphinx (1.5.3-1) experimental; urgency=medium
+
+ * New upstream release.
+ * Build-depend on texlive-luatex, to make xetex tests not be skipped.
+ * Convert from git-dpm to patches unapplied format.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Wed, 15 Mar 2017 12:37:21 +0300
+
+sphinx (1.5.2-2) experimental; urgency=medium
+
+ * dh_sphinxdoc: Properly detect sourcelink_suffix and use it when looking
+ for source and HTML files.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Tue, 24 Jan 2017 12:42:06 +0300
+
+sphinx (1.5.2-1) experimental; urgency=medium
+
+ * New upstream release.
+ - Drop fix_xapian_search.diff, applied upstream.
+ - Rebase other patches for test system changes to pytest.
+ * Bump python[3]-requests dependency to 2.4.0.
+ * Switch from nose to pytest, following upstream.
+ * Update one number in debian/jstest/run-tests for the new release.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Sun, 22 Jan 2017 19:45:18 +0300
+
+sphinx (1.5.1-1) experimental; urgency=medium
+
+ * New upstream release.
+ * Drop docutils_0.13.diff, applied upstream.
+ * Rebase other patches.
+ * Bump X-Python-Version to 2.7 and X-Python3-Version to 3.4, following
+ upstream.
+ * Depend on python[3]-requests and build-depend on python[3]-html5lib.
+ * Build-depend and recommend python-enum34 (for autodoc extension).
+ * Drop texlive-generic-extra dependency, iftex is no longer used.
+ * Stop unbundling fncychap.sty (no longer bundled), iftex.sty and
+ newfloat.sty (no longer used).
+ * Skip test_meta_keys_are_handled_for_language_de, fails without snowball.
+ * Backport upstream change to fix Xapian search adapter crashes
+ (fix_xapian_search.diff).
+ * Skip tests that require internet access (skip_tests_network.diff).
+ * Update dh_sphinxdoc for upstream changes to document extensions.
+ * Update numbers in debian/jstest/run-tests for the new release.
+ * Move the new templates directory to sphinx-common package.
+ * Move the non-minified JS files to sphinx-common package.
+ * Add allow-stderr restriction for the sphinx-doc autopkgtest.
+ * Clean and do not install the sphinx/locale/.tx/config file.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Fri, 23 Dec 2016 11:34:31 +0300
+
+sphinx (1.4.9-2) unstable; urgency=medium
+
+ * Backport upstream patch to add compatibility with docutils 0.13
+ (docutils_0.13.diff).
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Sun, 11 Dec 2016 11:42:43 +0300
+
+sphinx (1.4.9-1) unstable; urgency=medium
+
+ * New upstream bugfix release (closes: #846149).
+ * Drop fix_autodoc_new_python.diff, applied upstream.
+ * Remove unwanted file sphinx/locale/.DS_Store in clean target.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Tue, 29 Nov 2016 13:37:31 +0300
+
+sphinx (1.4.8-2) unstable; urgency=medium
+
+ * Relax the check in dh_sphinxdoc to allow different locations of
+ searchindex.js file (closes: #841141).
+ * Sort $(scripts) variable in Makefile, to fix a reproducibility issue.
+ * Backport upstream patch to fix autodoc failures with new Python 3.5
+ and Python 3.6 snapshots (fix_autodoc_new_python.diff). Fixes FTBFS.
+ * Drop build-dependencies on python[3]-xapian (closes: #842903).
+ * Add more tests dependencies to the autopkgtests.
+ * Update dh_sphinxdoc manpage for the latest changes (closes: #836248).
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Thu, 17 Nov 2016 21:10:30 +0300
+
+sphinx (1.4.8-1) unstable; urgency=medium
+
+ * New upstream bugfix release.
+ * Stop running jstest during build (but still run it in the autopkgtest).
+ * Update debian/watch to track only stable versions.
+ * Make dh_sphinxdoc generate ${sphinxdoc:Built-Using} substvar (closes:
+ #836248).
+ * Call dh_strip_nondeterminism during build.
+ * Build-depend on python3-xapian again, now it is in unstable.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Mon, 03 Oct 2016 17:24:50 +0300
+
+sphinx (1.4.6-1) unstable; urgency=medium
+
+ * New upstream bugfix release (closes: #835026).
+ * Bump python[3]-six dependency to 1.5, following upstream.
+ * dh_sphinxdoc: Include the list of packages in the error message about
+ documentation not found (closes: #833799).
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Wed, 24 Aug 2016 21:04:54 +0300
+
+sphinx (1.4.5-1) unstable; urgency=medium
+
+ * New upstream bugfix release.
+ * Drop upstream patches:
+ - fix_ltz_utcoffset.diff
+ - latex_code_robust.diff
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Wed, 13 Jul 2016 22:56:54 +0300
+
+sphinx (1.4.4-3) unstable; urgency=medium
+
+ * Backport upstream patch (latex_code_robust.diff) to fix the \code
+ command in generated LaTeX files (closes: #829118).
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Fri, 01 Jul 2016 20:59:46 +0300
+
+sphinx (1.4.4-2) unstable; urgency=medium
+
+ * Update Python 2 autopkgtest to not run tests that require Python 3.
+ * Add a patch to fix return type of LocalTimeZone.utcoffset when
+ SOURCE_DATE_EPOCH is set (fix_ltz_utcoffset.diff).
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Tue, 21 Jun 2016 17:33:28 +0300
+
+sphinx (1.4.4-1) unstable; urgency=medium
+
+ * New upstream bugfix release.
+ - Autodoc now removes all memory addresses (closes: #822197).
+ * Drop python3-xapian build-dependency for unstable upload: it is not
+ yet available in unstable.
+ * Build-depend on graphviz so that the corresponding tests are not
+ skipped.
+ * Do not install the bundled TeX files from texinput directory:
+ - fncychap.sty (available in texlive-latex-extra)
+ - iftex.sty (available in texlive-generic-extra)
+ - needspace.sty (available in texlive-latex-extra)
+ - newfloat.sty (available in texlive-latex-recommended)
+ * Suggest texlive-generic-extra instead (the other packages are already in
+ the Suggests list).
+ * Upload to unstable.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Fri, 17 Jun 2016 18:42:56 +0300
+
+sphinx (1.4.3-1) experimental; urgency=medium
+
+ * New upstream bugfix release.
+ * Drop the following patches, applied upstream:
+ - 0004-Extend-SOURCE_DATE_EPOCH-support.patch
+ - 0005-Adapt-to-typing-private-API-change-in-Python-3.5.2.patch
+ - 0006-Make-custom-compile_catalog-command-work-with-Babel-.patch
+ - 0007-Load-compatibility-patch-for-LuaTeX-0.85.patch
+ - 0008-Make-Xapian-search-work-with-Python-3.patch
+ * Add Takeshi KOMIYA’s signing key to debian/upstream/signing-key.asc.
+ * Bump version number in sphinx-autogen manpage.
+ * Build-depend on texlive-generic-extra (for iftex package).
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Mon, 06 Jun 2016 19:47:32 +0300
+
+sphinx (1.4.1-2) experimental; urgency=medium
+
+ * Add a patch to make Xapian search tests pass with Python 3.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Thu, 26 May 2016 13:45:43 +0300
+
+sphinx (1.4.1-1) experimental; urgency=medium
+
+ * New upstream release (closes: #824375).
+ * Drop the following patches, applied upstream:
+ - disable_distribute_setup.diff
+ - source_date_epoch.diff
+ - reproducible_grammar.diff
+ - reproducible_inventory.diff
+ - reproducible_js_locale.diff
+ - reproducible_searchindex.diff
+ * Refresh and rebase other patches.
+ * Update debian/watch to correctly mangle upstream alpha releases.
+ * Demote sphinx-rtd-theme to Suggests, it has become optional.
+ * Add dependency on python[3]-imagesize packages.
+ * Bump Pygments build- and test dependencies to 2.1.1.
+ * Demote python-sphinx recommendation of sphinx-doc to a suggestion.
+ * Refactor the command to run tests to better match upstream.
+ * Build-depend on dvipng to get the pngmath test run.
+ * Update numbers in jstest/run-tests for the new version.
+ * Add a patch from Alexis Bienvenüe to extend SOURCE_DATE_EPOCH support
+ (closes: #820895).
+ * Add a patch to fix a typing-related test failure with Python 3.5.2.
+ * Update debian/copyright based on upstream LICENSE and AUTHORS files.
+ * Add a patch to make compile_catalog code work with python-babel 2.3.
+ * Add a patch to support LuaTeX 0.85.
+ * Build-depend on texlive-luatex for tests.
+ * Adapt dh-sphinxdoc/install-js for doctools.js changes.
+ * Update sphinx-autogen manpage.
+ * Bump Standards-Version to 3.9.8, no changes needed.
+ * Build-depend on python3-xapian (closes: #649488).
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Tue, 17 May 2016 18:57:02 +0300
+
+sphinx (1.3.6-2) unstable; urgency=medium
+
+ * Use implementation of jstest from Iain Lane in hope it succeeds on
+ buildds.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Thu, 03 Mar 2016 20:17:15 +0300
+
+sphinx (1.3.6-1) unstable; urgency=medium
+
+ * New upstream bugfix release.
+ * Port jstest to WebKit2 (closes: #814909).
+ * Remove the now obsolete debian/TODO file.
+ * Update debian/source/lintian-overrides for new Lintian versions.
+ * Use https in Vcs-Git field.
+ * Bump Standards-Version to 3.9.7, no changes needed.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Wed, 02 Mar 2016 10:24:30 +0300
+
+sphinx (1.3.5-1) unstable; urgency=medium
+
+ * New upstream bugfix release.
+ * Build-depend on Pygments 2.1, the testsuite now requires it.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Tue, 26 Jan 2016 12:57:34 +0300
+
+sphinx (1.3.4-1) unstable; urgency=medium
+
+ * New upstream bugfix release.
+ * Clean and ignore auto-generated files.
+ * jstest.py: Add gi.require_version() calls to fix warnings from PyGI.
+ * Bump version number in sphinx-autogen manpage.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Thu, 14 Jan 2016 19:01:44 +0300
+
+sphinx (1.3.3-1) unstable; urgency=medium
+
+ * New upstream bugfix release.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Thu, 03 Dec 2015 18:35:09 +0300
+
+sphinx (1.3.2-1) unstable; urgency=medium
+
+ * New upstream release.
+ * Drop the following patches, applied upstream:
+ - py35compat.diff
+ - no_theme_rename_warning.diff
+ - addto_only_babel.diff
+ - print_help.diff
+ - compat_css.diff
+ * Refresh and rebase other patches.
+ * Stop exporting SOURCE_DATE_EPOCH in debian/rules.
+ Debhelper does it automatically since version 9.20151004.
+ * Update sphinx-autogen.1 man page.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Mon, 30 Nov 2015 18:31:36 +0300
+
+sphinx (1.3.1-8) unstable; urgency=medium
+
+ * Do not fail on removing SOURCES.txt file when it does not exist.
+ Fixes build with dh-python ≥ 2.20151103.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Sun, 08 Nov 2015 16:13:14 +0300
+
+sphinx (1.3.1-7) unstable; urgency=medium
+
+ * Make libjs-sphinxdoc depend on libjs-jquery ≥ 1.11.1 and libjs-underscore
+ ≥ 1.3.1, as these are the versions used by upstream.
+ * Fix command in autopkgtests to make them pass.
+ * Update Vcs fields for Git migration.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Sun, 18 Oct 2015 18:38:38 +0300
+
+sphinx (1.3.1-6) unstable; urgency=medium
+
+ * Update reproducibility patches to the latest version from Val Lorentz:
+ - Update reproducible_grammar.diff.
+ - Make searchindex generation deterministic (reproducible_searchindex.diff).
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Thu, 03 Sep 2015 16:54:07 +0300
+
+sphinx (1.3.1-5) unstable; urgency=medium
+
+ * Fix remaining reproducibility issues (closes: #795976):
+ - Export SOURCE_DATE_EPOCH in debian/rules.
+ - Set PYTHONHASHSEED=0 when generating grammar files.
+ - Make grammar generation deterministic (reproducible_grammar.diff).
+ - Make inventory generation deterministic (reproducible_inventory.diff).
+ - Make JavaScript locales deterministic (reproducible_js_locale.diff).
+ Many thanks to Val Lorentz for the patches.
+ * Drop XS-Testsuite header, no longer needed with dpkg ≥ 1.17.11.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Thu, 20 Aug 2015 11:56:56 +0300
+
+sphinx (1.3.1-4) unstable; urgency=medium
+
+ * Fix message when calling sphinx-build without arguments
+ (print_help.diff; closes: #792715).
+ * Add compatibility default.css file (compat_css.diff).
+ * Upload to unstable.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Sat, 15 Aug 2015 18:04:49 +0300
+
+sphinx (1.3.1-3) experimental; urgency=medium
+
+ * Update debian/TODO with the actual information.
+ * Backport upstream patch to disable warning about renamed default theme
+ (no_theme_rename_warning.diff).
+ * Backport upstream patch to not insert babel-specific code to generated
+ LaTeX files when babel is not in use (addto_only_babel.diff).
+ * Add support for $SOURCE_DATE_EPOCH environment variable, to make
+ the documentation builds reproducible (source_date_epoch.diff).
+ * dh_sphinxdoc: Symlink css3-mediaqueries.js, thanks to Jakub Wilk
+ for the patch (closes: #793045).
+ * dh_sphinxdoc: Add support for symlinking files specific to the RTD
+ theme (closes: #781849).
+ * Bump version number in sphinx-autogen manpage.
+ * Drop initialize_autodoc.diff, the bug seems to be fixed differently
+ upstream.
+ * Update bug URL in a comment in debian/rules for move to GitHub.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Tue, 28 Jul 2015 22:19:39 +0300
+
+sphinx (1.3.1-2) experimental; urgency=medium
+
+ [ Dmitry Shachnev ]
+ * debian/patches/no_snowballstemmer.diff: Exclude snowballstemmer
+ from setup.py and egg-info requirements.
+ * Move the signing keys to debian/upstream/signing-key.asc.
+
+ [ Barry Warsaw ]
+ * debian/patches/py35compat.diff: Python 3.5 compatibility.
+
+ -- Dmitry Shachnev <mitya57 at debian.org> Tue, 30 Jun 2015 21:02:36 +0300
+
+sphinx (1.3.1-1) experimental; urgency=medium
+
+ [ Helmut Grohne ]
+ * Mark libjs-sphinxdoc Multi-Arch: foreign (closes: #779458).
+
+ [ Dmitry Shachnev ]
+ * New upstream release.
+ - The codebase now works with Python 3 with no need to run 2to3.
+ - Output is now reproducible (closes: #776443).
+ * Remove patches:
+ - python3_test_build_dir.diff (no longer needed)
+ - parallel_2to3.diff (no longer needed)
+ - fix_latex_hlines.diff (applied upstream)
+ * Bump required versions of python, docutils and pygments.
+ * Build-depend and depend on:
+ - python[3]-six
+ - python[3]-babel
+ - python[3]-sphinx-rtd-theme
+ - python[3]-alabaster
+ * Add python[3]-mock to build-dependencies and test dependencies.
+ * Use upstream tarball, which now contains non-minified versions of
+ jquery.js and underscore.js.
+ * Update debian/watch to use pypi.debian.net redirector.
+ * Simplify debian/rules:
+ - Adjust for using upstream tarballs.
+ - Do not mention site-packages anymore.
+ * Update JS tests for the new version.
+ * Add a patch to skip JS libraries versions check.
+ * Drop 2to3 call from debian/tests/python3-sphinx.
+ * Properly clean up after running tests.
+ * Bring debian/copyright in sync with upstream AUTHORS file.
+ * Disable snowballstemmer-based search until upstream implements
+ it correctly (without JS blobs) and we get snowballstemmer packaged.
+ * Bump Standards-Version to 3.9.6, no changes needed.
+ * Override lintian false positive warnings about missing sources for
+ minified files (jquery.js, underscore.js, and css3-mediaqueries.js).
+ * debian/dh-sphinxdoc/install-js: Update list of files to be installed.
+
... 771 lines suppressed ...
--
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