Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-01-01Merge branch '3.x'Takeshi KOMIYA
2021-01-01A happy new year!Takeshi KOMIYA
.. note:: $ find sphinx tests LICENSE doc/conf.py -type f -exec sed -i '' -e 's/2007\-20../2007-2021/' {} \; $ git co sphinx/locale/**/*.js sphinx/templates/epub3/mimetype
2020-11-11Do isortTakeshi KOMIYA
2020-11-11Merge branch '3.x'Takeshi KOMIYA
2020-11-11Sort imports with isortFrançois Freitag
Keep imports alphabetically sorted and their order homogeneous across Python source files. The isort project has more feature and is more active than the flake8-import-order plugin. Most issues caught were simply import ordering from the same module. Where imports were purposefully placed out of order, tag with isort:skip.
2020-05-03Merge branch '3.x'Takeshi KOMIYA
2020-05-03Add stacklevel parameter to warnings.warn() callTakeshi KOMIYA
2020-03-07Hello TYPE_CHECKING!Takeshi KOMIYA
2020-03-07Deprecate codes for python 3.5Takeshi KOMIYA
2020-02-14Deprecate sphinx.parsers.Parser.appTakeshi KOMIYA
2020-01-01A happy new year!Takeshi KOMIYA
2019-12-24Migrate to py3 style type annotation: sphinx.parsersTakeshi KOMIYA
2019-07-13Fix type annotation for python 3.5.1Takeshi KOMIYA
2019-01-02Merge branch '1.8'Takeshi KOMIYA
2019-01-02A happy new year!Takeshi KOMIYA
2018-12-28Merge branch '1.8'jfbu
resolved Conflicts: doc/development/tutorials/todo.rst sphinx/locale/__init__.py sphinx/search/zh.py
2018-12-27Fix various spelling typosjfbu
2018-12-16Remove unnecessary encoding cookie from Python source filesJon Dufresne
In Python 3, the default encoding of source files is utf-8. The encoding cookie is now unnecessary and redundant so remove it. For more details, see the docs: https://docs.python.org/3/howto/unicode.html#the-string-type > The default encoding for Python source code is UTF-8, so you can > simply include a Unicode character in a string literal ... Includes a fix for the flake8 header checks to stop expecting an encoding cookie.
2018-12-15Use Python 3 super() argument-less syntaxJon Dufresne
The form is less verbose and more idiomatic for Python 3 only code. https://docs.python.org/3/library/functions.html#super
2018-12-15Replace all "unicode" type by "str"Takeshi KOMIYA
2018-12-14Add docutils-stubs to test depsTakeshi KOMIYA
2018-12-05Process prolog and epilog on RSTParser (instead Input component)Takeshi KOMIYA
2018-12-05refactor: RSTParser should inherit sphinx.parsers.ParserTakeshi KOMIYA
2018-11-27refactor: Use super() to call methods of superclassTakeshi KOMIYA
2018-11-24Add sphinx.util.typing:unicode to help mypy-3 migrationTakeshi KOMIYA
2018-09-02Drop APIs deprecated in 2.0Takeshi KOMIYA
2018-06-07Update docs for sphinx.parsers.ParserTakeshi KOMIYA
2018-03-17Merge branch '1.7'Takeshi KOMIYA
2018-03-13Revert "Use typing.TYPE_CHECKING for typehints"Takeshi KOMIYA
This reverts commit a073e17537c2aacaac305feadea58d4473ec97f4.
2018-02-21Change interface of add_source_parser() and add add_source_suffix()Takeshi KOMIYA
2018-02-18Merge branch '1.7'Takeshi KOMIYA
2018-02-14Use typing.TYPE_CHECKING for typehintsTakeshi KOMIYA
2018-01-24Integrate source_suffix and source_parsers (refs: #4474)Takeshi KOMIYA
2018-01-07Merge branch 'stable'Takeshi KOMIYA
2018-01-05Move SphinxSmartQuotes transform to SphinxStandaloneReaderjfbu
closes #4142 closes #4357 closes #4359 refs: #3967 Adds ``smartquotes``, ``smartquotes_action``, ``smartquotes_excludes`` configuration variables. - if ``smartquotes`` is set to False, then Smart Quotes transform is not applied even if a Docutils configuration file activates it, - the current default of ``smartquotes_excludes`` deactivates Smart Quotes for Japanese language, and also for the ``man`` and ``text`` builders. However, currently ``make text html`` deactivates Smart Quotes for ``html`` too, and ``make html text`` activates them for ``text`` too, because the picked environment is shared and already transformed. - now Smart Quotes get applied also when source documents are in Markdown or other formats.
2017-12-31Merge branch 'happy_new_year' into masterTakeshi KOMIYA
2017-12-31A happy new year!Takeshi KOMIYA
2017-12-14Update docstringsTakeshi KOMIYA
2017-12-14Fix mypy violationTakeshi KOMIYA
2017-12-12Add test_io.pyTakeshi KOMIYA
2017-05-28Fix mypy violationTakeshi KOMIYA
2017-05-28Add Sphinx own parser (refs: #3816)Takeshi KOMIYA
2017-03-26Merge branch 'stable'Takeshi KOMIYA
2017-03-26Year++Takeshi KOMIYA
2017-02-08Fix mypy violationsTakeshi KOMIYA
2016-01-17Update docs about sphinx.parsers.Parser classTakeshi KOMIYA
2016-01-17Add sphinx.parsers.Parser class; a base class for new parsersTakeshi KOMIYA
The class inherits ``docutils.parsers.Parser`` and implements ``set_application()`` in addition. It enables subclasses to read configurations, to access environments and to logging.