summaryrefslogtreecommitdiff
path: root/sphinx/application.py
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Refactor: Run highlightlang on resolving phaseTakeshi KOMIYA2018-07-211-0/+1
| |/
* | Closes #4614: sphinx-build: Add :option:`--keep-going` option to show all ↵Takeshi KOMIYA2018-07-231-3/+10
|/ | | | warnings
* Merge pull request #5120 from blueyed/fix-docTakeshi KOMIYA2018-06-261-2/+3
|\ | | | | doc: fix list with add_object_type
| * doc: fix list with add_object_typeDaniel Hahler2018-06-251-2/+3
| | | | | | | | This seems to have been accidentally broken in eaaab75ec.
* | doc: fix func/meth references to SphinxDaniel Hahler2018-06-251-1/+1
|/
* Add :confval:`html_js_files`Takeshi KOMIYA2018-06-091-9/+1
|
* doc: Fix widths of tableTakeshi KOMIYA2018-06-051-0/+1
|
* Rename app.add_javascript() to add_js_file()Takeshi KOMIYA2018-05-241-3/+12
|
* add_javascript() allows keyword arguments as attributes for <script> tagTakeshi KOMIYA2018-05-241-9/+20
|
* Add BuildEnvironment.setup() to re-initialize (after unpickle)Takeshi KOMIYA2018-05-211-12/+3
|
* Move MathDomain to sphinx.domains.mathTakeshi KOMIYA2018-05-171-0/+1
|
* Enable math node rendering by default (without HTML builders)Takeshi KOMIYA2018-05-151-0/+1
| | | | | | | | | | | Nowadays, math elements (inline and block level equations) are integrated into reST spec by default. But, in Sphinx, they are not enabled by default. For this reason, users have to enable one of math extensions even if target builder supports math elements directly. This change starts to enable them by default. As a first step, this replaces math node and its structure by docutils based one.
* Merge branch 'master' into refactor_env2Takeshi KOMIYA2018-05-121-2/+0
|\
| * refactor: Convert the form of html_css_filesTakeshi KOMIYA2018-05-111-2/+0
| |
* | Deprecate methods for pickling/unpickling on BuildEnvironmentTakeshi KOMIYA2018-05-111-1/+5
|/
* Fix flake8 violationTakeshi KOMIYA2018-04-281-1/+1
|
* Rename Config.read_from_py() to Config.read()Takeshi KOMIYA2018-04-281-3/+2
|
* Merge branch 'master' into refactor_configTakeshi KOMIYA2018-04-221-13/+68
|\
| * Merge pull request #4810 from tk0miya/define_priority_for_transformsTakeshi KOMIYA2018-04-211-1/+24
| |\ | | | | | | Proposal: Define priority for transforms
| | * Define priority for transformsTakeshi KOMIYA2018-04-021-1/+24
| | |
| * | Merge pull request #4815 from tk0miya/refine_add_css_fileTakeshi KOMIYA2018-04-131-10/+42
| |\ \ | | | | | | | | Refine adding CSS files
| | * | Rename add_stylesheet() to add_css_file()Takeshi KOMIYA2018-04-061-11/+27
| | | |
| | * | Store stylesheets as an instance variable of HTML builderTakeshi KOMIYA2018-04-061-3/+1
| | | | | | | | | | | | | | | | | | | | So far, CSS files are stored as a class variable of HTML builder. Not to have status globally, this changes it to an instance varable.
| | * | add_stylesheet() allows additional attributesTakeshi KOMIYA2018-04-061-9/+27
| | |/
| * | Merge branch '1.7'Takeshi KOMIYA2018-04-091-2/+2
| |\ \ | | |/ | |/|
| | * Fix #4783: Sphinx crashed when drives of srcdir and outdir are differentTakeshi KOMIYA2018-04-021-2/+2
| | |
* | | Merge branch 'master' into refactor_configTakeshi KOMIYA2018-04-021-54/+102
|\ \ \ | |/ /
| * | Merge pull request #4760 from tk0miya/add_override_optionTakeshi KOMIYA2018-03-291-47/+85
| |\ \ | | | | | | | | Add a new keyword argument ``override`` to Application APIs
| | * | Deprecate app.override_domain()Takeshi KOMIYA2018-03-291-0/+3
| | | |
| | * | Add a new keyword argument ``override`` to Application APIsTakeshi KOMIYA2018-03-211-47/+82
| | | |
| * | | Fix #4787: Update docstrings for add_directive()Takeshi KOMIYA2018-03-271-7/+17
| |/ /
* | | Rename Config.read() to Config.from_conf_py()Takeshi KOMIYA2018-04-011-2/+2
| | |
* | | Deprecate Config.check_unicode()Takeshi KOMIYA2018-03-291-3/+2
| | |
* | | Fix confoverrides parameter was ignoredTakeshi KOMIYA2018-03-291-1/+1
| | |
* | | Instantiate Config object simply if confdir not givenTakeshi KOMIYA2018-03-281-4/+7
| | |
* | | Now Config.read() takes a filename instead (dirname, filename)Takeshi KOMIYA2018-03-281-1/+1
| | |
* | | Deprecate Config.check_types()Takeshi KOMIYA2018-03-241-2/+0
| | |
* | | Raise ExtensionError from Config class instead application classTakeshi KOMIYA2018-03-241-5/+1
| | |
* | | Refactor: Add Config.read() as a constructorTakeshi KOMIYA2018-03-231-2/+2
|/ / | | | | | | | | | | To simplify Config.__init__() method, this separates conf.py parsing feature to Config.read() method. This allows to instantiate config object simply.
* | Fix invalid __file__ variable is passed to conf.pyTakeshi KOMIYA2018-03-201-1/+1
| |
* | Merge branch '1.7'Takeshi KOMIYA2018-03-181-3/+3
|\ \ | |/
| * Fix module namecocoatomo2018-03-151-1/+1
| |
| * Revert "Use typing.TYPE_CHECKING for typehints"Takeshi KOMIYA2018-03-131-2/+2
| | | | | | | | This reverts commit a073e17537c2aacaac305feadea58d4473ec97f4.
| * autosummary: Fix compatibility of get_documenter() API (refs: #4366)Takeshi KOMIYA2018-02-171-0/+1
| |
* | Make console and warning messages translatableTakeshi KOMIYA2018-03-031-11/+11
| |
* | Fix mypy violationsTakeshi KOMIYA2018-02-261-1/+1
| |
* | Update docsTakeshi KOMIYA2018-02-251-1/+1
| |
* | Supports i18n console outputTakeshi KOMIYA2018-02-251-0/+1
| |
* | Add locales.get_translation() to provide i18n feature for extensionsTakeshi KOMIYA2018-02-251-0/+12
| |
* | Merge branch 'master' into migrate_registryTakeshi KOMIYA2018-02-221-4/+19
|\ \