summaryrefslogtreecommitdiff
path: root/sphinx
Commit message (Collapse)AuthorAgeFilesLines
* Bump to 5.2.2 finalv5.2.2Adam Turner2022-09-271-2/+2
|
* Restore anchor links to top of module docstringAdam Turner2022-09-272-2/+4
|
* Fix mypy violations for v0.981 (#10875)Adam Turner2022-09-273-11/+12
|
* Bump to 5.2.1 finalv5.2.1Adam Turner2022-09-251-2/+2
|
* Define extra indent as a class attributeAdam Turner2022-09-252-1/+5
|
* Fix highlighting lexersAdam Turner2022-09-254-11/+7
| | | | - Ensure `pycon3` is always normalised to `pycon`
* Bump to 5.2.0.post0 finalAdam Turner2022-09-241-2/+2
|
* Bump to 5.2.0 finalv5.2.0Adam Turner2022-09-241-2/+2
|
* Docstring clarifications (#9877)Arthur Milchior2022-09-245-65/+85
| | | | | Co-authored-by: Jakob Lykke Andersen <jakobandersen@users.noreply.github.com> Co-authored-by: Takeshi KOMIYA <i.tkomiya@gmail.com> Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
* Move to localStorage for search highlightingAdam Turner2022-09-242-45/+39
|
* Split out `sphinx_highlight.js`Adam Turner2022-09-243-119/+157
|
* Clear `record_dependencies` for each document (#10855)Adam Turner2022-09-241-0/+4
|
* search: use both title and subtitle only if different (#10848)Martin Liška2022-09-231-1/+1
|
* Fix `IndexLoader.load()` for _all_titles (#10851)Martin Liška2022-09-231-3/+5
| | | | When there is a document with no entry in _all_titles, we must add empty array when loading from frozenset.
* Warn on using the `:property:` flag with `.. py:method::` (#10852)Adam Turner2022-09-231-0/+2
|
* Deprecate HTML 4 support (#10843)Adam Turner2022-09-232-1/+13
|
* imgmath: Allow embedding images in HTML as base64 (#10816)Julien Schueller2022-09-231-16/+48
| | | Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com>
* Use both title and subtitle name in search results (#10824)Martin Liška2022-09-211-1/+1
|
* Shrink strict optional whitelist (HTML writers) (#10838)danieleades2022-09-203-5/+5
|
* Support searching for index entries (#10819)Adam Turner2022-09-202-1/+58
|
* Fix `get_terminal_width` on Windows (#10842)Steffen Rehberg2022-09-201-15/+3
| | | | `shutil.get_terminal_size` works as a drop-in replacement for `get_terminal_width`, enabling accurate widths on Windows.
* Fix section numbering in domain object contents entries (#10830)Adam Turner2022-09-201-1/+4
|
* Fix nesting in domain object contents entries (#10828)Adam Turner2022-09-201-2/+1
|
* Add contents entries for domain objects (#10807)Adam Turner2022-09-139-41/+254
| | | | | | | | | - Add entries in the table of contents for domain objects (e.g. `py:function`, `rst:role`, etc). Supported domains are Javascript, Python, and reStructuredText. - Support content in `py:module` and `js:module` directives. - Add the `noindexentry` and `noindex` flags to more domains. - Add `toc_object_entries_show_parents` configuration setting - Update documentation and tests
* Use declarative metadataAdam Turner2022-09-131-19/+21
| | | | | | | - Move to pyproject.toml metadata - Update references to `setup.py` - Use pypa/build - Update workflows and tooling
* Use subtitle name in search results (#10814)Martin Liška2022-09-132-3/+3
|
* Fix mypy errorAdam Turner2022-09-121-1/+6
|
* Make toctree accept special docnames (#10673)Brecht Machiels2022-09-123-3/+23
| | | | | | The `.. toctree::` directive now supports the reserved special docnames 'genindex', 'modindex', and 'search'. Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com>
* Privatise type (`DomainsType` -> `_DomainsType`)Adam Turner2022-09-121-5/+5
|
* More precise typing for `BuildEnvironment.domains` (#10813)Adam Turner2022-09-092-4/+59
|
* Shink the strict optional whitelist (#10800)danieleades2022-09-091-2/+2
| | | Removes `sphinx.search`
* Remove Pygments compatability code (#10812)Adam Turner2022-09-092-37/+9
|
* Save search resul score to HTML element for debugging (#10718)Martin Liška2022-09-091-1/+2
| | | Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com>
* Remove `sphinx.builders.gettext` module from whitelist (#10798)danieleades2022-09-091-1/+0
|
* Correct `is_allowed_version()`'s example tests (#10802)Tony Narlock2022-09-091-3/+3
|
* search: support searching for (sub)titles (#10717)Martin Liška2022-09-093-4/+48
| | | Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com>
* Refactor `util.docutils.new_document()` cache (#10805)Adam Turner2022-09-071-6/+11
|
* Allow `:ref:` role to be used with definitions and fields (#10781)Jeremy Maitin-Shepard2022-09-061-5/+14
|
* Fix more strict static typing errors (#10681)danieleades2022-08-2820-97/+128
|
* agogo theme: revert CSS changes related to sidebar (#10787)Matthias Geier2022-08-281-0/+6
|
* Remove unneeded `noqa` lint suppression comments (#10772)danieleades2022-08-286-6/+6
|
* Further improve type annotations, reduce mypy whitelist (#10770)danieleades2022-08-2811-48/+68
| | | Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com>
* Merge pull request #10757 from n-peugnet/linkcheck-raw-source-urlFrançois Freitag2022-08-231-14/+16
|\ | | | | linkcheck: Check the source URL of raw directives that use the `url` option
| * linkcheck: Check the source URL of raw directivesn-peugnet2022-08-171-14/+16
| | | | | | | | | | | | Add raw directives' source URL to the list of links to check with linkcheck. By the way, refactor HyperlinkCollector by adding `add_uri` function. Add test for linkcheck raw directives source URL
* | Merge pull request #10769 from sphinx-doc/bot/pull-translationsJean-François B2022-08-1521-151/+151
|\ \ | | | | | | Update message catalogs
| * | Update message catalogstk0miya2022-08-1421-151/+151
| | |
* | | Fix some static typing errors (#10745)danieleades2022-08-147-33/+60
|/ /
* | Update message catalogstk0miya2022-08-07105-795/+795
|/
* Properly support `of` in docstring type specifiers (#10738)ProGamerGov2022-08-021-1/+1
| | | Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
* Merge branch '5.1.x' into 5.xJean-François B2022-08-012-3/+6
|\