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-04-05Merge branch '3.x'Takeshi KOMIYA
2020-04-05Fix #7409: Convert configuration values on late config-inited eventTakeshi KOMIYA
This changes a priority for config-inited handlers of core modules to invoke them at the late of the event. It allows extensions to modify configurations.
2020-03-07Hello TYPE_CHECKING!Takeshi KOMIYA
2020-01-01A happy new year!Takeshi KOMIYA
2019-12-30mypy: Enable disallow_incomplete_defs flag for type checkingTakeshi KOMIYA
2019-12-24Migrate to py3 style type annotation: sphinx.extensionTakeshi KOMIYA
2019-01-02Merge branch '1.8'Takeshi KOMIYA
2019-01-02A happy new year!Takeshi KOMIYA
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-15Replace all "unicode" type by "str"Takeshi KOMIYA
2018-11-24Add sphinx.util.typing:unicode to help mypy-3 migrationTakeshi KOMIYA
2018-09-22Merge branch 'master' into HEADTakeshi KOMIYA
2018-09-11Remove unnecessary object from class definitionsJon Dufresne
In Python 3, all classes are new-style classes. The object in the definition is redundant and unnecessary.
2018-09-11Remove use of six.iteritems()Jon Dufresne
In Python 3, dict.items() is always an iterator.
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-18Merge branch '1.7'Takeshi KOMIYA
2018-02-14Use typing.TYPE_CHECKING for typehintsTakeshi KOMIYA
2018-02-10Merge branch '1.7-release'Takeshi KOMIYA
2018-02-07Insert a space after the comma in the messagecocoatomo
2018-02-04Update type annotationsTakeshi KOMIYA
2018-01-31Reimplement needs_extensions checker as a config-init handlerTakeshi KOMIYA
2017-12-31Merge branch 'happy_new_year' into masterTakeshi KOMIYA
2017-12-31A happy new year!Takeshi KOMIYA
2017-12-29Fix parallel_write_safe check was wrongTakeshi KOMIYA
2017-06-25Fix #3833: command line messages are translated unintentionallyTakeshi KOMIYA
2017-05-12Update messagesTakeshi KOMIYA
2017-04-22Move load_extension() to factoryTakeshi KOMIYA
2017-03-26Year++Takeshi KOMIYA
2017-03-26Rename module: sphinx.extensions -> sphinx.extension (singular)Takeshi KOMIYA
2008-01-27More refactoring:Georg Brandl
* Move refcounting into an addon module. * Rename the extension manager to Application and use it throughout. * Fix some bugs found by pylint. * Add "ifconfig" addon.
2008-01-21Further refactorings, add extensibility API.Georg Brandl