Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | | Merge branch 'stable' | Takeshi KOMIYA | 2017-07-29 | 1 | -0/+7 | |
|\ \ \ \ | |/ / / |/| / / | |/ / | ||||||
| * | | Fix #3926: Add ``autodoc_warningiserror`` to suppress the behavior of ``-W`` ↵ | Takeshi KOMIYA | 2017-07-15 | 1 | -0/+7 | |
| | | | | | | | | | | | | option | |||||
* | | | doc: Add sphinx-autogen man page | Stephen Finucane | 2017-07-11 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | | | This wasn't documented in depth anywhere, so do just that. Signed-off-by: Stephen Finucane <stephen@that.guru> | |||||
* | | | Merge branch 'stable' | Takeshi KOMIYA | 2017-06-25 | 1 | -4/+10 | |
|\ \ \ | |/ / | | / | |/ |/| | ||||||
| * | Improve access to table and math markup info in docs | jfbu | 2017-06-20 | 1 | -0/+2 | |
| | | ||||||
| * | Update docs regarding the CDN used by default for MathJax | jfbu | 2017-06-20 | 1 | -4/+8 | |
| | | ||||||
* | | Fix #3638: Allow to change a label of reference to equation | Takeshi KOMIYA | 2017-04-27 | 1 | -0/+7 | |
|/ | ||||||
* | Add image_converter_args confval | Takeshi KOMIYA | 2017-04-22 | 1 | -0/+5 | |
| | ||||||
* | Add sphinx.ext.imgconverter | Takeshi KOMIYA | 2017-04-22 | 2 | -0/+26 | |
| | ||||||
* | update CHANGES refs #2961 | shimizukawa | 2017-04-19 | 1 | -0/+3 | |
| | ||||||
* | ext: enhance autodoc_mock_imports | Robin Jarry | 2017-04-18 | 1 | -1/+8 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The autodoc_mock_imports option requires to explicitly declare *every* external module and sub-module that are imported by the documented code. This is not practical as the list can become very large and must be maintained as the code changes. Also, the mocking is minimal which causes errors when compiling the docs. For example, if you declare: autodoc_mock_imports = ['django.template'] And try to document a module: .. automodule:: my.lib.util Which contains this code: from django.template import Library register = Library() The following error occurs: File ".../my/lib/util.py" line 2 register = Library() TypeError: 'object' object is not callable Other similar errors can occur such as "TypeError: 'object' object has no len". To address these limitations, only require to declare the top-level module that should be mocked: autodoc_mock_imports = ['django'] Will mock "django" but also any sub-module: "django.template", "django.contrib", etc. Also, make the mocked modules yield more complete dummy objects to avoid these TypeError problems. Behind the scenes, it uses the python import hooks mechanism specified in PEP 302. Signed-off-by: Robin Jarry <robin@jarry.cc> | |||||
* | Merge pull request #3388 from smheidrich/autosectionlabel_prefix_document1 | Takeshi KOMIYA | 2017-04-18 | 1 | -1/+15 | |
|\ | | | | | Added autosectionlabel_prefix_document config option | |||||
| * | Added autosectionlabel_prefix_document config option. | smheidrich | 2017-04-17 | 1 | -1/+15 | |
| | | ||||||
* | | Merge branch 'stable' | Takeshi KOMIYA | 2017-04-02 | 1 | -2/+21 | |
|\ \ | ||||||
| * | | BUG: Fix autosummary of members with a trailing underscore | Eric Wieser | 2017-03-26 | 1 | -2/+21 | |
| | | | ||||||
| * | | Fix #3174: [Napoleon] Defers autodoc-skip-member to other extensions if ↵ | Rob Ruana | 2017-03-14 | 1 | -0/+5 | |
| | | | | | | | | | | | | Napoleon doesn't care if the member is skipped | |||||
* | | | fix style check warnings | Yoshiki Shibukawa | 2017-03-03 | 2 | -2/+2 | |
| |/ |/| | ||||||
* | | From version 1.5 to 1.6. Warnings wrapped with locale. | Marco Buttu | 2017-01-26 | 1 | -1/+1 | |
| | | ||||||
* | | Fixed flake8 style check | Marco Buttu | 2017-01-16 | 1 | -1/+1 | |
| | | ||||||
* | | Comparison made by distutils.version.LooseVersion | Marco Buttu | 2017-01-15 | 1 | -1/+3 | |
| | | ||||||
* | | compare_version() replaces proper_pyversion() | Marco Buttu | 2017-01-15 | 1 | -2/+2 | |
| | | ||||||
* | | Added pyversion option for doctest (issue 3303) | Marco Buttu | 2017-01-15 | 1 | -1/+12 | |
| | | | | | | | | Code, tests and documentation. | |||||
* | | Drop deprecated options for graphviz extension | Takeshi KOMIYA | 2017-01-05 | 1 | -13/+1 | |
| | | ||||||
* | | Fix #3174: [Napoleon] Defers autodoc-skip-member to other extensions if ↵ | Rob Ruana | 2016-11-23 | 1 | -0/+5 | |
| | | | | | | | | Napoleon doesn't care if the member is skipped | |||||
* | | #3136: Add ``:name:`` option to the directives in ``sphinx.ext.graphviz`` | Takeshi KOMIYA | 2016-11-12 | 1 | -0/+3 | |
|/ | ||||||
* | Fix #2474: Add ``intersphinx_timeout`` option to ``sphinx.ext.intersphinx`` | Takeshi KOMIYA | 2016-09-01 | 1 | -0/+11 | |
| | ||||||
* | Fix document for Kindle and add description about kindlegen | Yoshiki Shibukawa | 2016-09-01 | 2 | -0/+59 | |
| | ||||||
* | Python domain can now link container types automatically | Ashley Whetter | 2016-08-03 | 2 | -6/+6 | |
| | | | | | | | Google types now greedily match the closing parenthesis. Also removed name from returns section in Google docstrings. Instead, everything before the colon is treated as the type. | |||||
* | Turn off viewcode extension by default | Yoshiki Shibukawa | 2016-07-28 | 1 | -0/+28 | |
| | ||||||
* | Merge branch 'stable' | Takeshi KOMIYA | 2016-07-21 | 2 | -2/+6 | |
|\ | ||||||
| * | fix document download roles. download roles works only on html. | Yoshiki Shibukawa | 2016-07-19 | 2 | -2/+6 | |
| | | ||||||
* | | #2680: `sphinx.ext.todo` now emits warnings if `todo_emit_warnings` enabled | Takeshi KOMIYA | 2016-07-16 | 1 | -0/+15 | |
| | | ||||||
* | | Fix style checks | Ville Skyttä | 2016-07-07 | 2 | -2/+2 | |
| | | ||||||
* | | [Napoleon] Removes Python 2/3 compatible type annotation doc example, ↵ | Rob Ruana | 2016-07-02 | 1 | -18/+4 | |
| | | | | | | | | because they aren't current supported by Sphinx | |||||
* | | Fixes #2688: [Napoleon] Updates to Napoleon documentation to fix intersphinx ↵ | Rob Ruana | 2016-06-23 | 3 | -47/+161 | |
| | | | | | | | | links and demonstrate PEP 484 type annotations | |||||
* | | Fix #2537: [Napoleon] Corrects minor formatting issue on example NumPy ↵ | Rob Ruana | 2016-06-12 | 1 | -0/+1 | |
| | | | | | | | | Attributes section | |||||
* | | Update #2374: [Napoleon] clarifies documentation of ↵ | Rob Ruana | 2016-06-11 | 1 | -0/+18 | |
| | | | | | | | | napoleon_include_init_with_doc conf value | |||||
* | | #2575: Now ``sphinx.ext.graphviz`` allows ``:align:`` option | Takeshi KOMIYA | 2016-05-28 | 1 | -0/+4 | |
| | | ||||||
* | | Merge branch 'stable' | Takeshi KOMIYA | 2016-05-09 | 1 | -6/+12 | |
|\ \ | |/ | ||||||
| * | Split doctest extension docs into sections | nevimov | 2016-05-02 | 1 | -6/+12 | |
| | | | | | | | | | | | | | | At the moment the docs have no sections at all. This commit adds sections "Directives" and "Configuration" to facilitate navigation. Also, it removes the outdated line about the number of directives provided by the extension (there’s now 5 of them). | |||||
* | | Reformatted doc for doctest_default_flags (#2471). | taschini | 2016-04-21 | 1 | -6/+9 | |
| | | ||||||
* | | Incorporated feeback on doc for doctest_default_flags (#2471). | taschini | 2016-04-21 | 1 | -11/+12 | |
| | | ||||||
* | | Documenting doctest_default_flags config variable (#2471). | taschini | 2016-04-21 | 1 | -7/+14 | |
| | | ||||||
* | | fix #2379 - Keyword args rendered with type links, as normal parameters ↵ | Jan Duzinkiewicz | 2016-03-23 | 1 | -0/+16 | |
| | | | | | | | | (configurable under napoleon_use_keyword option) | |||||
* | | Add ``:caption:`` option for sphinx.ext.inheritance_diagram | Takeshi KOMIYA | 2016-03-11 | 1 | -0/+5 | |
|/ | ||||||
* | Fix highlight languages in docs. | Georg Brandl | 2016-02-14 | 1 | -2/+8 | |
| | ||||||
* | Fix #1286, #2099: Add ``sphinx.ext.autosectionlabel`` extension to allow ↵ | Takeshi KOMIYA | 2016-02-14 | 1 | -0/+25 | |
| | | | | reference sections using its title | |||||
* | Merge pull request #2300 from akruis/feature_autoclass_content_from__new__ | Takeshi KOMIYA | 2016-02-14 | 1 | -0/+6 | |
|\ | | | | | Feature: enhance autoclass:: to use the docstring of __new__ if __init__ method's is missing of empty | |||||
| * | Feature: enhance autoclass:: to use the docstring of __new__ | Anselm Kruis | 2016-02-05 | 1 | -0/+6 | |
| | | | | | | | | | | | | | | | | | | The method new is an alternative to __init__, but autoclass does not respect __new__. This commit enhances the directive autoclass:: to try __new__ method's docstring, if __init__ method's docstring is missing or empty. The commit also adds tests and updates the documentation. | |||||
* | | Fixup links in the documentation. | Georg Brandl | 2016-02-13 | 3 | -3/+3 | |
| | |