[Python-modules-commits] [sphinx] branch master updated (2199011 -> 062bad4)
Dmitry Shachnev
mitya57 at moszumanska.debian.org
Sun Jan 22 09:17:54 UTC 2017
This is an automated email from the git hooks/post-receive script.
mitya57 pushed a change to branch master
in repository sphinx.
from 2199011 Release to experimental.
new b21964c record new upstream branch created by importing sphinx_1.5.2.orig.tar.gz
new a9046c8 Import sphinx_1.5.2.orig.tar.gz
new be3653f don't use CSS files hosted on external sites
new d4ddc47 disable a test that checks versions of JS libraries
new 43738c6 do not support snowballstemmer-based search for now
new 49c3965 Skip linkcheck tests that require network access
new 062bad4 Merge upstream release 1.5.2.
The 7 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:
CHANGES | 61 +-
CHANGES.old | 1249 ++++++
doc/devguide.rst => CONTRIBUTING.rst | 3 +
MANIFEST.in | 11 +-
Makefile | 17 +-
PKG-INFO | 2 +-
README.rst | 43 +-
Sphinx.egg-info/PKG-INFO | 2 +-
Sphinx.egg-info/requires.txt | 2 +-
debian/.git-dpm | 14 +-
debian/changelog | 8 +
debian/patches/disable_js_version_check.diff | 23 +-
debian/patches/fix_xapian_search.diff | 36 -
debian/patches/no_external_css.diff | 3 +-
debian/patches/no_snowballstemmer.diff | 34 +-
debian/patches/series | 1 -
debian/patches/skip_tests_network.diff | 30 +-
doc/_templates/index.html | 36 +-
doc/_templates/indexsidebar.html | 4 +-
doc/config.rst | 10 +-
doc/devguide.rst | 332 +-
doc/domains.rst | 5 +
doc/install.rst | 4 +-
doc/intl.rst | 4 +-
doc/invocation.rst | 9 +
doc/latex.rst | 29 +-
setup.cfg | 4 +-
setup.py | 2 +-
sphinx/__init__.py | 6 +-
sphinx/addnodes.py | 2 +-
sphinx/apidoc.py | 4 +-
sphinx/application.py | 11 +-
sphinx/builders/__init__.py | 2 +-
sphinx/builders/changes.py | 2 +-
sphinx/builders/html.py | 6 +-
sphinx/builders/htmlhelp.py | 10 +-
sphinx/builders/latex.py | 35 +-
sphinx/builders/linkcheck.py | 11 +-
sphinx/builders/qthelp.py | 16 +-
sphinx/builders/texinfo.py | 4 +-
sphinx/builders/websupport.py | 2 +-
sphinx/directives/code.py | 6 +-
sphinx/directives/other.py | 4 +-
sphinx/domains/c.py | 6 +-
sphinx/domains/cpp.py | 36 +-
sphinx/domains/javascript.py | 2 +-
sphinx/domains/python.py | 2 +-
sphinx/domains/std.py | 10 +-
sphinx/environment/__init__.py | 2 +-
sphinx/environment/managers/toctree.py | 16 +-
sphinx/errors.py | 9 +-
sphinx/ext/autodoc.py | 16 +-
sphinx/ext/autosummary/__init__.py | 13 +-
sphinx/ext/doctest.py | 4 +-
sphinx/ext/imgmath.py | 2 +-
sphinx/ext/intersphinx.py | 22 +-
sphinx/ext/pngmath.py | 2 +-
sphinx/ext/todo.py | 2 +-
sphinx/highlighting.py | 2 +-
sphinx/make_mode.py | 9 +-
sphinx/pycode/__init__.py | 2 +-
sphinx/pycode/nodes.py | 4 +-
sphinx/pycode/pgen2/parse.c | 4544 ++++++++++++++++++++
sphinx/pycode/pgen2/{parse.py => parse.pyx} | 146 +-
sphinx/quickstart.py | 8 +-
sphinx/roles.py | 4 +-
sphinx/search/__init__.py | 2 +-
sphinx/texinputs/footnotehyper-sphinx.sty | 6 +-
sphinx/texinputs/sphinx.sty | 125 +-
sphinx/transforms/i18n.py | 4 +-
sphinx/util/__init__.py | 19 +-
sphinx/util/console.py | 4 +-
sphinx/util/docutils.py | 2 +-
sphinx/util/fileutil.py | 4 +-
sphinx/util/i18n.py | 17 +-
sphinx/util/inspect.py | 7 +
sphinx/util/jsdump.py | 4 +-
sphinx/util/nodes.py | 25 +-
sphinx/util/osutil.py | 4 +-
sphinx/util/parallel.py | 7 +-
sphinx/util/requests.py | 7 +-
sphinx/util/stemmer.py | 16 +-
sphinx/util/texescape.py | 40 +-
sphinx/websupport/search/__init__.py | 2 +-
sphinx/writers/html.py | 62 +-
sphinx/writers/latex.py | 53 +-
sphinx/writers/manpage.py | 2 +-
sphinx/writers/texinfo.py | 12 +-
sphinx/writers/text.py | 12 +-
test-reqs.txt | 18 +
tests/conftest.py | 230 +
tests/coverage.py | 1158 -----
tests/path.py | 27 +-
tests/{ => py35}/test_autodoc_py35.py | 11 +-
tests/roots/test-add_enumerable_node/conf.py | 2 +-
...{test_enumerable_node.py => enumerable_node.py} | 0
.../conf.py | 2 +-
.../{test_source_parser.py => source_parser.py} | 0
tests/roots/test-add_source_parser/conf.py | 2 +-
.../{test_source_parser.py => source_parser.py} | 0
tests/roots/test-autosummary/dummy_module.py | 2 +-
tests/roots/test-domain-cpp/any-role.rst | 4 +
tests/roots/test-domain-cpp/index.rst | 7 +-
tests/roots/test-domain-cpp/roles.rst | 4 +
tests/run.py | 21 +-
tests/test_api_translator.py | 37 +-
tests/test_apidoc.py | 192 +-
tests/test_application.py | 35 +-
tests/test_autodoc.py | 68 +-
tests/test_build.py | 83 +-
tests/test_build_applehelp.py | 9 +-
tests/test_build_gettext.py | 56 +-
tests/test_build_html.py | 1524 +++----
tests/test_build_latex.py | 204 +-
tests/test_build_linkcheck.py | 14 +-
tests/test_build_manpage.py | 4 +-
tests/test_build_texinfo.py | 7 +-
tests/test_catalogs.py | 28 +-
tests/test_config.py | 133 +-
tests/test_correct_year.py | 60 +-
tests/test_directive_code.py | 48 +-
tests/test_directive_only.py | 5 +-
tests/test_docutilsconf.py | 19 +-
tests/test_domain_cpp.py | 66 +-
tests/test_environment.py | 8 +-
tests/test_environment_toctree.py | 58 +-
tests/test_ext_autodoc.py | 5 +-
tests/test_ext_autosectionlabel.py | 4 +-
tests/test_ext_autosummary.py | 12 +-
tests/test_ext_coverage.py | 4 +-
tests/test_ext_doctest.py | 5 +-
tests/test_ext_githubpages.py | 4 +-
tests/test_ext_graphviz.py | 39 +-
tests/test_ext_ifconfig.py | 4 +-
tests/test_ext_inheritance_diagram.py | 21 +-
tests/test_ext_intersphinx.py | 9 +-
tests/test_ext_math.py | 18 +-
tests/test_ext_todo.py | 7 +-
tests/test_ext_viewcode.py | 6 +-
tests/test_highlighting.py | 3 -
tests/test_intl.py | 876 ++--
tests/test_markup.py | 264 +-
tests/test_metadata.py | 12 +-
tests/test_quickstart.py | 12 +-
tests/test_search.py | 20 +-
tests/test_setup_command.py | 100 +-
tests/test_templating.py | 6 +-
tests/test_theming.py | 30 +-
tests/test_toctree.py | 6 +-
tests/test_util_fileutil.py | 41 +-
tests/test_util_i18n.py | 153 +-
tests/test_util_nodes.py | 150 +-
tests/test_versioning.py | 4 +-
tests/test_websupport.py | 219 +-
tests/test_writer_latex.py | 5 +-
tests/util.py | 294 +-
tox.ini | 52 +
utils/CHANGES_template | 17 +
utils/bump_version.py | 170 +
utils/check_sources.py | 28 +-
utils/jssplitter_generator.py | 4 +-
utils/regression_test.js | 124 -
utils/reindent.py | 18 +-
utils/release-checklist | 22 +-
164 files changed, 9736 insertions(+), 4576 deletions(-)
create mode 100644 CHANGES.old
copy doc/devguide.rst => CONTRIBUTING.rst (99%)
delete mode 100644 debian/patches/fix_xapian_search.diff
create mode 100644 sphinx/pycode/pgen2/parse.c
copy sphinx/pycode/pgen2/{parse.py => parse.pyx} (53%)
create mode 100644 test-reqs.txt
create mode 100644 tests/conftest.py
delete mode 100755 tests/coverage.py
rename tests/{ => py35}/test_autodoc_py35.py (98%)
rename tests/roots/test-add_enumerable_node/{test_enumerable_node.py => enumerable_node.py} (100%)
rename tests/roots/test-add_source_parser-conflicts-with-users-setting/{test_source_parser.py => source_parser.py} (100%)
rename tests/roots/test-add_source_parser/{test_source_parser.py => source_parser.py} (100%)
create mode 100644 tox.ini
create mode 100644 utils/CHANGES_template
create mode 100755 utils/bump_version.py
delete mode 100644 utils/regression_test.js
--
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