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-03-02Deprecate SphinxComponentRegistry.get_source_input()Takeshi KOMIYA
The source_input system was deprecated at v2.0. So no client uses it longer now. Therefore this deprecate the getter interface and its usage.
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-07-16Preserve backwards compatibilityPeter Bell
2020-07-15Require canonical name to be specified when calling deprecated_aliasPeter Bell
2020-07-11Merge branch '3.x'Takeshi KOMIYA
2020-07-09Fix #7619: Duplicated node IDs are generated if node has multiple IDsTakeshi KOMIYA
2020-04-29Remove deprecated features marked as RemovedInSphinx40WarningTakeshi KOMIYA
2020-04-19Merge branch '3.x'Takeshi KOMIYA
2020-04-19Fix sphinx crashes with ImportError on python3.5.1Takeshi KOMIYA
typing.Type was added since python 3.5.2. So it should be imported only on type checking.
2020-03-07Hello TYPE_CHECKING!Takeshi KOMIYA
2020-03-07Deprecate codes for python 3.5Takeshi KOMIYA
2020-01-01Merge branch '2.0'Takeshi KOMIYA
2020-01-01A happy new year!Takeshi KOMIYA
2019-12-30mypy: Enable disallow_incomplete_defs flag for type checkingTakeshi KOMIYA
2019-12-25Fix flake8 violationsTakeshi KOMIYA
2019-12-25Merge branch '2.0'Takeshi KOMIYA
2019-12-24Migrate to py3 style type annotation: sphinx.ioTakeshi KOMIYA
2019-12-21Fix flake8 violationTakeshi KOMIYA
2019-12-21Merge branch '2.0'Takeshi KOMIYA
2019-12-15Deprecate sphinx.io.FiletypeNotFoundError and get_filetype()Takeshi KOMIYA
2019-12-15Fix #6855: Non-RST translated text should be parsed by the appropriate parserJames McKinney
2019-10-06Fix merge errorTakeshi KOMIYA
2019-10-06Fix merge errorTakeshi KOMIYA
2019-10-06Merge branch '2.0'Takeshi KOMIYA
2019-10-06Merge branch '2.2.1' into 2.0Takeshi KOMIYA
2019-10-06Fix mypy violations (for mypy-0.730)Takeshi KOMIYA
2019-08-20refactor: SphinxStandaloneReader should not hold an application objectTakeshi KOMIYA
2019-08-01Merge branch '2.0'jfbu
2019-07-13Fix type annotation for python 3.5.1Takeshi KOMIYA
2019-05-13Merge branch '2.0'Takeshi KOMIYA
2019-05-12Fix #6351: "Hyperlink target is not referenced" message is shown even if ↵Takeshi KOMIYA
referenced
2019-03-30Drop features and APIs deprecated in 1.8Takeshi KOMIYA
2019-03-17Python-3-only clean ups discovered by pyupgradeJon Dufresne
https://github.com/asottile/pyupgrade > A tool to automatically upgrade syntax for newer versions of the > language. - Drop u str prefix - Drop base object inheritance - Drop args to super() - Use set literals - Use dict comprehension - Use set comprehension
2019-03-17refactor: Remove lists of transforms from SphinxStandalonReaderTakeshi KOMIYA
2019-03-09refactor CitationReferences transformTakeshi KOMIYA
2019-03-06Clean up import for annotationsTakeshi KOMIYA
2019-02-07Close #4550: All tables and figures without ``align`` option are displayed ↵Takeshi KOMIYA
to center
2019-01-13Publisher requires destination parameter.shimizukawa
This change fixes a bug that introduced at de49b991f635.
2019-01-02Merge branch '1.8'Takeshi KOMIYA
2019-01-02A happy new year!Takeshi KOMIYA
2018-12-17Deprecate SphinxFileInput.supportedTakeshi KOMIYA
2018-12-17Deprecate SphinxBaseFileInputTakeshi KOMIYA
2018-12-17refactor: Use simple Input classTakeshi 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-16Move `source-read` event to SphinxStandaloneReaderTakeshi KOMIYA
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