summaryrefslogtreecommitdiff
path: root/sphinx/builders/texinfo.py
Commit message (Collapse)AuthorAgeFilesLines
* html builder: Append CRC32 checksum to asset URIs (#11415)Adam Turner2023-05-111-1/+2
|
* Resolve ``flake8-return`` errorsAdam Turner2023-02-181-2/+1
|
* Fix COM812Adam Turner2023-02-181-2/+2
|
* Undo parallel image changesAdam Turner2023-01-101-7/+4
|
* Fix copying images under parallel execution (#11100)Adam Turner2023-01-071-4/+7
|
* Move console output utilities to ``sphinx.util.display``Adam Turner2023-01-031-1/+2
| | | | | - Merge `old_status_iterator` into ``status_iterator``. ``old_status_iterator`` was deprecated in version 1.6.
* Use PEP 604 typesAdam Turner2023-01-011-4/+4
|
* Use PEP 595 typesAdam Turner2023-01-011-8/+8
|
* Insert ``from __future__ import annotations``Adam Turner2023-01-011-0/+2
|
* remove blanket 'noqas'Daniel Eades2022-12-161-2/+6
|
* Improve static typing strictness (#10569)danieleades2022-07-181-10/+10
|
* `rawsource` is deprecated in `docutils.nodes.Text`Adam Turner2022-04-221-2/+2
|
* Catch `DeprecationWarning` for `docutils.frontend.OptionParser`Adam Turner2022-04-221-4/+9
|
* Collapse single line docstringsAdam Turner2022-02-201-2/+1
|
* Remove copyright and licence fieldsAdam Turner2022-02-201-3/+0
|
* Fix module docstring indentationAdam Turner2022-02-201-2/+2
|
* Fix module docstring first lineAdam Turner2022-02-201-2/+1
|
* Remove module titles in docstringsAdam Turner2022-02-191-3/+0
|
* Migrate to Node.findall() from Node.traverse()Takeshi KOMIYA2022-01-031-2/+2
| | | | | | | | 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 KOMIYA2022-01-011-1/+1
|
* texinfo: simplify reference emission.Martin Liska2021-11-121-0/+1
| | | | | | | | | | | | | | | The commit adds a new config value 'texinfo_emit_document_references' that blocks the emission of inline references and make it better readable with legacy stand-alone reader ``info``. Before the change we emit: Default option value for @ref{e,,-Wshift-overflow3}. while with texinfo_emit_document_references == True: Default option value for -Wshift-overflow3. It addresses limitations mentioned in Sphinx' FAQ: https://www.sphinx-doc.org/en/master/faq.html#texinfo-info
* refactor: Use PEP-526 based variable annotationTakeshi KOMIYA2021-04-081-5/+5
|
* refactor: Use PEP-526 based variable annotation (sphinx.builders)Takeshi KOMIYA2021-03-131-1/+2
|
* Close #8326: Rename master_doc to root_docTakeshi KOMIYA2021-02-281-1/+1
| | | | | | To describe the purpose more accurately, the `master_doc` is now renamed to `root_doc`. The old name is still available. But it is recommeneded to use new one from now on.
* Merge branch '3.4.x' into 3.xTakeshi KOMIYA2021-01-011-1/+1
|\
| * A happy new year!Takeshi KOMIYA2021-01-011-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
* | Fix #8094: texinfo: images on the different directory with document are not ↵Takeshi KOMIYA2020-12-271-1/+2
|/ | | | copied
* Sort imports with isortFrançois Freitag2020-11-111-6/+3
| | | | | | | | | | | | 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.
* Add "typ" to NoUriTakeshi KOMIYA2020-01-011-1/+1
|
* More NoUri details.Julien Palard2020-01-011-1/+1
|
* A happy new year!Takeshi KOMIYA2020-01-011-1/+1
|
* mypy: Enable disallow_incomplete_defs flag for type checkingTakeshi KOMIYA2019-12-301-1/+1
|
* Migrate to py3 style type annotation: sphinx.builders.texinfoTakeshi KOMIYA2019-06-101-30/+15
|
* Merge branch '2.0'Takeshi KOMIYA2019-03-071-6/+7
|\
| * Fix #3079: texinfo: image files are not copied on ``make install-info``Takeshi KOMIYA2019-03-021-6/+7
| |
* | refactor: move NoUri to sphinx.errorsTakeshi KOMIYA2019-03-021-1/+1
|/
* texinfo: refactor with progress_message()Takeshi KOMIYA2019-02-111-34/+33
|
* Give "nonl=True" value to logging.info() instead of intTakeshi KOMIYA2019-01-191-4/+4
|
* Merge branch '1.8'Takeshi KOMIYA2019-01-021-1/+1
|\
| * A happy new year!Takeshi KOMIYA2019-01-021-1/+1
| |
* | Replace EnvironmentError and IOError by OSErrorTakeshi KOMIYA2018-12-191-1/+1
| | | | | | | | | | Since python 3.3, EnvironmentError and IOError were merged into OSError.
* | Remove unnecessary encoding cookie from Python source filesJon Dufresne2018-12-161-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 stringsTakeshi KOMIYA2018-12-161-2/+2
| |
* | Replace all "unicode" type by "str"Takeshi KOMIYA2018-12-151-11/+10
| |
* | Merge pull request #5607 from tk0miya/smart_texinfo_conf_pyTakeshi KOMIYA2018-12-021-8/+11
|\ \ | | | | | | quickstart: Simplify generated conf.py (for texinfo)
| * | quickstart: Simplify generated conf.py (for texinfo)Takeshi KOMIYA2018-11-111-8/+11
| | |
* | | Fix annotations for buildersTakeshi KOMIYA2018-11-291-3/+3
| | |
* | | Add sphinx.util.typing:unicode to help mypy-3 migrationTakeshi KOMIYA2018-11-241-0/+1
|/ /
* | refactor: Move Makefile for texinfo to templates dirTakeshi KOMIYA2018-11-011-55/+3
|/
* Merge branch '1.7'Takeshi KOMIYA2018-03-181-2/+2
|\