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-11-09Close #9618: i18n: Add gettext_allow_fuzzy_translationsTakeshi KOMIYA
2021-09-08Fix typos discovered by codespellChristian Clauss
2021-07-23Address flake8 errors in whitespace lintingLouis Maddox
2021-07-18Better sphinx.config docstringsLouis Maddox
2021-05-16refactor: Do config file existence check in Config.read()Takeshi KOMIYA
2021-05-05Merge pull request #9131 from RuRo/feature/glob-nitpick-ignoreTakeshi KOMIYA
Ignore nitpick warnings with regular expressions using `nitpick_ignore_regex`
2021-05-03refactor: Add Optional to type annotationsTakeshi KOMIYA
2021-05-02implement nitpick_ignore_regexruro
2021-04-23🐛 FIX: `Config.__getitem__` typingChris Sewell
2021-04-07refactor: Use PEP-526 based variable annotationTakeshi KOMIYA
2021-02-28Close #8326: Rename master_doc to root_docTakeshi KOMIYA
To describe the purpose more accurately, the `master_doc` is now renamed to `root_doc`. The old name is still available. But it is recommeneded to use new one from now on.
2021-01-16Merge branch '3.x'Takeshi KOMIYA
2021-01-11Close #207: Now highlight_language supports multiple languagesTakeshi KOMIYA
This changes the structure of `highlight_options` to a dictionary that maps language names to option dictionary. It allows to setting pygments options for multiple languages at once.
2021-01-01Merge branch '3.x'Takeshi KOMIYA
2021-01-01Merge branch '3.4.x' into 3.xTakeshi 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-29Merge branch '3.x'Takeshi KOMIYA
2020-12-27Close #8132: Add project_copyright confval as an alias of copyrightTakeshi KOMIYA
Avoid to pylint error, add a new config variable; project_copyright as an alias of `copyright`.
2020-12-20Merge branch '3.x'Takeshi KOMIYA
2020-12-20Fix #8549: i18n: ``-D gettext_compact=0`` is no longer workingTakeshi KOMIYA
Since 1bf7fe424, ``-D gettext_compact=0`` is not treated as disabling the feature. It is recognized as creating ``0.pot`` because its type is Any. This changes it to `[bool, str]`.
2020-11-14Remove config variable: source_parsersTakeshi KOMIYA
It was already deprecated at 1.8.0 and removed at 3.0.0. So the definition is no longer used. refs: dc45877d3cb9f67348d3e2857bc489e16b71f61a
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-04Merge branch '3.x'Takeshi KOMIYA
2020-06-14Fix exception causes all over the codebaseRam Rachum
2020-06-03Merge branch '3.x'Takeshi KOMIYA
2020-06-03Merge branch '3.0.x' into 3.xTakeshi KOMIYA
2020-06-03Fix mypy violations (with mypy-0.780)Takeshi KOMIYA
2020-05-03Add stacklevel parameter to warnings.warn() callTakeshi KOMIYA
2020-04-29Remove deprecated features marked as RemovedInSphinx40WarningTakeshi 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-15Deprecate sphinx.util.pycompat.execfile_()Takeshi KOMIYA
2020-03-07Hello TYPE_CHECKING!Takeshi KOMIYA
2020-03-07Use typing.NamedTuple instead of collections.namedtuple as possibleTakeshi KOMIYA
2020-02-09Close #7108: Allow to show an error message from conf.py via ConfigErrorTakeshi 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-25Merge branch '2.0'Takeshi KOMIYA
2019-12-24Migrate to py3 style type annotation: sphinx.configTakeshi KOMIYA
2019-12-15Merge branch '2.0'Takeshi KOMIYA
2019-12-15Fix #6900: sphinx-build: -D option does not considers 0 and 1 as a boolean valueTakeshi KOMIYA
2019-11-30Merge branch '2.0'Takeshi KOMIYA
2019-11-20Fix #6848: config.py shouldn't pop extensions from overridesTakeshi KOMIYA
2019-11-17Merge branch '2.0'Takeshi KOMIYA
2019-10-26Close #1331: Change default User-Agent headerTakeshi KOMIYA
2019-03-30Drop features and APIs deprecated in 1.8Takeshi KOMIYA
2019-03-06Clean up import for annotationsTakeshi KOMIYA