Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | Fix annotations | Yves Chevallier | 2019-08-08 | 1 | -4/+8 | |
| | | | ||||||
| * | | Wrap <span> around sectnum in HTML titles | Yves Chevallier | 2019-08-01 | 1 | -1/+2 | |
| | | | ||||||
| * | | Add get_secnumber to simplify add_secnumber | Yves Chevallier | 2019-08-01 | 1 | -6/+9 | |
| | | | ||||||
* | | | Merge branch '2.0' | Takeshi KOMIYA | 2019-11-30 | 1 | -239/+123 | |
|\ \ \ | | |/ | |/| | ||||||
| * | | Migrate to py3 style type annotation: sphinx.writers.html5 | Takeshi KOMIYA | 2019-11-26 | 1 | -247/+127 | |
| |/ | ||||||
* | | Merge commit '54d5fcfaebc3364044761d30c0fed6bd4d3052c3' | Takeshi KOMIYA | 2019-06-02 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | Add :force: option to code directives | Takeshi KOMIYA | 2019-06-01 | 1 | -1/+1 | |
| | | ||||||
* | | Merge branch '2.0' | Takeshi KOMIYA | 2019-06-01 | 1 | -3/+3 | |
|\ \ | |/ | ||||||
| * | Fix #4390: html: Consistent and semantic CSS for signatures | Takeshi KOMIYA | 2019-05-29 | 1 | -3/+3 | |
| | | ||||||
* | | Merge branch '2.0' | Takeshi KOMIYA | 2019-04-07 | 1 | -0/+1 | |
|\ \ | |/ | ||||||
| * | Fix #6263: html: HTML5Translator crashed with invalid field node | Takeshi KOMIYA | 2019-04-07 | 1 | -0/+1 | |
| | | ||||||
* | | Drop features and APIs deprecated in 1.8 | Takeshi KOMIYA | 2019-03-30 | 1 | -32/+1 | |
|/ | ||||||
* | Fix #6096: html: Anchor links are not added to figures | Takeshi KOMIYA | 2019-02-24 | 1 | -3/+1 | |
| | ||||||
* | Fix HTML: Invalid HTML5 file is generated for glossary (refs: #4611) | Takeshi KOMIYA | 2019-01-03 | 1 | -0/+42 | |
| | | | | | Note: It was caused by a glossary having multiple terms for one description. | |||||
* | Merge branch '1.8' | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 | |
|\ | ||||||
| * | A happy new year! | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 | |
| | | ||||||
* | | Replace escape sequence '\u00B6' with literal '¶' | Jon Dufresne | 2018-12-20 | 1 | -1/+1 | |
| | | | | | | | | More obvious to the reader. | |||||
* | | Reorder the arguments for translators | Takeshi KOMIYA | 2018-12-17 | 1 | -4/+13 | |
| | | ||||||
* | | 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. | |||||
* | | refactor: Remove u-prefix from strings | Takeshi KOMIYA | 2018-12-16 | 1 | -6/+6 | |
| | | ||||||
* | | Use Python 3 super() argument-less syntax | Jon Dufresne | 2018-12-15 | 1 | -10/+10 | |
| | | | | | | | | | | | | 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 | -11/+10 | |
| | | ||||||
* | | Add docutils-stubs to test deps | Takeshi KOMIYA | 2018-12-15 | 1 | -2/+2 | |
| | | ||||||
* | | Use nodes.Element for visitor/departure methods | Takeshi KOMIYA | 2018-12-15 | 1 | -102/+102 | |
| | | | | | | | | | | To follow docutils-stubs rule, we use nodes.Element for visitor/departure methods. | |||||
* | | Remove SphinxTranslator.get_settings() | Takeshi KOMIYA | 2018-12-12 | 1 | -5/+3 | |
| | | | | | | | | | | | | | | | | | | It was introduced to fake its type information and make mypy silent. But the warnings had came from wrong typing of docutils-stubs. (see https://github.com/tk0miya/docutils-stubs/pull/28) After the fix, the helper method is not needed for us. So this removes it right away. | |||||
* | | Remove HTML5Translator.should_be_compact_paragraph() (unused) | Takeshi KOMIYA | 2018-12-12 | 1 | -12/+0 | |
| | | | | | | | | It was only copied from HTML4 translator, never used. | |||||
* | | Add SphinxTranslator as an abstract class | Takeshi KOMIYA | 2018-12-03 | 1 | -14/+16 | |
| | | ||||||
* | | Fix annotations (minor fixes) | Takeshi KOMIYA | 2018-12-03 | 1 | -3/+5 | |
| | | ||||||
* | | Fix annotations for writers | Takeshi KOMIYA | 2018-11-30 | 1 | -3/+3 | |
| | | ||||||
* | | refactor: Use super() to call methods of superclass | Takeshi KOMIYA | 2018-11-28 | 1 | -10/+10 | |
| | | ||||||
* | | Fix annotations for writers | Takeshi KOMIYA | 2018-11-28 | 1 | -5/+4 | |
| | | ||||||
* | | Add sphinx.util.typing:unicode to help mypy-3 migration | Takeshi KOMIYA | 2018-11-24 | 1 | -0/+1 | |
| | | ||||||
* | | Replace six.string_types with native str | Jon Dufresne | 2018-11-21 | 1 | -2/+1 | |
| | | ||||||
* | | Update type hints to HTML5 writer | Takeshi KOMIYA | 2018-11-21 | 1 | -104/+104 | |
| | | ||||||
* | | Use super() to call parent class's method | Jon Dufresne | 2018-11-11 | 1 | -1/+1 | |
|/ | ||||||
* | Fix #5471: Show appropriate warning for deprecated APIs | Takeshi KOMIYA | 2018-10-17 | 1 | -4/+4 | |
| | ||||||
* | Fix #5348: download reference to remote file is not displayed | Takeshi KOMIYA | 2018-08-26 | 1 | -4/+14 | |
| | ||||||
* | Merge branch 'master' into refactor_highlighter | Takeshi KOMIYA | 2018-07-29 | 1 | -5/+23 | |
|\ | ||||||
| * | Implement math_renderer framework | Takeshi KOMIYA | 2018-07-28 | 1 | -5/+23 | |
| | | ||||||
* | | Refactor: Run highlightlang on resolving phase | Takeshi KOMIYA | 2018-07-21 | 1 | -24/+38 | |
|/ | ||||||
* | 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 'master' into refactor_enumerable_nodes | Takeshi KOMIYA | 2018-03-21 | 1 | -2/+2 | |
|\ \ | ||||||
| * \ | 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. | |||||
* | | | Add Domain#get_enumerable_node_type() | Takeshi KOMIYA | 2018-03-17 | 1 | -1/+1 | |
|/ / | ||||||
* | | Make console and warning messages translatable | Takeshi KOMIYA | 2018-03-03 | 1 | -7/+7 | |
|/ | ||||||
* | Use typing.TYPE_CHECKING for typehints | Takeshi KOMIYA | 2018-02-14 | 1 | -2/+2 | |
| | ||||||
* | Use flake8-import-order | Takeshi KOMIYA | 2018-01-28 | 1 | -3/+3 | |
| | ||||||
* | Fix #4079: Add notranslate class to let Google Translate know they are not ↵ | Takeshi KOMIYA | 2018-01-13 | 1 | -3/+3 | |
| | | | | translatable |