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-02-23Fix #8915: html theme: The translation of sphinx_rtd_theme does not workTakeshi KOMIYA
Since sphinx_rtd_theme-0.5.0, it supports translations. But Sphinx core disallows to enable it because theming framework gives special treatment for the theme for a long time. This goes to load it via setuptools at first to enable the translations. Note: The special treatment for sphinx_rtd_theme (< 0.2.5) is not removed yet. But it will be removed in the future release.
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-07-04Merge branch '3.x'Takeshi KOMIYA
2020-06-14Fix exception causes all over the codebaseRam Rachum
2020-03-07Hello TYPE_CHECKING!Takeshi KOMIYA
2020-01-01A happy new year!Takeshi KOMIYA
2019-12-24Migrate to py3 style type annotation: sphinx.themingTakeshi KOMIYA
2019-03-06Clean up import for annotationsTakeshi 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-23Remove uses of six.moves that did not cause any type errorsJon Dufresne
Removal of the remaining imports may require passing "--python-version 3.5" to the mypy command.
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-09-02Drop APIs deprecated in 2.0Takeshi KOMIYA
2018-04-14Merge branch '1.7'Takeshi KOMIYA
2018-04-14Fix mypy violationsTakeshi 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-03-03Make console and warning messages translatableTakeshi KOMIYA
2018-02-14Use typing.TYPE_CHECKING for typehintsTakeshi KOMIYA
2017-12-31Merge branch 'happy_new_year' into masterTakeshi KOMIYA
2017-12-31A happy new year!Takeshi KOMIYA
2017-10-23Merge branch 'stable'Takeshi KOMIYA
2017-10-23Fix flake8 and style-check violationsTakeshi KOMIYA
2017-07-02Merge branch 'stable'Takeshi KOMIYA
2017-06-26Unknow html_theme_options throw warnings instead of errors.daniel
New behavior: a sphinx build does not stop, if for the configured theme an unknown but also unneeded html_theme_options is provided. Fixed #3884
2017-06-25Fix #3833: command line messages are translated unintentionallyTakeshi KOMIYA
2017-05-12Update messagesTakeshi KOMIYA
2017-05-11Fix #3738: Nonsensical code in theming.pyTakeshi KOMIYA
2017-04-23Fix to use registry.load_extension() insteadTakeshi KOMIYA
2017-04-22Fix #3628: Rename sphinx_themes entry point to sphinx.html_themesTakeshi KOMIYA
2017-04-20Add docstrings to sphinx.themingTakeshi KOMIYA
2017-04-20Fix mypy violationsTakeshi KOMIYA
2017-04-20Drop old methodsTakeshi KOMIYA
2017-04-20Refactored againTakeshi KOMIYA
2017-04-20Add HTMLThemeFactory classTakeshi KOMIYA
2017-04-20Refactor sphinx.themingTakeshi KOMIYA
2017-04-20Refactor Theme classTakeshi KOMIYA
2017-04-20Split theme manager and theme instance classTakeshi KOMIYA
2017-04-18Fix fail to load template file if the parent template is archivedTakeshi KOMIYA
2017-04-16Remove unused codesTakeshi KOMIYA
2017-03-26Merge branch 'stable'Takeshi KOMIYA
2017-03-26Year++Takeshi KOMIYA
2017-03-03Upgrade to mypy-0.5Takeshi KOMIYA