Commit Graph

10648 Commits

Author SHA1 Message Date
Takeshi KOMIYA
0e648eb8ba
Merge branch '1.7' into 4878_ignore_invalid_extension_metadata 2018-04-23 00:19:01 +09:00
Takeshi KOMIYA
24158a9b1f
Merge pull request #4882 from tk0miya/4459_duplicate_labels_on_parallel
#4459: duplicated labels detector does not work well in parallel build
2018-04-23 00:14:25 +09:00
Takeshi KOMIYA
0db15c9243
Merge pull request #4821 from tk0miya/4818_warnings_on_including
Improve warning messages during including (refs: #4818)
2018-04-22 21:34:13 +09:00
Takeshi KOMIYA
d505d232de
Merge pull request #4884 from tk0miya/4873_adjust_word-break
Fix #4873: Adjust word-break of deprecated-APIs table
2018-04-22 21:31:56 +09:00
Takeshi KOMIYA
d97dc05b37 Fix #4873: Adjust word-break of deprecated-APIs table 2018-04-22 20:00:46 +09:00
Takeshi KOMIYA
a31c0ddfca Fix #4878: Crashed with extension which returns invalid metadata 2018-04-22 19:25:02 +09:00
Takeshi KOMIYA
f4f693eff7 #4459: duplicated labels detector does not work well in parallel build 2018-04-22 19:20:12 +09:00
Takeshi KOMIYA
5897d45cc6 Merge branch 'master' into refactor_config 2018-04-22 18:56:04 +09:00
Takeshi KOMIYA
a4dbb6e657 Improve warning messages during including (refs: #4818) 2018-04-22 18:36:10 +09:00
Takeshi KOMIYA
bed764316f
Merge pull request #4875 from tk0miya/4859_update_docs
doc: Add a note for dotfiles on html_static_path (refs: #4859)
2018-04-22 18:33:39 +09:00
Takeshi KOMIYA
fd11824be7
Merge pull request #4881 from tk0miya/fix_docstring
doc: Remove meaningless spaces
2018-04-22 18:32:46 +09:00
Takeshi KOMIYA
bafeb3eb18 Merge branch '1.7' 2018-04-22 18:19:29 +09:00
Takeshi KOMIYA
6d6864abf0 doc: Remove meaningless spaces 2018-04-22 18:01:02 +09:00
Takeshi KOMIYA
81946e423a Let docutils know the location of `docutils.conf` for Sphinx 2018-04-22 17:16:12 +09:00
Takeshi KOMIYA
a2542cad0f
Merge pull request #4876 from tk0miya/4717_use_correct_mainlanguage_for_polyglossia
Fix #4717: latex: Compilation for German docs failed with LuaLaTeX and XeLaTeX
2018-04-22 17:10:49 +09:00
Takeshi KOMIYA
d80801deeb
Merge pull request #4840 from tk0miya/4827_remove_substitution_defs_from_doctree
Remove substitution_definition nodes from doctree on reading phase (refs: #4827)
2018-04-22 00:29:26 +09:00
Takeshi KOMIYA
d388712f6e Fix flake8 violation 2018-04-21 20:01:27 +09:00
Takeshi KOMIYA
0354b29459 Merge branch 'master' into 4827_remove_substitution_defs_from_doctree 2018-04-21 19:20:40 +09:00
Takeshi KOMIYA
1542622cf7
Merge pull request #4853 from tk0miya/4810_order_of_transforms
Change processing order of reading a document
2018-04-21 19:17:27 +09:00
Takeshi KOMIYA
61bf7c44df Fix #4717: latex: Compilation for German docs failed with LuaLaTeX and XeLaTeX 2018-04-21 18:47:11 +09:00
Takeshi KOMIYA
0541c14766 Update CHANGES for PR #4871 2018-04-21 17:00:48 +09:00
Takeshi KOMIYA
478b31349b
Merge pull request #4871 from derdennis/1.7
Fixed the German HTML search again, this time from the 1.7 branch
2018-04-21 16:58:38 +09:00
Hsiaoming Yang
ee09a00033 Fix translation for zh_CN and zh_TW. 2018-04-21 16:51:30 +09:00
Takeshi KOMIYA
45e691eb9b Merge branch 'master' into 4827_remove_substitution_defs_from_doctree 2018-04-21 14:50:23 +09:00
Takeshi KOMIYA
ed3bc1a87e
Merge pull request #4833 from tk0miya/add_docs_for_ImageConverter
doc: Add ImageConverter to utils
2018-04-21 14:44:02 +09:00
Michael Goerz
4a2b227376 Allow imgcls as class for SVG Graphviz <object>
For consistency, the `<object>` tag for the SVG output of a
inheritance-diagram should have the same `class="inheritance"` attribute
that the corresponding `<img>` tag for the PNG format has. This allows
to define the CSS attribute

    object.inheritance {
        max-width: 100%;
    }

which for SVG (unlike PNG) actually works and makes sense.

Added a test for inheritance-diagrams in SVG.
2018-04-21 00:59:27 -04:00
Takeshi KOMIYA
320421be67
Merge pull request #4810 from tk0miya/define_priority_for_transforms
Proposal: Define priority for transforms
2018-04-21 11:29:48 +09:00
Takeshi KOMIYA
6b14cd3bd6 Change priority of versioning doctrees 2018-04-21 11:28:23 +09:00
Takeshi KOMIYA
225588469a
Merge pull request #4842 from tk0miya/4828_partial_numfig_format
Fix #4828: Allow to override numfig_format partially
2018-04-21 11:25:18 +09:00
Takeshi KOMIYA
fdb96bb948 doc: Update about sphinx.ext.imgconverter 2018-04-21 11:21:27 +09:00
Takeshi KOMIYA
ea7d30a190 doc: Add ImageConverter to utils 2018-04-21 11:21:27 +09:00
Takeshi KOMIYA
5a63c2970f doc: Add a note for dotfiles on html_static_path (refs: #4859) 2018-04-21 11:02:46 +09:00
Michael Goerz
b689fb1c12 Wrap graphviz diagrams in <div class="graphviz">
The graphviz extension is modified to wrap the `<img>` and `<object>`
tags it creates for diagrams in the png and svg formats in an additional
`<div class="graphviz">...</div>` tag. This allows to apply additional
CSS styling to the the diagrams that cannot be applied to `<img>` and
`<object>` directly. Most notably,

    div.graphviz {
      overflow: auto;
    }

would be a useful style that the standard themes might consider.

In any case, it would allow users to add custom CSS code to their
project that gets around the problems with inheritance-diagrams
discussed in https://github.com/sphinx-doc/sphinx/issues/4865

The tests for the `grahviz` and `inheritance_diagram` have been modified
to test for the presence of the additional `<div>` tag.

Closes #4865
2018-04-20 12:43:12 -04:00
Dennis Wegner
b650ba2401 Fixed the German HTML search again, this time from the 1.7 branch 2018-04-20 17:51:19 +02:00
Takeshi KOMIYA
9829d9d771
Merge pull request #4862 from jdufresne/pypi
Update all pypi.python.org URLs to pypi.org
2018-04-21 00:19:03 +09:00
Takeshi KOMIYA
ec47b66887
Merge pull request #4849 from tk0miya/fix_toctree
Fix toctree directive tries to glob for URL having query_string
2018-04-21 00:15:04 +09:00
Takeshi KOMIYA
86df550c66 Fix short underline 2018-04-20 23:16:41 +09:00
Takeshi KOMIYA
9e930262ab
Merge pull request #4854 from tk0miya/4771_argparse_problem
Update CHANGES for #4771
2018-04-20 23:08:51 +09:00
Michael Tesch
e368ac21ef proposed enhancement #4830 2018-04-20 13:13:00 +02:00
Jon Dufresne
365c93f227 Update all pypi.python.org URLs to pypi.org
For details on the new PyPI, see the blog post:

https://pythoninsider.blogspot.ca/2018/04/new-pypi-launched-legacy-pypi-shutting.html
2018-04-18 19:51:48 -07:00
Takeshi KOMIYA
96c5605374 Merge branch '1.7' 2018-04-18 11:35:10 +09:00
Takeshi KOMIYA
ef10ca11fc Fix toctree directive tries to glob for URL having query_string 2018-04-16 16:01:59 +09:00
Takeshi KOMIYA
c24216b48d Update CHANGES for #4771 2018-04-16 01:50:05 +09:00
Takeshi KOMIYA
538c061e7c Change priority of doctree-read event 2018-04-16 00:16:18 +09:00
Takeshi KOMIYA
32fe3a05e8 Refactor toctree directive 2018-04-15 13:38:58 +09:00
Takeshi KOMIYA
9826d49cbd Add testcase for toctree directive 2018-04-15 13:38:58 +09:00
Takeshi KOMIYA
adf5e9fda6 Update CHANGES for PR #4838 2018-04-15 13:37:57 +09:00
Takeshi KOMIYA
4a3b4a90da
Merge pull request #4838 from bmwiedemann/hhp
Sort .hhp file list
2018-04-15 13:36:38 +09:00
Takeshi KOMIYA
b5ddc8c697
Merge pull request #4841 from gussiecarther/doc_rst_prolog_and_rst_epilog
Fix #4420: Docs conflict on use of rst_prolog and rst_epilog
2018-04-15 13:34:48 +09:00
Takeshi KOMIYA
ccb694882c
Merge pull request #4843 from tk0miya/4803_optimize_latex_show_urls
4803 optimize latex show urls
2018-04-15 13:23:18 +09:00