Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | * Propagated "maxdepth" recursively through package documents. | Sergio Garcia Prado | 2020-03-14 | 1 | -0/+1 |
| | |||||
* | Fix #6327: apidoc: Support a python package consisted of __init__.so file | Takeshi KOMIYA | 2020-02-08 | 1 | -11/+28 |
| | |||||
* | refactor: apidoc.shall_skip() | Takeshi KOMIYA | 2020-02-08 | 1 | -5/+35 |
| | |||||
* | apidoc: Add ``-q`` option for quiet mode (refs: #6772) | Takeshi KOMIYA | 2020-02-01 | 1 | -3/+12 |
| | |||||
* | Fix #6899: apidoc: private members are not shown even if --private given | Takeshi KOMIYA | 2020-01-30 | 1 | -2/+10 |
| | |||||
* | Fix #6986: apidoc: misdetects module name for .so file inside module | Takeshi KOMIYA | 2020-01-03 | 1 | -1/+1 |
| | |||||
* | A happy new year! | Takeshi KOMIYA | 2020-01-01 | 1 | -1/+1 |
| | |||||
* | Close #2546: apidoc: .so file support | Takeshi KOMIYA | 2019-11-17 | 1 | -3/+4 |
| | |||||
* | Migrate to py3 style type annotation: sphinx.ext.apidoc | Takeshi KOMIYA | 2019-07-01 | 1 | -33/+20 |
| | |||||
* | Fix #6517: apidoc: user_template_dir is not passed when it recurses | Takeshi KOMIYA | 2019-06-22 | 1 | -1/+1 |
| | |||||
* | Close #5602: apidoc: Add ``--templatedir`` option | Takeshi KOMIYA | 2019-06-16 | 1 | -16/+24 |
| | |||||
* | apidoc: template files are renamed to ``.rst_t`` | Takeshi KOMIYA | 2019-06-16 | 1 | -3/+3 |
| | |||||
* | refactor apidoc: Add is_skipped_module() | Takeshi KOMIYA | 2019-05-30 | 1 | -2/+15 |
| | |||||
* | refactor: apidoc: Replace makename() by module_join() | Takeshi KOMIYA | 2019-05-15 | 1 | -7/+16 |
| | |||||
* | apidoc: Deprecate unused functions | Takeshi KOMIYA | 2019-05-04 | 1 | -0/+6 |
| | |||||
* | apidoc: Use a template for generating package file | Takeshi KOMIYA | 2019-05-04 | 1 | -53/+26 |
| | |||||
* | apidoc: Use a template for generating toc file | Takeshi KOMIYA | 2019-05-04 | 1 | -8/+10 |
| | |||||
* | apidoc: Use a template for generating module file | Takeshi KOMIYA | 2019-05-04 | 1 | -8/+13 |
| | |||||
* | Python-3-only clean ups discovered by pyupgrade | Jon Dufresne | 2019-03-17 | 1 | -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 KOMIYA | 2019-01-02 | 1 | -1/+1 |
|\ | |||||
| * | A happy new year! | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 |
| | | |||||
* | | Merge remote-tracking branch 'upstream/master' into 5842-apidoc-extensions | cocodrips | 2018-12-26 | 1 | -1/+1 |
|\ \ | |||||
| * \ | Merge branch '1.8' | jfbu | 2018-12-23 | 1 | -1/+1 |
| |\ \ | | |/ | | | | | | | | | | (Resolved) Conflicts: sphinx/texinputs/sphinxmanual.cls | ||||
| | * | Fix #5834: apidoc: wrong help for --tocfile | Takeshi KOMIYA | 2018-12-19 | 1 | -1/+1 |
| | | | |||||
* | | | Add extensions from master | cocodrips | 2018-12-26 | 1 | -0/+7 |
|/ / | |||||
* | | Merge branch '1.8' | Takeshi KOMIYA | 2018-12-18 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix #5724: quickstart: sphinx-quickstart fails when $LC_ALL is empty | Takeshi KOMIYA | 2018-12-17 | 1 | -1/+1 |
| | | |||||
* | | Remove unnecessary encoding cookie from Python source files | Jon Dufresne | 2018-12-16 | 1 | -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 KOMIYA | 2018-12-15 | 1 | -14/+13 |
| | | |||||
* | | Remove print_function feature | Takeshi KOMIYA | 2018-12-15 | 1 | -2/+0 |
| | | |||||
* | | Add sphinx.util.typing:unicode to help mypy-3 migration | Takeshi KOMIYA | 2018-11-24 | 1 | -0/+1 |
| | | |||||
* | | Always prefer dict literals over calls to dict() | Jon Dufresne | 2018-11-13 | 1 | -22/+22 |
| | | | | | | | | | | Dict literals are always slightly faster and are idiomatic modern Python. | ||||
* | | Remove use of six.binary_type | Jon Dufresne | 2018-11-11 | 1 | -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 Dufresne | 2018-10-05 | 1 | -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 ToC | Takeshi KOMIYA | 2018-09-06 | 1 | -3/+5 |
| | |||||
* | Merge branch '1.7' | Takeshi KOMIYA | 2018-05-14 | 1 | -2/+2 |
|\ | |||||
| * | Fix #4932: apidoc: some subpackages is ignored if sibling subpackage ↵ | Takeshi KOMIYA | 2018-05-03 | 1 | -2/+2 |
| | | | | | | | | contains underscored module | ||||
* | | Merge branch '1.7' | Takeshi KOMIYA | 2018-03-21 | 1 | -10/+10 |
|\ \ | |/ | |||||
| * | apidoc: Fix local variable is not initialized | Takeshi KOMIYA | 2018-03-21 | 1 | -0/+1 |
| | | |||||
| * | Closes #4520 - acidic: Subpackage not in toc. The rule of skipping folders ↵ | Christer Bystrom | 2018-03-21 | 1 | -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 KOMIYA | 2018-03-19 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | usage strings should not contain "usage:" | Jeroen Demeyer | 2018-03-19 | 1 | -1/+1 |
| | | |||||
* | | Merge branch '1.7' | Takeshi KOMIYA | 2018-03-18 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Revert "Use typing.TYPE_CHECKING for typehints" | Takeshi KOMIYA | 2018-03-13 | 1 | -2/+2 |
| | | | | | | | | This reverts commit a073e17537c2aacaac305feadea58d4473ec97f4. | ||||
* | | Update apidoc.py | Lilian Besson | 2018-03-06 | 1 | -1/+1 |
| | | | | | | See #4712 | ||||
* | | Make sphinx-* commands translatable | Takeshi KOMIYA | 2018-03-03 | 1 | -37/+38 |
| | | |||||
* | | Supports i18n console output | Takeshi KOMIYA | 2018-02-25 | 1 | -1/+6 |
| | | |||||
* | | Merge branch '1.7' | Takeshi KOMIYA | 2018-02-18 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Use typing.TYPE_CHECKING for typehints | Takeshi KOMIYA | 2018-02-14 | 1 | -2/+2 |
| | | |||||
* | | Merge branch '1.7' | Takeshi KOMIYA | 2018-02-12 | 1 | -14/+12 |
|\ \ | |/ |