[Python-modules-commits] [sphinx] branch upstream updated (3431307 -> ded8918)
Dmitry Shachnev
mitya57 at moszumanska.debian.org
Mon Nov 30 15:56:41 UTC 2015
This is an automated email from the git hooks/post-receive script.
mitya57 pushed a change to branch upstream
in repository sphinx.
from 3431307 Imported Upstream version 1.3.1
adds ded8918 Import sphinx_1.3.2.orig.tar.gz
No new revisions were added by this update.
Summary of changes:
CHANGES | 78 +++
PKG-INFO | 2 +-
Sphinx.egg-info/PKG-INFO | 2 +-
Sphinx.egg-info/SOURCES.txt | 17 +
Sphinx.egg-info/requires.txt | 4 +-
doc/_templates/indexsidebar.html | 2 +-
doc/builders.rst | 38 ++
doc/config.rst | 2 +-
doc/ext/graphviz.rst | 4 +
doc/ext/ifconfig.rst | 4 +-
doc/ext/todo.rst | 4 +
doc/extdev/tutorial.rst | 4 +-
doc/install.rst | 2 +-
doc/make.bat | 33 ++
setup.py | 4 +-
sphinx/__init__.py | 6 +-
sphinx/apidoc.py | 7 +-
sphinx/application.py | 19 +-
sphinx/builders/__init__.py | 9 +-
sphinx/builders/html.py | 8 +-
sphinx/builders/latex.py | 13 +-
sphinx/builders/linkcheck.py | 12 +-
sphinx/builders/manpage.py | 2 +-
sphinx/builders/texinfo.py | 2 +-
sphinx/builders/websupport.py | 2 +
sphinx/cmdline.py | 7 +-
sphinx/directives/code.py | 9 -
sphinx/directives/other.py | 9 +-
sphinx/domains/std.py | 2 +-
sphinx/environment.py | 12 +-
sphinx/ext/autosummary/__init__.py | 2 +-
sphinx/ext/coverage.py | 6 +-
sphinx/ext/doctest.py | 60 +-
sphinx/ext/intersphinx.py | 1 +
sphinx/ext/napoleon/docstring.py | 114 ++--
sphinx/ext/todo.py | 9 +-
sphinx/highlighting.py | 12 +-
sphinx/locale/__init__.py | 5 +-
sphinx/pycode/__init__.py | 17 +-
sphinx/quickstart.py | 8 +-
sphinx/search/__init__.py | 10 +
sphinx/search/da.py | 1 +
sphinx/search/de.py | 1 +
sphinx/search/es.py | 1 +
sphinx/search/fi.py | 1 +
sphinx/search/fr.py | 1 +
sphinx/search/hu.py | 1 +
sphinx/search/it.py | 1 +
sphinx/search/ja.py | 9 +-
sphinx/search/nl.py | 1 +
sphinx/search/no.py | 1 +
sphinx/search/pt.py | 1 +
sphinx/search/ro.py | 1 +
sphinx/search/ru.py | 1 +
sphinx/search/sv.py | 1 +
sphinx/search/tr.py | 1 +
sphinx/themes/basic/static/searchtools.js_t | 46 +-
sphinx/themes/default/static/default.css | 1 +
sphinx/theming.py | 56 +-
sphinx/transforms.py | 22 +-
sphinx/util/docfields.py | 7 +-
sphinx/util/i18n.py | 11 +-
sphinx/util/nodes.py | 73 ++-
sphinx/util/osutil.py | 11 +-
sphinx/websupport/search/__init__.py | 4 +
sphinx/writers/html.py | 5 +-
sphinx/writers/latex.py | 104 +++-
sphinx/writers/text.py | 14 +-
tests/root/footnote.txt | 15 +
tests/root/markup.txt | 8 +-
tests/roots/test-build-text/listitems.txt | 4 +
tests/roots/test-contentsname/bar.rst | 4 +
.../{test-numfig => test-contentsname}/conf.py | 0
tests/roots/test-contentsname/foo.rst | 4 +
.../{test-tocdepth => test-contentsname}/index.rst | 2 +-
tests/roots/test-directive-code/empty.inc | 3 +
tests/roots/test-directive-code/lineno_match.rst | 3 +
tests/roots/test-directive-code/literal.inc | 1 +
tests/roots/test-doctest/doctest.txt | 9 +
.../base_themes_dir/base_theme1/theme.conf | 2 +
.../base_themes_dir/base_theme2/theme.conf | 2 +
tests/roots/test-double-inheriting-theme/conf.py | 7 +
tests/roots/test-double-inheriting-theme/index.rst | 3 +
.../{test-tocdepth => test-ext-graphviz}/conf.py | 2 +-
tests/roots/test-ext-graphviz/index.rst | 7 +
tests/roots/test-intl/contents.txt | 1 +
tests/roots/test-intl/definition_terms.po | 10 +
tests/roots/test-intl/definition_terms.txt | 3 +
tests/roots/test-intl/refs.po | 85 +++
tests/roots/test-intl/refs.txt | 47 ++
tests/test_build_html.py | 8 +-
tests/test_build_latex.py | 43 ++
tests/test_build_text.py | 12 +
tests/test_directive_code.py | 34 +-
tests/test_ext_graphviz.py | 23 +
tests/test_ext_napoleon_docstring.py | 635 ++++++++++++++++++++-
tests/test_intl.py | 23 +-
tests/test_markup.py | 2 +-
tests/test_theming.py | 18 +-
tests/test_util_i18n.py | 8 +-
tests/test_util_nodes.py | 36 +-
101 files changed, 1725 insertions(+), 279 deletions(-)
create mode 100644 doc/make.bat
create mode 100644 sphinx/themes/default/static/default.css
create mode 100644 tests/roots/test-build-text/listitems.txt
create mode 100644 tests/roots/test-contentsname/bar.rst
copy tests/roots/{test-numfig => test-contentsname}/conf.py (100%)
create mode 100644 tests/roots/test-contentsname/foo.rst
copy tests/roots/{test-tocdepth => test-contentsname}/index.rst (65%)
create mode 100644 tests/roots/test-directive-code/empty.inc
create mode 100644 tests/roots/test-double-inheriting-theme/base_themes_dir/base_theme1/theme.conf
create mode 100644 tests/roots/test-double-inheriting-theme/base_themes_dir/base_theme2/theme.conf
create mode 100644 tests/roots/test-double-inheriting-theme/conf.py
create mode 100644 tests/roots/test-double-inheriting-theme/index.rst
copy tests/roots/{test-tocdepth => test-ext-graphviz}/conf.py (55%)
create mode 100644 tests/roots/test-ext-graphviz/index.rst
create mode 100644 tests/roots/test-intl/refs.po
create mode 100644 tests/roots/test-intl/refs.txt
create mode 100644 tests/test_ext_graphviz.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