[Python-modules-commits] [sphinx] branch upstream updated (ac9e2c8 -> d93d63b)

Dmitry Shachnev mitya57 at moszumanska.debian.org
Tue Aug 23 19:14:38 UTC 2016


This is an automated email from the git hooks/post-receive script.

mitya57 pushed a change to branch upstream
in repository sphinx.

      from  ac9e2c8   Import sphinx_1.4.5.orig.tar.gz
       new  d93d63b   Import sphinx_1.4.6.orig.tar.gz

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:
 CHANGES                                            |  31 +++++
 EXAMPLES                                           |   1 +
 Makefile                                           |   1 +
 PKG-INFO                                           |   2 +-
 Sphinx.egg-info/PKG-INFO                           |   2 +-
 Sphinx.egg-info/SOURCES.txt                        |  20 ++-
 Sphinx.egg-info/requires.txt                       |   2 +-
 doc/_templates/index.html                          |   4 +-
 doc/_themes/sphinx13/layout.html                   |   4 +-
 doc/conf.py                                        |   9 +-
 doc/config.rst                                     |   4 +
 doc/domains.rst                                    |   8 +-
 doc/ext/example_google.rst                         |   4 +-
 doc/ext/example_numpy.rst                          |   4 +-
 doc/markup/inline.rst                              |   6 +
 setup.py                                           |   2 +-
 sphinx/__init__.py                                 |   6 +-
 sphinx/application.py                              |   2 +-
 sphinx/builders/applehelp.py                       |  42 +++---
 sphinx/builders/epub.py                            |  22 ++-
 sphinx/builders/epub3.py                           |  79 ++++++-----
 sphinx/builders/html.py                            |  22 +++
 sphinx/builders/linkcheck.py                       |   5 +
 sphinx/config.py                                   |  11 +-
 sphinx/directives/code.py                          |  17 ++-
 sphinx/domains/__init__.py                         |   4 +-
 sphinx/ext/autodoc.py                              |   7 +-
 sphinx/ext/intersphinx.py                          |  12 +-
 sphinx/make_mode.py                                |   5 +-
 sphinx/pycode/Grammar-py2-sphinx1.5.pickle         | Bin 18705 -> 0 bytes
 sphinx/pycode/Grammar-py3-sphinx1.5.pickle         | Bin 19546 -> 0 bytes
 sphinx/themes/basic/changes/frameset.html          |   2 +-
 sphinx/themes/basic/changes/rstsource.html         |   2 +-
 sphinx/themes/basic/changes/versionchanges.html    |   2 +-
 sphinx/themes/basic/domainindex.html               |   4 +-
 sphinx/themes/basic/layout.html                    |   8 +-
 sphinx/themes/epub/layout.html                     |   3 +-
 sphinx/util/inspect.py                             |   8 +-
 sphinx/util/osutil.py                              |   7 +
 sphinx/util/pycompat.py                            |   2 +-
 sphinx/util/smartypants.py                         |   4 +-
 sphinx/writers/html.py                             |  17 ++-
 tests/.test_build_latex.py.swp                     | Bin 53248 -> 0 bytes
 tests/root/footnote.txt                            |   6 -
 tests/root/images.txt                              |   3 -
 tests/root/includes.txt                            |   4 -
 tests/root/markup.txt                              |  15 ---
 tests/roots/test-basic/conf.py                     |   7 +
 tests/roots/test-basic/index.rst                   |  29 ++++
 .../conf.py                                        |   0
 tests/roots/test-ext-math-simple/index.rst         |   4 +
 .../math.txt => roots/test-ext-math/math.rst}      |   0
 tests/roots/test-searchadapters/conf.py            |   4 +
 .../{root => roots/test-searchadapters}/markup.txt |   0
 .../test-warnings}/autodoc_fodder.py               |   0
 tests/roots/test-warnings/conf.py                  |  12 ++
 tests/roots/test-warnings/index.rst                |  48 +++++++
 tests/{root => roots/test-warnings}/svgimg.pdf     | Bin
 tests/{root => roots/test-warnings}/svgimg.svg     |   0
 .../test-warnings/undecodable.rst}                 |   0
 tests/{root => roots/test-warnings}/wrongenc.inc   |   0
 tests/test_autodoc.py                              |   5 +-
 tests/test_build.py                                |  13 +-
 tests/test_build_applehelp.py                      |   6 +-
 tests/test_build_html.py                           | 149 ++++++++++++++++-----
 tests/test_build_latex.py                          |  39 +++---
 tests/test_build_texinfo.py                        |  30 +++--
 tests/test_environment.py                          |   5 -
 tests/test_ext_autosummary.py                      |   2 +-
 tests/test_ext_ifconfig.py                         |   5 +-
 tests/test_ext_intersphinx.py                      |  46 ++++++-
 tests/test_ext_math.py                             |  20 ++-
 tests/test_i18n.py                                 |  17 ---
 tests/test_markup.py                               |   2 +-
 tests/test_searchadapters.py                       |   2 +-
 tests/test_util_inspect.py                         |  70 ++++++++++
 tests/typing_test_data.py                          |   8 ++
 77 files changed, 688 insertions(+), 260 deletions(-)
 delete mode 100644 sphinx/pycode/Grammar-py2-sphinx1.5.pickle
 delete mode 100644 sphinx/pycode/Grammar-py3-sphinx1.5.pickle
 delete mode 100644 tests/.test_build_latex.py.swp
 create mode 100644 tests/roots/test-basic/conf.py
 create mode 100644 tests/roots/test-basic/index.rst
 copy tests/roots/{test-ext-math => test-ext-math-simple}/conf.py (100%)
 create mode 100644 tests/roots/test-ext-math-simple/index.rst
 copy tests/{root/math.txt => roots/test-ext-math/math.rst} (100%)
 create mode 100644 tests/roots/test-searchadapters/conf.py
 copy tests/{root => roots/test-searchadapters}/markup.txt (100%)
 copy tests/{root => roots/test-warnings}/autodoc_fodder.py (100%)
 create mode 100644 tests/roots/test-warnings/conf.py
 create mode 100644 tests/roots/test-warnings/index.rst
 copy tests/{root => roots/test-warnings}/svgimg.pdf (100%)
 copy tests/{root => roots/test-warnings}/svgimg.svg (100%)
 rename tests/{root/undecodable.txt => roots/test-warnings/undecodable.rst} (100%)
 copy tests/{root => roots/test-warnings}/wrongenc.inc (100%)
 delete mode 100644 tests/test_i18n.py
 create mode 100644 tests/test_util_inspect.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