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
2022-01-01A happy new year!Takeshi KOMIYA
2021-04-07refactor: Use PEP-526 based variable annotationTakeshi KOMIYA
2021-02-07Merge branch '3.x'Takeshi KOMIYA
2021-02-04Close #8813: Show what extension caused it on errors on event handlerTakeshi KOMIYA
Show the module name of the event handler on the error inside it to let users know a hint of the error.
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-12-13Merge branch '3.x'Takeshi KOMIYA
2020-11-28refactor: Register events for HTML builders in the HTML builder moduleTakeshi KOMIYA
2020-11-11Do isortTakeshi 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-11-04Merge branch '3.x'Takeshi KOMIYA
2020-11-02Fix #6914: Emit a detailed warning when failed to resolve :ref:Takeshi KOMIYA
To be clear the ambiguous warning for missing-reference :ref:, this separates the warning to missing-label and missing-caption. To emit a warning dynamically, this also adds a new event: `warn-missing-reference` to customize warning messages via event handlers.
2020-07-24Merge branch '3.x'Takeshi KOMIYA
2020-07-16refactor: namedtuples with PEP 526Takeshi KOMIYA
Apply PEP 526 based variable annotation style to namedtuples. It is available since python 3.6.
2020-07-11Propagate original extension errorDavid Stansby
2020-06-03Merge branch '3.x'Takeshi KOMIYA
2020-05-17Add allowed_exceptions parameter to Sphinx.emit() (refs: #7683)Takeshi KOMIYA
It allows handlers to raise specified exceptions.
2020-05-17Merge branch '3.x'Takeshi KOMIYA
2020-05-16Fix: handle errors on event handlers (refs: #7629)Takeshi KOMIYA
2020-04-29Remove deprecated features marked as RemovedInSphinx40WarningTakeshi KOMIYA
2020-03-07Hello TYPE_CHECKING!Takeshi KOMIYA
2020-01-16Support priority of event handlersTakeshi 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.eventsTakeshi KOMIYA
2019-04-16refactor: Make app argument for EventManager optional to keep compatibilityTakeshi KOMIYA
2019-04-16Make EventManager portableTakeshi KOMIYA
So far, we need to bypass application object for modules to emit a event. This make EventManager portable and easy to pass event emitter. This brings modules less coupled with application object.
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-12-15Remove print_function featureTakeshi KOMIYA
2018-11-24Add sphinx.util.typing:unicode to help mypy-3 migrationTakeshi KOMIYA
2018-09-24Replace all six.itervalues()/.iteritems() with .values()/.items()Jon Dufresne
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-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-01-20Add config-inited eventTakeshi KOMIYA
2017-12-31A happy new year!Takeshi KOMIYA
2017-06-25Fix #3833: command line messages are translated unintentionallyTakeshi KOMIYA
2017-04-29Fix #3633: misdetect unreferenced citationsTakeshi KOMIYA
2017-03-26Fix event handlers should be called back by installed orderTakeshi KOMIYA
2017-03-26Year++Takeshi KOMIYA
2017-03-11Add EventManagerTakeshi KOMIYA