Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Warn on deprecated Python-specific index types (#11412) | Adam Turner | 2023-05-09 | 1 | -5/+0 |
| | |||||
* | Revert "Support and prefer ``.jinja`` to ``_t`` for static templates ↵ | James Addison | 2023-04-23 | 1 | -1/+1 |
| | | | | | (#11165)" (#11329) This reverts commit 5d13215b58f93c6be8255ef2e3e20836508c7d47. | ||||
* | Support and prefer ``.jinja`` to ``_t`` for static templates (#11165) | James Addison | 2023-04-07 | 1 | -1/+1 |
| | | | Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> | ||||
* | Drop OrderedDict | Adam Turner | 2023-03-05 | 1 | -3/+3 |
| | | | | Since Python 3.7, dicts maintain insertion order. | ||||
* | Fix COM812 | Adam Turner | 2023-02-18 | 1 | -2/+2 |
| | |||||
* | Define ``sphinx.builders.gettext.LocalTimeZone.tzname()`` | Adam Turner | 2023-02-11 | 1 | -0/+3 |
| | |||||
* | Move console output utilities to ``sphinx.util.display`` | Adam Turner | 2023-01-03 | 1 | -1/+2 |
| | | | | | - Merge `old_status_iterator` into ``status_iterator``. ``old_status_iterator`` was deprecated in version 1.6. | ||||
* | Run pyupgrade (#11070) | Adam Turner | 2023-01-02 | 1 | -3/+3 |
| | |||||
* | Use PEP 604 types | Adam Turner | 2023-01-01 | 1 | -6/+6 |
| | |||||
* | Use PEP 595 types | Adam Turner | 2023-01-01 | 1 | -12/+11 |
| | |||||
* | Insert ``from __future__ import annotations`` | Adam Turner | 2023-01-01 | 1 | -0/+2 |
| | |||||
* | Update typing ignores for mypy 0.990 | Adam Turner | 2022-11-13 | 1 | -1/+1 |
| | |||||
* | Remove `sphinx.builders.gettext` module from whitelist (#10798) | danieleades | 2022-09-09 | 1 | -1/+0 |
| | |||||
* | Improve static typing strictness (#10569) | danieleades | 2022-07-18 | 1 | -7/+12 |
| | |||||
* | Use the `flake8-comprehensions` lint plugin (#10601) | danieleades | 2022-06-26 | 1 | -2/+2 |
| | |||||
* | Remove warning | Adam Turner | 2022-06-01 | 1 | -1/+0 |
| | |||||
* | Add a warning | Adam Turner | 2022-05-31 | 1 | -2/+6 |
| | |||||
* | Ensure positions always sort | Adam Turner | 2022-05-31 | 1 | -1/+1 |
| | |||||
* | Fix #10104: gettext: Duplicated locations are output to pot file | Takeshi KOMIYA | 2022-05-23 | 1 | -1/+2 |
| | | | | | | When 3rd party extension does not provide line number for each message, duplicated locations are output to pot file unexpectedly. This filters duplicated locations before generationg pot file. | ||||
* | Collapse single line docstrings | Adam Turner | 2022-02-20 | 1 | -2/+1 |
| | |||||
* | Remove copyright and licence fields | Adam Turner | 2022-02-20 | 1 | -3/+0 |
| | |||||
* | Fix module docstring indentation | Adam Turner | 2022-02-20 | 1 | -2/+2 |
| | |||||
* | Fix module docstring first line | Adam Turner | 2022-02-20 | 1 | -2/+1 |
| | |||||
* | Remove module titles in docstrings | Adam Turner | 2022-02-19 | 1 | -3/+0 |
| | |||||
* | address some unused loop control variables (B007) | Daniel Eades | 2022-01-12 | 1 | -3/+3 |
| | |||||
* | Migrate to Node.findall() from Node.traverse() | Takeshi KOMIYA | 2022-01-03 | 1 | -1/+1 |
| | | | | | | | | Node.traverse() was marked as deprecated since docutils-0.18. Instead of it, Node.findall() has been added as successor of traverse(). This applies a patch to docutils-0.17 or older to be available Node.findall() and use it. | ||||
* | A happy new year! | Takeshi KOMIYA | 2022-01-01 | 1 | -1/+1 |
| | |||||
* | Fix mypy violations (with mypy-0.920) | Takeshi KOMIYA | 2021-12-17 | 1 | -1/+1 |
| | |||||
* | refactor: Use PEP-526 based variable annotation (sphinx.builders) | Takeshi KOMIYA | 2021-03-13 | 1 | -7/+6 |
| | |||||
* | Merge branch '3.x' | Takeshi KOMIYA | 2021-01-01 | 1 | -1/+1 |
|\ | |||||
| * | A happy new year! | Takeshi KOMIYA | 2021-01-01 | 1 | -1/+1 |
| | | | | | | | | | | | | | | .. 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 | ||||
* | | Merge branch '3.x' | Takeshi KOMIYA | 2020-12-20 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix #8549: i18n: ``-D gettext_compact=0`` is no longer working | Takeshi KOMIYA | 2020-12-20 | 1 | -1/+1 |
| | | | | | | | | | | | | 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]`. | ||||
* | | Do isort | Takeshi KOMIYA | 2020-11-12 | 1 | -1/+1 |
| | | |||||
* | | Merge branch '3.x' | Takeshi KOMIYA | 2020-11-12 | 1 | -7/+6 |
|\ \ | |/ | |||||
| * | Sort imports with isort | François Freitag | 2020-11-11 | 1 | -8/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | | Merge branch '3.x' | Takeshi KOMIYA | 2020-08-14 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | i18n: Add support for having single text domain | Michal Čihař | 2020-08-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | | The gettext_compact can now be a string which is then a single domain for all documents. Fixes #784 | ||||
* | | Merge branch '3.x' | Takeshi KOMIYA | 2020-07-05 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix exception causes all over the codebase | Ram Rachum | 2020-06-14 | 1 | -1/+1 |
| | | |||||
* | | Remove deprecated features marked as RemovedInSphinx40Warning | Takeshi KOMIYA | 2020-04-29 | 1 | -21/+0 |
| | | |||||
* | | Deprecate codes for python 3.5 | Takeshi KOMIYA | 2020-03-07 | 1 | -5/+1 |
|/ | |||||
* | Fix #7019: gettext: Absolute path used in message catalogs | Takeshi KOMIYA | 2020-01-13 | 1 | -3/+11 |
| | |||||
* | refactor: Rename var keyword argument to "**kwargs" | Takeshi KOMIYA | 2020-01-08 | 1 | -2/+2 |
| | |||||
* | A happy new year! | Takeshi KOMIYA | 2020-01-01 | 1 | -1/+1 |
| | |||||
* | mypy: Enable disallow_incomplete_defs flag for type checking | Takeshi KOMIYA | 2019-12-30 | 1 | -2/+2 |
| | |||||
* | Close #6781: gettext Add confvals to customize headers of POT file | Takeshi KOMIYA | 2019-12-15 | 1 | -0/+4 |
| | | | | | * gettext_last_translator * gettext_language_team | ||||
* | gettext: Use template file to generate message catalog | Takeshi KOMIYA | 2019-11-08 | 1 | -30/+42 |
| | |||||
* | Fix type annotation for python 3.5.1 | Takeshi KOMIYA | 2019-07-13 | 1 | -1/+4 |
| | |||||
* | Migrate to py3 style type annotation: sphinx.builders.gettext | Takeshi KOMIYA | 2019-06-10 | 1 | -49/+26 |
| |