| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | Fix mypy violations (for mypy-0.720) | Takeshi KOMIYA | 2019-07-13 | 1 | -1/+1 | |
| | | | ||||||
| | * | Fix mypy violations (for mypy-0.710) | Takeshi KOMIYA | 2019-06-21 | 1 | -1/+1 | |
| | | | ||||||
| * | | Drop features and APIs deprecated in 1.8 | Takeshi KOMIYA | 2019-03-30 | 1 | -12/+0 | |
| |/ | ||||||
| * | Merge branch '1.8' | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 | |
| |\ | ||||||
| | * | A happy new year! | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 | |
| | | | ||||||
| * | | Reorder the arguments for translators | Takeshi KOMIYA | 2018-12-17 | 1 | -1/+1 | |
| | | | ||||||
| * | | Merge pull request #5819 from jdufresne/coding-comment | Takeshi KOMIYA | 2018-12-17 | 1 | -1/+0 | |
| |\ \ | | | | | | | Remove unnecessary encoding cookie from Python source files | |||||
| | * | | Remove unnecessary encoding cookie from Python source files | Jon Dufresne | 2018-12-16 | 1 | -1/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | |||||
| * | | | Remove redundant coerce to str in string formatting | Jon Dufresne | 2018-12-16 | 1 | -1/+1 | |
| |/ / | | | | | | | | | | | When an object is passed to a string format placeholder '%s', Python will implicitly call str() on the object. This applies to print() and logging as well. | |||||
| * | | Use Python 3 super() argument-less syntax | Jon Dufresne | 2018-12-15 | 1 | -2/+2 | |
| | | | | | | | | | | | | | The form is less verbose and more idiomatic for Python 3 only code. https://docs.python.org/3/library/functions.html#super | |||||
| * | | Replace all "unicode" type by "str" | Takeshi KOMIYA | 2018-12-15 | 1 | -21/+20 | |
| | | | ||||||
| * | | Remove a hack for py2 from TextWrapper | Takeshi KOMIYA | 2018-12-15 | 1 | -3/+2 | |
| | | | ||||||
| * | | Move to py3 mode for mypy (and remove many "type: ignore" comments) | Takeshi KOMIYA | 2018-12-15 | 1 | -2/+2 | |
| | | | ||||||
| * | | Use nodes.Element for visitor/departure methods | Takeshi KOMIYA | 2018-12-15 | 1 | -181/+181 | |
| | | | | | | | | | | | To follow docutils-stubs rule, we use nodes.Element for visitor/departure methods. | |||||
| * | | Fix annotations for footnotes | Takeshi KOMIYA | 2018-12-10 | 1 | -1/+2 | |
| | | | ||||||
| * | | refactor TextTranslator; Replace _make_depart_admonition() | Takeshi KOMIYA | 2018-12-04 | 1 | -16/+26 | |
| | | | ||||||
| * | | Add SphinxTranslator as an abstract class | Takeshi KOMIYA | 2018-12-03 | 1 | -7/+8 | |
| | | | ||||||
| * | | Fix annotations (minor fixes) | Takeshi KOMIYA | 2018-12-03 | 1 | -5/+8 | |
| | | | ||||||
| * | | refactor: Use super() to call methods of superclass | Takeshi KOMIYA | 2018-11-28 | 1 | -1/+1 | |
| | | | ||||||
| * | | Fix annotations for writers | Takeshi KOMIYA | 2018-11-28 | 1 | -4/+4 | |
| | | | ||||||
| * | | Add sphinx.util.typing:unicode to help mypy-3 migration | Takeshi KOMIYA | 2018-11-24 | 1 | -0/+1 | |
| | | | ||||||
| * | | Update type hints to text writer | Takeshi KOMIYA | 2018-11-21 | 1 | -183/+183 | |
| | | | ||||||
| * | | Fix two nits with the TextBuilder class | Stephen Finucane | 2018-11-16 | 1 | -4/+0 | |
| | | | | | | | | | | | | | | | | | - 'logger' was unused and can be removed - 'TextTranslator.sectionchars' was overridden in '__init__' and doesn't need to be defined Signed-off-by: Stephen Finucane <stephen@that.guru> | |||||
| * | | Use super() to call parent class's method | Jon Dufresne | 2018-11-11 | 1 | -2/+2 | |
| | | | ||||||
| * | | Use generator. | Julien Palard | 2018-10-23 | 1 | -4/+1 | |
| | | | ||||||
| * | | Looks like sphinx docstring uses rst, ok. | Julien Palard | 2018-10-23 | 1 | -36/+39 | |
| | | | ||||||
| * | | fix flake8 | Julien Palard | 2018-10-23 | 1 | -10/+7 | |
| | | | ||||||
| * | | FIX: mypy | Julien Palard | 2018-10-23 | 1 | -10/+8 | |
| | | | ||||||
| * | | Comments, maybe. | Julien Palard | 2018-10-23 | 1 | -2/+67 | |
| | | | ||||||
| * | | Working on text colspan and rowspan. | Julien Palard | 2018-10-22 | 1 | -62/+179 | |
| |/ | ||||||
| * | Refactor: Run highlightlang on resolving phase | Takeshi KOMIYA | 2018-07-21 | 1 | -4/+0 | |
| | | ||||||
| * | Enable math_block node rendering by default (without HTML builders) | Takeshi KOMIYA | 2018-05-17 | 1 | -6/+6 | |
| | | ||||||
| * | Enable math node rendering by default (without HTML builders) | Takeshi KOMIYA | 2018-05-15 | 1 | -2/+8 | |
| | | | | | | | | | | | | Nowadays, math elements (inline and block level equations) are integrated into reST spec by default. But, in Sphinx, they are not enabled by default. For this reason, users have to enable one of math extensions even if target builder supports math elements directly. This change starts to enable them by default. As a first step, this replaces math node and its structure by docutils based one. | |||||
| * | Remove unused visitor methods | Takeshi KOMIYA | 2018-04-15 | 1 | -4/+0 | |
| | | ||||||
| * | Merge branch '1.7' | Takeshi KOMIYA | 2018-04-14 | 1 | -1/+1 | |
| |\ | ||||||
| | * | Fix #4817: wrong URLs on warning messages | Takeshi KOMIYA | 2018-04-08 | 1 | -1/+1 | |
| | | | ||||||
| * | | Merge branch '1.7' | Takeshi KOMIYA | 2018-03-18 | 1 | -2/+2 | |
| |\ \ | |/ | ||||||
| | * | Revert "Use typing.TYPE_CHECKING for typehints" | Takeshi KOMIYA | 2018-03-13 | 1 | -2/+2 | |
| | | | | | | | | | This reverts commit a073e17537c2aacaac305feadea58d4473ec97f4. | |||||
| * | | Make console and warning messages translatable | Takeshi KOMIYA | 2018-03-03 | 1 | -4/+4 | |
| |/ | ||||||
| * | Use typing.TYPE_CHECKING for typehints | Takeshi KOMIYA | 2018-02-14 | 1 | -2/+2 | |
| | | ||||||
| * | Use flake8-import-order | Takeshi KOMIYA | 2018-01-28 | 1 | -2/+1 | |
| | | ||||||
| * | Merge branch 'master' into feature-text-secnumbers | Takeshi KOMIYA | 2018-01-15 | 1 | -1/+1 | |
| |\ | ||||||
| | * | A happy new year! | Takeshi KOMIYA | 2018-01-01 | 1 | -1/+1 | |
| | | | ||||||
| * | | #3998: Toctree section numbering in plain text output | Matthew Woodcraft | 2017-11-07 | 1 | -1/+4 | |
| | | | ||||||
| * | | #3998: Add optional section numbering in plain text output | Matthew Woodcraft | 2017-11-05 | 1 | -0/+15 | |
| |/ | | | | | Controlled by new config values: text_add_secnumbers and text_secnumber_suffix. | |||||
| * | Update type annotations for new mypy | Takeshi KOMIYA | 2017-05-07 | 1 | -1/+1 | |
| | | ||||||
| * | Move translators to SphinxFactory | Takeshi KOMIYA | 2017-04-22 | 1 | -2/+1 | |
| | | ||||||
| * | Merge branch 'stable' | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 | |
| |\ | ||||||
| | * | Year++ | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 | |
| | | | ||||||
| * | | Upgrade to mypy-0.5 | Takeshi KOMIYA | 2017-03-03 | 1 | -1/+1 | |
| | | | ||||||
