Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove deprecated features marked as RemovedInSphinx40Warning | Takeshi KOMIYA | 2020-04-29 | 1 | -39/+0 |
| | |||||
* | A happy new year! | Takeshi KOMIYA | 2020-01-01 | 1 | -1/+1 |
| | |||||
* | Migrate to py3 style type annotation: sphinx.builders.qthelp | Takeshi KOMIYA | 2019-06-10 | 1 | -7/+3 |
| | |||||
* | Separate qthelp to sphinxcontrib package | Takeshi KOMIYA | 2019-01-19 | 1 | -254/+15 |
| | |||||
* | Fix QtHelp: OS dependent path separator is used in .qhp file | Takeshi KOMIYA | 2019-01-12 | 1 | -2/+2 |
| | |||||
* | Merge branch '1.8' | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 |
|\ | |||||
| * | A happy new year! | Takeshi KOMIYA | 2019-01-02 | 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. | ||||
* | | | Deprecate sphinx.config.string_classes; remove all internal uses | Jon Dufresne | 2018-12-16 | 1 | -2/+1 |
|/ / | | | | | | | | | | | | | | | | | With only a single text type across supported Python versions, the string_classes is no longer necessary. Internally, all uses were converted to the value `[str]`. For .add_config_value() uses that also supply a default string, the type is inferred. | ||||
* | | refactor: Remove u-prefix from strings | Takeshi KOMIYA | 2018-12-16 | 1 | -2/+2 |
| | | |||||
* | | Merge pull request #5796 from jdufresne/super | Takeshi KOMIYA | 2018-12-16 | 1 | -1/+1 |
|\ \ | | | | | | | Use Python 3 super() argument-less syntax | ||||
| * | | Use Python 3 super() argument-less syntax | Jon Dufresne | 2018-12-15 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | The form is less verbose and more idiomatic for Python 3 only code. https://docs.python.org/3/library/functions.html#super | ||||
* | | | Replace pycompat.htmlescape() by html.escape() | Takeshi KOMIYA | 2018-12-16 | 1 | -5/+5 |
|/ / | |||||
* | | Replace all "unicode" type by "str" | Takeshi KOMIYA | 2018-12-15 | 1 | -11/+10 |
| | | |||||
* | | Move to py3 mode for mypy (and remove many "type: ignore" comments) | Takeshi KOMIYA | 2018-12-15 | 1 | -4/+2 |
| | | |||||
* | | Fix annotations for builders | Takeshi KOMIYA | 2018-12-02 | 1 | -14/+17 |
| | | |||||
* | | refactor: Use super() to call methods of superclass | Takeshi KOMIYA | 2018-11-28 | 1 | -1/+1 |
| | | |||||
* | | Add sphinx.util.typing:unicode to help mypy-3 migration | Takeshi KOMIYA | 2018-11-24 | 1 | -0/+1 |
| | | |||||
* | | Merge branch '1.8' | Takeshi KOMIYA | 2018-11-22 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Revert "qthelp: Fix URLs for project_files in Windows" | Takeshi KOMIYA | 2018-11-13 | 1 | -1/+1 |
| | | | | | | | | This reverts commit cb831bb70330f851cd37db953beb88653f7f2465. | ||||
* | | Deprecate and drop internal use of force_decode() | Jon Dufresne | 2018-11-13 | 1 | -13/+3 |
| | | | | | | | | | | | | | | | | | | In the Python 3 only code base, this function is no longer necessary. The type of values is well understood and deliberate. Code should avoid arbitrary mixing of bytes & str. By removing force_decode() calls from docstring values, can deprecate the now unused 'encoding' arguments to various autodoc methods. | ||||
* | | Merge branch '1.8' | Takeshi KOMIYA | 2018-10-16 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix mypy violations | Takeshi KOMIYA | 2018-10-16 | 1 | -1/+1 |
| | | |||||
* | | Prefer builtin open() over io.open() and codecs.open() | Jon Dufresne | 2018-09-11 | 1 | -3/+4 |
|/ | | | | | | | | | | | | In Python3, the functions io.open() is an alias of the builtin open() and codecs.open() is functionally equivalent. To reduce indirection, number of imports, and number of patterns, always prefer the builtin. https://docs.python.org/3/library/io.html#high-level-module-interface > io.open() > > This is an alias for the builtin open() function. | ||||
* | Escape raw strings | Stephen Finucane | 2018-06-20 | 1 | -1/+1 |
| | | | | | | | | | | | These were resulting in the below warning messages when running flake8 under Python 3.6. :48: DeprecationWarning: invalid escape sequence \[ :143: DeprecationWarning: invalid escape sequence \- :250: DeprecationWarning: invalid escape sequence \s Signed-off-by: Stephen Finucane <stephen@that.guru> | ||||
* | Close #5035: qthelp builder allows dashes in :confval:`qthelp_namespace` | Takeshi KOMIYA | 2018-06-16 | 1 | -1/+1 |
| | |||||
* | qthelp: Fix URLs for project_files in Windows | Takeshi KOMIYA | 2018-05-02 | 1 | -1/+1 |
| | |||||
* | Merge branch '1.7' | Takeshi KOMIYA | 2018-03-21 | 1 | -97/+40 |
|\ | |||||
| * | Fix mypy violations | Takeshi KOMIYA | 2018-03-18 | 1 | -11/+11 |
| | | |||||
| * | qthelp: escape keywords in .qhp file | Takeshi KOMIYA | 2018-03-18 | 1 | -4/+4 |
| | | |||||
| * | Do not construct <files> tag by python code | Takeshi KOMIYA | 2018-03-18 | 1 | -20/+19 |
| | | |||||
| * | Use template for generating .qhp file | Takeshi KOMIYA | 2018-03-18 | 1 | -44/+9 |
| | | |||||
| * | builder: Use template for generating .qhcp file | Takeshi KOMIYA | 2018-03-18 | 1 | -33/+12 |
| | | |||||
* | | 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 | -7/+8 |
|/ | |||||
* | Use typing.TYPE_CHECKING for typehints | Takeshi KOMIYA | 2018-02-14 | 1 | -2/+2 |
| | |||||
* | Use flake8-import-order | Takeshi KOMIYA | 2018-01-28 | 1 | -4/+3 |
| | |||||
* | builders: Add 'Builder.epilog' option | Stephen Finucane | 2018-01-11 | 1 | -0/+5 |
| | | | | | | | | | | | | This allows builders to emit a final epilog message containing information such as where resulting files can be found. This is only emitted if the build was successful. This allows us to remove this content from the 'make_mode' tool and the legacy 'Makefile' and 'make.bat' templates. There's room for more dramatic simplification of the former, but this will come later. Signed-off-by: Stephen Finucane <stephen@that.guru> | ||||
* | Merge branch 'happy_new_year' into master | Takeshi KOMIYA | 2018-01-01 | 1 | -1/+1 |
|\ | |||||
| * | A happy new year! | Takeshi KOMIYA | 2018-01-01 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'stable' | Takeshi KOMIYA | 2017-12-16 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix mypy violations | Takeshi KOMIYA | 2017-12-16 | 1 | -1/+1 |
| | | |||||
| * | Fix for reproducibility of htmlhelp and qthelp builds | Dmitry Shachnev | 2017-12-12 | 1 | -1/+1 |
| | | | | | | | | | | Make sure the generated list of files is sorted. This is similar to what was applied to EPub builder in 0b7c73a981. | ||||
* | | Close #1448: qthelp: Add new config value; qthelp_namespace | Takeshi KOMIYA | 2017-10-08 | 1 | -1/+7 |
| | | |||||
* | | sort file lists | Bernhard M. Wiedemann | 2017-06-20 | 1 | -1/+1 |
|/ | | | | | | | | | similar to commit 0b7c73a98 filesystems return file lists in random order, but we want to generate reproducible output. See https://reproducible-builds.org/ for why this matters. | ||||
* | Update type annotations for new mypy | Takeshi KOMIYA | 2017-05-07 | 1 | -2/+2 |
| | |||||
* | Merge branch 'stable' | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 |
|\ | |||||
| * | Year++ | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 |
| | |