summaryrefslogtreecommitdiff
path: root/doc/extdev
Commit message (Collapse)AuthorAgeFilesLines
...
* | | doc: Fix typoTakeshi KOMIYA2018-01-201-1/+1
|/ /
* | builders: Add 'Builder.epilog' optionStephen Finucane2018-01-111-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | This allows builders to emit a final epilog message containing information such as where resulting files can be found. This is only emitted if the build was successful. This allows us to remove this content from the 'make_mode' tool and the legacy 'Makefile' and 'make.bat' templates. There's room for more dramatic simplification of the former, but this will come later. Signed-off-by: Stephen Finucane <stephen@that.guru>
* | Fix typoTakeshi KOMIYA2017-12-201-1/+1
| |
* | Fix typoTakeshi KOMIYA2017-12-201-1/+1
| |
* | Fix mark upTakeshi KOMIYA2017-12-171-1/+1
| |
* | Replace AutodocReporter by switch_source_input()Takeshi KOMIYA2017-12-171-2/+20
| |
* | Merge branch 'stable'Takeshi KOMIYA2017-07-292-4/+22
|\ \
| * | Update docs (refs: #3923)Takeshi KOMIYA2017-07-162-4/+22
| |/
* | #1685 remove non-existing attributes from custom directive docTimotheus Kampik2017-07-151-8/+0
|/
* Mark as experimentalTakeshi KOMIYA2017-05-071-0/+2
|
* Fix #3633: misdetect unreferenced citationsTakeshi KOMIYA2017-04-291-0/+7
|
* Fix #3628: Rename sphinx_themes entry point to sphinx.html_themesTakeshi KOMIYA2017-04-221-0/+7
|
* Fix markupTakeshi KOMIYA2017-04-201-1/+1
|
* Rewrite and simplify stylesheet handlingJellby2017-04-151-2/+4
| | | | | | | Thanks to tk0miya's comment, I learnt one can add stuff to template blocks, that allows a much simpler stylesheet configuration, considering that changes at the template level will be more... well, low-level. Hopefully this is now acceptable.
* Merge remote-tracking branch 'upstream/master'Jellby2017-04-154-2/+44
|\ | | | | | | | | Conflicts: tests/test_build_html.py
| * Do not include the builder class in the entry pointBrecht Machiels2017-04-142-9/+17
| | | | | | | | | | - use the entry point to load the extension module in the usual way - update the documentation to reflect this change
| * Find third-party builders by entry pointBrecht Machiels2017-04-101-0/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A builder is uniquely identified by its name, which can be used as an entry point in the 'sphinx.builders' entry point group. This obviates the need to register the builder as an extension. The built-in builders are still loaded as before. New third-party builders should provide an entry point in their setup.py: entry_points={ 'sphinx.builders': [ 'mybuilder = mypackage.mymodule:MyBuilder', ], } Like before, builders should define a setup(app) function in the 'mypackage.module' module to define configuration variables etc. It is no longer necessary to register the builder using Sphinx.add_builder(). Existing builders can still be loaded the traditional way, by including their module name in the extensions list in conf.py.
| * Update docsTakeshi KOMIYA2017-03-101-2/+3
| |
| * Add Sphinx.add_post_transform()Takeshi KOMIYA2017-03-101-0/+5
| |
* | Merge remote-tracking branch 'upstream/master'Jellby2017-03-046-17/+107
|\ \ | |/ | | | | | | Conflicts: tests/test_build_html.py
| * Merge pull request #3403 from jwilk/spellingTakeshi KOMIYA2017-02-081-1/+1
| |\ | | | | | | Fix typos
| | * Fix typosJakub Wilk2017-02-071-1/+1
| | |
| * | logging module docsjfbu2017-02-071-15/+15
| |/
| * Update docs for collectors APITakeshi KOMIYA2017-01-283-0/+16
| |
| * Drop deprecated function: make_admonition()Takeshi KOMIYA2017-01-071-11/+9
| |
| * Update docsTakeshi KOMIYA2017-01-072-1/+4
| |
| * Drop deprecated options for html builderTakeshi KOMIYA2017-01-051-5/+0
| |
| * Drop deprecated termsep nodeTakeshi KOMIYA2017-01-051-1/+0
| |
| * Add doc/extdev/logging.rstTakeshi KOMIYA2017-01-022-0/+79
| |
* | Merge remote-tracking branch 'upstream/master'Jellby2016-12-061-0/+1
|\ \ | |/ | | | | | | | | Conflicts: sphinx/application.py sphinx/builders/html.py
| * Make rendering of multiline signatures better in html.Jakob Lykke Andersen2016-10-201-0/+1
| |
* | Merge remote-tracking branch 'upstream/master'Jellby2016-09-292-1/+3
|\ \ | |/ | | | | | | Conflicts: tests/test_build_html.py
| * Merge branch 'stable' into masterjfbu2016-09-071-0/+2
| |\ | | | | | | | | | | | | Conflicts (fixed):: sphinx/texinputs/sphinx.sty
| | * doc: Use AutodocReporter at example of nested_parse_with_titles()Takeshi KOMIYA2016-09-071-0/+2
| | | | | | | | | | | | | | | In detail, please refer following thread: https://groups.google.com/forum/#!topic/sphinx-dev/l4fHrIJfwq4
| * | Sphinx.add_source_parser takes only two argumentsmiyakogi2016-05-271-1/+1
| |/ | | | | https://github.com/sphinx-doc/sphinx/blob/master/sphinx/application.py#L794
* | Merge remote-tracking branch 'upstream/master'Ignacio Fdez. Galván2016-02-292-1/+23
|\ \ | |/
| * Fix #1858: Support numbering custom nodesTakeshi KOMIYA2016-02-141-6/+16
| |
| * Add Sphinx.add_enumerable_node() to add enumerable nodes for numfig featureTakeshi KOMIYA2016-02-141-0/+12
| |
| * Fixup links in the documentation.Georg Brandl2016-02-131-1/+1
| |
* | Merge remote-tracking branch 'upstream/master'Jellby2016-02-084-2/+21
|\ \ | |/ | | | | | | Conflicts: tests/test_build_html.py
| * Merge pull request #2207 from tk0miya/baseclass_for_parsersTakeshi KOMIYA2016-01-172-0/+9
| |\ | | | | | | Add sphinx.parsers.Parser class; a base class for new parsers
| | * Update docs about sphinx.parsers.Parser classTakeshi KOMIYA2016-01-172-0/+9
| | |
| * | Merge pull request #2209 from tk0miya/2162_add_source_parser_APITakeshi KOMIYA2016-01-171-0/+6
| |\ \ | | | | | | | | Fix #2162: Add Sphinx.add_source_parser() to add source_suffix and source_parsers from extension
| | * | Fix #2162: Add Sphinx.add_source_parser() to add source_suffix and ↵Takeshi KOMIYA2016-01-041-0/+6
| | | | | | | | | | | | | | | | source_parsers from extension
| * | | Merge branch 'stable'Takeshi KOMIYA2016-01-111-1/+5
| |\ \ \ | | |/ / | |/| |
| | * | Fix #1900: BuildEnvironment.srcdir documentation gives false informationTakeshi KOMIYA2016-01-071-1/+5
| | | |
| | * | Fix typos #2122 (cherry-picked by hand)Takeshi KOMIYA2016-01-021-1/+1
| | | |
| * | | Fix typos.Jakub Wilk2016-01-011-1/+1
| | |/ | |/|
* | | Merge remote-tracking branch 'upstream/master'Ignacio Fdez. Galván2015-12-131-2/+2
|\ \ \ | |/ /
| * | merge with stableshimizukawa2015-07-251-2/+2
| |\ \ | | |/