summaryrefslogtreecommitdiff
path: root/doc/extdev
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge branch '2.0'Takeshi KOMIYA2020-02-091-0/+10
|\ \ | |/ |/|
| * Fix #6327: apidoc: Support a python package consisted of __init__.so fileTakeshi KOMIYA2020-02-081-0/+5
| |
| * refactor: apidoc.shall_skip()Takeshi KOMIYA2020-02-081-0/+5
| |
* | testing: Add Path.read_text() and Path.read_bytes()Takeshi KOMIYA2020-02-011-0/+10
| | | | | | | | | | To migrate pathlib.Path in future, compatibile methods are needed for our Path class.
* | Merge branch '2.0'Takeshi KOMIYA2020-02-011-0/+55
|\ \ | |/
| * Update deprecation listTakeshi KOMIYA2020-01-311-0/+30
| |
| * Merge branch '2.0' into refactor_latexTakeshi KOMIYA2020-01-312-3/+37
| |\
| * | refactor: latex: Deprecate settings.* attributes based on latex_documentsTakeshi KOMIYA2019-12-271-0/+25
| | |
* | | Merge branch '2.0'Takeshi KOMIYA2020-01-302-1/+6
|\ \ \ | | |/ | |/|
| * | Merge branch '2.0' into 6418_autodoc_typehints_descriptionTakeshi KOMIYA2020-01-301-0/+5
| |\ \
| | * | Deprecate sphinx.util.inspect:safe_getmembers()Takeshi KOMIYA2020-01-251-0/+5
| | | |
| * | | Add new event: :event:`object-description-transform`Takeshi KOMIYA2020-01-251-0/+8
| |/ /
* | | Merge pull request #6979 from tk0miya/6830_autodoc_privateTakeshi KOMIYA2020-01-111-0/+8
|\ \ \ | | | | | | | | Close #6830: autodoc: consider a member private if docstring contains :private:
| * | | Close #6830: autodoc: consider a member private if docstring has "private" ↵Takeshi KOMIYA2020-01-041-0/+8
| | | | | | | | | | | | | | | | metadata
* | | | Merge branch '2.0'Takeshi KOMIYA2020-01-111-12/+3
|\ \ \ \ | | |/ / | |/| |
| * | | refactor: Add sphinx.util.inspect.signature()Takeshi KOMIYA2020-01-091-12/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As a successor of sphinx.util.inspect.Singnature, this adds signature() function behaves like `inspect.signature()`. It is very similar to way of python's inspect module. In addition, this also adds stringify_annotation() helper to sphinx.util.inspect module. With these two functions, we can move to python's Signature object to represent function signatures perfectly. It's natural design for python developers than ever.
* | | | Merge branch '2.0'Takeshi KOMIYA2020-01-081-0/+20
|\ \ \ \ | |/ / / | | / / | |/ / |/| |
| * | Add sphinx.util.typing:stringify() to represent annotations as stringTakeshi KOMIYA2020-01-051-0/+15
| | |
| * | Fix #6559: Wrong node-ids are generated in glossary directiveTakeshi KOMIYA2020-01-021-0/+5
| | |
* | | Merge branch '2.0'Takeshi KOMIYA2020-01-011-0/+30
|\ \ \ | |/ /
| * | Deprecate sphinx.roles:Index and make a copy to sphinx.domains.indexTakeshi KOMIYA2019-12-291-0/+5
| | |
| * | Move sphinx.directives.other:Index to sphinx.domains.indexTakeshi KOMIYA2019-12-291-0/+5
| | |
| * | doc: Sort deprecated list alphabeticallyTakeshi KOMIYA2019-12-281-5/+5
| |/
| * Deprecate sphinx.util:detect_encoding() and ModuleAnalyzer.encodingTakeshi KOMIYA2019-12-271-0/+15
| |
| * Deprecate sphinx.util:get_module_source()Takeshi KOMIYA2019-12-271-0/+5
| |
* | Close #6558: glossary: emit a warning for duplicated glossary entryTakeshi KOMIYA2019-12-291-0/+5
| |
* | Merge branch '2.0'Takeshi KOMIYA2019-12-221-0/+10
|\ \ | |/
| * Add IndexDomainTakeshi KOMIYA2019-12-221-0/+10
| |
* | Merge branch '2.0'Takeshi KOMIYA2019-12-211-0/+10
|\ \ | |/
| * Deprecate sphinx.io.FiletypeNotFoundError and get_filetype()Takeshi KOMIYA2019-12-161-0/+10
| |
* | Merge branch '2.0'Takeshi KOMIYA2019-12-161-0/+5
|\ \ | |/
| * LaTeX: avoid quotes and TeX ligature replacements in PDF outputjfbu2019-12-151-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refs: #6890 The comma character is not TeX-escaped because it is frequent in general text and escaping it would make the LaTeX output larger for only dealing with the problem of the LaTeX-ligature of ,, into a single character. And one there is problem with the commas in options to Verbatim from PygmentsBridge. The hyphen character is escaped (not in ids and URIs!) to \sphinxhyphen{} for both Unicode and non-Unicode engines. This is needed to work around hyperref transforming -- and --- from section titles into EN DASH resp. EM DASH in PDF bookmarks. https://github.com/latex3/hyperref/issues/112 Note to expert LaTeX users: if Sphinx latex user with xelatex has - turned off Smart Quotes for some reason, - but does want TeX ligatures and thus overrode Sphinx latex_elements['fontenc'] default (since #6888) to this effect, then this should be added to LaTeX preamble: \def\sphinxhyphen#1{-}% (\protected is now not needed) \let\sphinxhyphenforbookmarks\sphinxhyphen
* | Merge branch '2.0'Takeshi KOMIYA2019-11-301-0/+10
|\ \ | |/
| * Make escape() and hlescape() as public APIs of texescapeTakeshi KOMIYA2019-11-161-2/+2
| |
| * Deprecate sphinx.util.texescape.tex_escape_mapTakeshi KOMIYA2019-11-161-0/+10
| |
* | Merge branch '2.0'Takeshi KOMIYA2019-11-171-0/+5
|\ \ | |/
| * gettext: Use template file to generate message catalogTakeshi KOMIYA2019-11-081-0/+5
| |
* | Merge branch '2.0'Takeshi KOMIYA2019-10-061-0/+10
|\ \ | |/
| * refactor: SphinxStandaloneReader should not hold an application objectTakeshi KOMIYA2019-08-201-0/+10
| |
* | Merge branch '2.0'Takeshi KOMIYA2019-06-211-0/+10
|\ \ | |/
| * Merge pull request #6467 from tk0miya/refactor_mathTakeshi KOMIYA2019-06-151-0/+10
| |\ | | | | | | refactor: Add data accessors to MathDomain
| | * refactor: Add data accessors to MathDomainTakeshi KOMIYA2019-06-151-0/+10
| | |
* | | Merge branch '2.0'Takeshi KOMIYA2019-06-151-0/+36
|\ \ \ | |/ /
| * | Merge branch '2.0' into refactor_todo2Takeshi KOMIYA2019-06-151-0/+16
| |\ \ | | |/
| | * autosummary: deprecate info and warn arguments for generate_autosummary_docs()Takeshi KOMIYA2019-06-101-0/+16
| | |
| * | refactor: todo: Add TodoListProcessor to expand todolist nodesTakeshi KOMIYA2019-06-031-0/+5
| | |
| * | refactor: todo: Add TodoDomain to collect todo nodesTakeshi KOMIYA2019-06-021-0/+15
| |/
* | Merge branch '2.0'Takeshi KOMIYA2019-06-012-4/+4
|\ \ | |/
| * doc: Fold lines by 80 columnsTakeshi KOMIYA2019-05-302-4/+4
| |
* | Merge branch '2.0'Takeshi KOMIYA2019-05-294-8/+15
|\ \ | |/