summaryrefslogtreecommitdiff
path: root/sphinx/ext/apidoc.py
Commit message (Collapse)AuthorAgeFilesLines
* * Propagated "maxdepth" recursively through package documents.Sergio Garcia Prado2020-03-141-0/+1
|
* Fix #6327: apidoc: Support a python package consisted of __init__.so fileTakeshi KOMIYA2020-02-081-11/+28
|
* refactor: apidoc.shall_skip()Takeshi KOMIYA2020-02-081-5/+35
|
* apidoc: Add ``-q`` option for quiet mode (refs: #6772)Takeshi KOMIYA2020-02-011-3/+12
|
* Fix #6899: apidoc: private members are not shown even if --private givenTakeshi KOMIYA2020-01-301-2/+10
|
* Fix #6986: apidoc: misdetects module name for .so file inside moduleTakeshi KOMIYA2020-01-031-1/+1
|
* A happy new year!Takeshi KOMIYA2020-01-011-1/+1
|
* Close #2546: apidoc: .so file supportTakeshi KOMIYA2019-11-171-3/+4
|
* Migrate to py3 style type annotation: sphinx.ext.apidocTakeshi KOMIYA2019-07-011-33/+20
|
* Fix #6517: apidoc: user_template_dir is not passed when it recursesTakeshi KOMIYA2019-06-221-1/+1
|
* Close #5602: apidoc: Add ``--templatedir`` optionTakeshi KOMIYA2019-06-161-16/+24
|
* apidoc: template files are renamed to ``.rst_t``Takeshi KOMIYA2019-06-161-3/+3
|
* refactor apidoc: Add is_skipped_module()Takeshi KOMIYA2019-05-301-2/+15
|
* refactor: apidoc: Replace makename() by module_join()Takeshi KOMIYA2019-05-151-7/+16
|
* apidoc: Deprecate unused functionsTakeshi KOMIYA2019-05-041-0/+6
|
* apidoc: Use a template for generating package fileTakeshi KOMIYA2019-05-041-53/+26
|
* apidoc: Use a template for generating toc fileTakeshi KOMIYA2019-05-041-8/+10
|
* apidoc: Use a template for generating module fileTakeshi KOMIYA2019-05-041-8/+13
|
* Python-3-only clean ups discovered by pyupgradeJon Dufresne2019-03-171-1/+1
| | | | | | | | | | | | | | https://github.com/asottile/pyupgrade > A tool to automatically upgrade syntax for newer versions of the > language. - Drop u str prefix - Drop base object inheritance - Drop args to super() - Use set literals - Use dict comprehension - Use set comprehension
* Merge branch '1.8'Takeshi KOMIYA2019-01-021-1/+1
|\
| * A happy new year!Takeshi KOMIYA2019-01-021-1/+1
| |
* | Merge remote-tracking branch 'upstream/master' into 5842-apidoc-extensionscocodrips2018-12-261-1/+1
|\ \
| * \ Merge branch '1.8'jfbu2018-12-231-1/+1
| |\ \ | | |/ | | | | | | | | | (Resolved) Conflicts: sphinx/texinputs/sphinxmanual.cls
| | * Fix #5834: apidoc: wrong help for --tocfileTakeshi KOMIYA2018-12-191-1/+1
| | |
* | | Add extensions from mastercocodrips2018-12-261-0/+7
|/ /
* | Merge branch '1.8'Takeshi KOMIYA2018-12-181-1/+1
|\ \ | |/
| * Fix #5724: quickstart: sphinx-quickstart fails when $LC_ALL is emptyTakeshi KOMIYA2018-12-171-1/+1
| |
* | 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.
* | Replace all "unicode" type by "str"Takeshi KOMIYA2018-12-151-14/+13
| |
* | Remove print_function featureTakeshi KOMIYA2018-12-151-2/+0
| |
* | Add sphinx.util.typing:unicode to help mypy-3 migrationTakeshi KOMIYA2018-11-241-0/+1
| |
* | Always prefer dict literals over calls to dict()Jon Dufresne2018-11-131-22/+22
| | | | | | | | | | Dict literals are always slightly faster and are idiomatic modern Python.
* | Remove use of six.binary_typeJon Dufresne2018-11-111-11/+0
| | | | | | | | | | | | Remove type checks for cases that don't apply to Python 3. For remaining uses, use bytes instead
* | Deprecate Python2 compat shim sphinx.util.osutil.walk()Jon Dufresne2018-10-051-2/+2
|/ | | | | Code should use os.walk() instead, which works with either str or bytes. All internal calls use str.
* Fix #5362: apidoc: Add ``--toc`` option to change the filename of ToCTakeshi KOMIYA2018-09-061-3/+5
|
* Merge branch '1.7'Takeshi KOMIYA2018-05-141-2/+2
|\
| * Fix #4932: apidoc: some subpackages is ignored if sibling subpackage ↵Takeshi KOMIYA2018-05-031-2/+2
| | | | | | | | contains underscored module
* | Merge branch '1.7'Takeshi KOMIYA2018-03-211-10/+10
|\ \ | |/
| * apidoc: Fix local variable is not initializedTakeshi KOMIYA2018-03-211-0/+1
| |
| * Closes #4520 - acidic: Subpackage not in toc. The rule of skipping folders ↵Christer Bystrom2018-03-211-10/+9
| | | | | | | | with only an empty __init__.py has been removed. The reason for this is that it was never working consistently in the first place and made the code unnecessary hard to reason about. Tests for the TOC generation have been added, as well as tests for the exclude mechanism since they are coupled. One test (test_ext_apidoc.py::test_exclude) has also been modified to reflect the new behaviour.
* | Merge branch '1.7'Takeshi KOMIYA2018-03-191-1/+1
|\ \ | |/
| * usage strings should not contain "usage:"Jeroen Demeyer2018-03-191-1/+1
| |
* | Merge branch '1.7'Takeshi KOMIYA2018-03-181-2/+2
|\ \ | |/
| * Revert "Use typing.TYPE_CHECKING for typehints"Takeshi KOMIYA2018-03-131-2/+2
| | | | | | | | This reverts commit a073e17537c2aacaac305feadea58d4473ec97f4.
* | Update apidoc.pyLilian Besson2018-03-061-1/+1
| | | | | | See #4712
* | Make sphinx-* commands translatableTakeshi KOMIYA2018-03-031-37/+38
| |
* | Supports i18n console outputTakeshi KOMIYA2018-02-251-1/+6
| |
* | Merge branch '1.7'Takeshi KOMIYA2018-02-181-2/+2
|\ \ | |/
| * Use typing.TYPE_CHECKING for typehintsTakeshi KOMIYA2018-02-141-2/+2
| |
* | Merge branch '1.7'Takeshi KOMIYA2018-02-121-14/+12
|\ \ | |/