summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | Explain non-standard encoding in LatinRules.xdyAlexandre René2022-07-171-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In order to fulfill its function, LatinRules.xdy must use single, non-standard byte characters (neither ASCII, nor multi-byte UTF-8). To someone encountering the file without knowing its purpose (e.g. due a post-processing raising a warning for the unrecognized encoding) this is likely surprising, and may seem like a holdover from a time where Unicode wasn't as universally supported. The added comment should make clear that the file must stay as it is, and in particular that it must not be "standardized" to UTF-8.
| * | | | Merge pull request #10604 from sphinx-doc/fix_searchTakeshi KOMIYA2022-07-182-6/+8
| |\ \ \ \ | | | | | | | | | | | | Fix HTML Search
| | * | | | HTML Search: refactoringTakeshi KOMIYA2022-07-182-1/+2
| | | | | |
| | * | | | HTML Search: Minor errors are emitted on fetching search snipetsTakeshi KOMIYA2022-07-182-3/+2
| | | | | |
| | * | | | HTML Search: search snipets should not be foldedTakeshi KOMIYA2022-07-182-1/+2
| | | | | |
| | * | | | HTML Search: HTML tags are displayed as a part of object nameTakeshi KOMIYA2022-07-182-1/+2
| |/ / / /
| * | | | Add GPG key for Adam TurnerAdam Turner2022-07-171-0/+1
| | |_|/ | |/| |
* | | | Merge branch '5.x'Adam Turner2022-07-17153-3123/+4524
|\ \ \ \ | |/ / /
| * | | Add CHANGES note for #10518Adam Turner2022-07-171-0/+2
| | | |
| * | | Add `include_patterns` as the opposite of `exclude_patterns` (#10518)Adam Turner2022-07-1713-29/+235
| | | |
| * | | Allow specifying multiple CSS files in themes (#10465)Takeshi KOMIYA2022-07-1710-12/+59
| | | | | | | | | | | | Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com>
| * | | Update message catalogs (#10674)github-actions[bot]2022-07-17107-2592/+2592
| | | |
| * | | Merge pull request #10671 from pradyunsg/sort-authors-listingTakeshi KOMIYA2022-07-161-55/+55
| |\ \ \ | | | | | | | | | | Alphabetically sort the list of contributors
| | * | | Alphabetically sort the list of contributorsPradyun Gedam2022-07-161-55/+55
| |/ / / | | | | | | | | | | | | This matches the language used to describe the listing.
| * | | Mumble... Typo in a LaTeX code commentJean-François B2022-07-151-1/+1
| | | |
| * | | LaTeX: clean-up some LaTeX code comments (follow-up to #10638)Jean-François B2022-07-151-31/+33
| | | |
| * | | Update CHANGES for PR #10648Jean-François B2022-07-141-5/+5
| | | |
| * | | Merge pull request #10648 from jfbu/latex_enhancedboxesJean-François B2022-07-147-363/+1502
| |\ \ \ | | | | | | | | | | LaTeX: box padding (t,r,b,l), borders (t,r,b,l), shadows (x,y) or radii
| | * | | LaTeX: enhanced boxes with padding, borders, shadows, rounded cornersJean-François B2022-07-147-363/+1502
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - LaTeX: box padding (t,r,b,l), borders (t,r,b,l), shadows (x,y) or radii - LaTeX: fix #10650 via usage of our own sophisticated \fcolorbox - LaTeX: user interface via 'sphinxsetup' to enhanced code-blocks frames - LaTeX: user interface via 'sphinxsetup' to enhanced topic boxes - LaTeX: CSS-named-alikes 'sphinxsetup' options for code-blocks and topics - LaTeX: CSS-named-alikes 'sphinxsetup' keys for warning type notices (fix #10651) - LaTeX: documentation of the new CSS-like options - LaTeX: remove #10619 documentation, as the #10619 added shadowBorderColor and shadowShadowColor now named respectively: aside.topic_border-TeXcolor and aside.topic_box-shadow-TeXcolor - LaTeX: use div.topic option prefix and not aside.topic for CSS-like options - LaTeX: keep the implicit legacy padding of warning type boxes as default behaviour
| * | | | Lint with `flake8-bugbear` (#10602)danieleades2022-07-1216-54/+53
| | | | | | | | | | | | | | | Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
| * | | | Update CHANGES for #10548Adam Turner2022-07-121-0/+1
| | | | |
| * | | | Fix minor HTML search summary issues (#10548)shiftinv2022-07-121-4/+5
| | | | |
| * | | | Support Docutils 0.19 (#10656)Adam Turner2022-07-122-1/+5
| | | | |
* | | | | Merge branch '5.x'Adam Turner2022-07-10155-766/+798
|\ \ \ \ \ | |/ / / /
| * | | | Refresh the Sphinx13 theme (#10652)Adam Turner2022-07-1017-435/+222
| | |/ / | |/| |
| * | | Merge pull request #10634 from jbms/fix-events-pdbTakeshi KOMIYA2022-07-105-3/+31
| |\ \ \ | | | | | | | | | | Make `-P` (pdb) work better with exceptions triggered from events
| | * | | Make `-P` (pdb) work better with exceptions triggered from eventsJeremy Maitin-Shepard2022-07-045-3/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, if an exception was raised from an event listener, and the `-P` option was specified, the debugger would be started not for the original error but for the `ExtensionError` wrapping it that was raised by `EventManager.emit`. That made it difficult to debug the error. With this change, when `-P` is specified, wrapping of errors in `ExtensionError` is disabled, which allows pdb to debug the original error.
| * | | | Update CHANGES for PR #10647Takeshi KOMIYA2022-07-101-0/+2
| | | | |
| * | | | Merge pull request #10647 from mitya57/latex-index-keysTakeshi KOMIYA2022-07-101-3/+3
| |\ \ \ \ | | | | | | | | | | | | LaTeX writer: add \label's for all index keys, not just first
| | * | | | LaTeX writer: add \label's for all index keys, not just firstDmitry Shachnev2022-07-071-3/+3
| | | |/ / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | This change was originally added in coq project, but I am forwarding it here at request of the patch author. See https://github.com/coq/coq/issues/12361 for the issue description.
| * | | | Merge pull request #10654 from ↵Takeshi KOMIYA2022-07-101-4/+4
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | jfbu/css_remove_whitespace_in_basic_css_from_templating Remove empty lines inside selectors in basic.css produced from template
| | * | | | Remove empty lines inside selectors in basic.css produced from templateJean-François B2022-07-101-4/+4
| |/ / / /
| * | | | Merge pull request #10653 from sphinx-doc/bot/pull-translationsTakeshi KOMIYA2022-07-10125-219/+219
| |\ \ \ \ | | |/ / / | |/| | | Update message catalogs
| | * | | Update message catalogstk0miya2022-07-10125-219/+219
| |/ / /
| * | | Use released Docutils 0.19 on CIAdam Turner2022-07-062-6/+1
| | | |
| * | | Update CHANGES for #10639Jean-François B2022-07-061-0/+3
| | | |
| * | | Merge pull request #10639 from jfbu/latex_roundedboxesJean-François B2022-07-064-3/+173
| |\ \ \ | | | | | | | | | | LaTeX: optional rounded corners for framing of code-blocks
| | * | | LaTeX: fix (better) compatibility with "old" LaTeXJean-François B2022-07-051-8/+7
| | | | | | | | | | | | | | | | | | | | | | | | | There was no need for pre-expansion via \expanded and the latter was not available prior to TL2019
| | * | | LaTeX: fix previous commit for "old" LaTeX compatibilityJean-François B2022-07-051-2/+6
| | | | |
| | * | | LaTeX: optional rounded corners for framing of code-blocksJean-François B2022-07-054-3/+170
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Via a new configuration verbatimradius of 'sphinxsetup', which defaults to 0pt. If this dimension is non zero, the LaTeX package pict2e will be loaded to help construct frames with rounded corners for code-blocks. And if the LaTeX package pict2e was not found, a LaTeX warning is issued during PDF build.
| * | | | Update CHANGES for fix of #10638Jean-François B2022-07-051-0/+2
| | | | |
| * | | | LaTeX: move a recently added code line near where it is now usedJean-François B2022-07-051-6/+8
| | | | |
| * | | | Use Docutils 0.19 footnote styles (#10599)Adam Turner2022-07-043-6/+44
| |/ / /
| * | | Fix #10638: LaTeX code-blocks when highlighted token uses \fcolorboxJean-François B2022-07-041-74/+78
| |/ / | | | | | | | | | | | | This commit also does some internal refactoring in order to ease up projected PRs.
| * | CHANGES: improve mark-up for a few cross-referencing issuesJean-François B2022-07-031-7/+8
| | |
* | | Merge branch '5.x'Takeshi KOMIYA2022-07-03149-4724/+4867
|\ \ \ | |/ /
| * | Fix #10633 LaTeX: upstream framed.sty color leak bugJean-François B2022-07-034-3/+12
| | |
| * | Update CHANGES for PR #10619Jean-François B2022-07-031-0/+2
| | |
| * | Merge pull request #10619 from jfbu/latex_coloredshadowsJean-François B2022-07-033-20/+89
| |\ \ | | | | | | | | LaTeX: refactor sphinxShadowBox to allow colors for frame and shadow
| | * | LaTeX: code comments on sphinxShadowBox for topic directiveJean-François B2022-07-011-23/+56
| | | |