summaryrefslogtreecommitdiff
path: root/sphinx/environment.py
Commit message (Collapse)AuthorAgeFilesLines
* Separate indexentries manager to sphinx.environment.manager.indexentriesTakeshi KOMIYA2016-10-111-1797/+0
|
* Refactor: move process_only_nodes() to sphinx.util.nodesTakeshi KOMIYA2016-10-111-22/+5
|
* Uninstall sphinx directives and roles of domains after buildTakeshi KOMIYA2016-09-211-81/+29
|
* Refactor sphinx.environment: Reimplemnt process_refonly_bullet_lists() as a ↵Takeshi KOMIYA2016-09-151-62/+0
| | | | transform
* Refactor sphinx.environment: Reimplement filter_messages() as a transformTakeshi KOMIYA2016-09-151-9/+0
|
* Use new style python classesTakeshi KOMIYA2016-09-101-1/+1
|
* Preserve filename and line number for meta nodesTakeshi KOMIYA2016-09-011-4/+0
|
* Fix #1734: Could not translate the caption of toctree directiveTakeshi KOMIYA2016-09-011-1/+9
|
* std domain handles citationsTakeshi KOMIYA2016-08-161-43/+2
|
* Merge branch 'stable'Takeshi KOMIYA2016-07-021-2/+7
|\
| * Fix #2718: Sphinx crashes if the document file is not readableTakeshi KOMIYA2016-07-021-2/+7
| |
* | Merge pull request #2644 from pfultz2/refdocTakeshi KOMIYA2016-07-021-8/+7
|\ \ | | | | | | Make refdoc attribute optional for pending_xref nodes
| * | Make refdoc attribute optional for pending_xref nodesPaul2016-06-081-8/+7
| | |
* | | Fix warning in CHANGESTakeshi KOMIYA2016-06-251-1/+7
|\ \ \ | | |/ | |/|
| * | Fix #2705: `toctree` generates empty bullet_list if ``:titlesonly:`` specifiedTakeshi KOMIYA2016-06-231-1/+7
| | |
* | | Merge branch 'stable'Takeshi KOMIYA2016-06-101-1/+1
|\ \ \ | |/ /
| * | Increment ENV_VERSION (ref: #2631)Takeshi KOMIYA2016-06-081-1/+1
| |/
* | Merge branch 'stable'Takeshi KOMIYA2016-06-051-0/+28
|\ \ | |/
| * Suppress "document isn't included in any toctree" warning if the document is ↵Takeshi KOMIYA2016-05-311-0/+28
| | | | | | | | included (ref: #2603)
* | Refactor code using ``with`` syntaxTakeshi KOMIYA2016-05-261-21/+6
|/
* Fix Sphinx crashes if self referenced toctree foundTakeshi KOMIYA2016-04-221-0/+4
|
* Fix #2466: Allow image.data_uri and image.nonlocal_uri as confval of ↵Takeshi KOMIYA2016-04-221-2/+4
| | | | suppress_warnings
* Increment ENV_VERSION for #2456Takeshi KOMIYA2016-04-211-1/+1
|
* Fix #2407: building docs crash if document includes large data image URIsTakeshi KOMIYA2016-04-161-1/+5
|
* Fix unpack warning if combinated with 3rd party domain extensionsTakeshi KOMIYA2016-03-081-3/+8
|
* Fix #2368: Ignore emacs lock files like ``.#foo.rst`` by default.Takeshi KOMIYA2016-03-061-1/+1
|
* Merge branch '2229_suppress_warnings'Takeshi KOMIYA2016-03-031-8/+8
|\
| * Add :confval:`suppress_warnings` to supress arbitrary warning messageTakeshi KOMIYA2016-02-231-1/+1
| |
| * Refactor: all of warnfuncs bypasses kwargs to Sphinx.warn()Takeshi KOMIYA2016-02-231-7/+7
| |
* | #2364: Fix KeyError rootSymbol on Sphinx upgrade from older version.Takeshi KOMIYA2016-03-031-1/+1
|/
* Fix #1921: Support figure substitutions by localeTakeshi KOMIYA2016-02-221-13/+31
|
* Select an image by similarity if multiple images are globbed by ``.. image:: ↵Takeshi KOMIYA2016-02-221-1/+4
| | | | | | | | filename.*`` Until this point, it is used the last image returned from glob.glob(). The order of glob.glob() is determined by filesystem. After this, Sphinx uses filename similarity to determine the image.
* Refactor: guess_mimetype()Takeshi KOMIYA2016-02-221-17/+8
|
* Fix #2329: Refresh environment forcely if source directory has changedTakeshi KOMIYA2016-02-201-1/+3
|
* classifier of glossary terms can be used for index entries grouping key. The ↵shimizukawa2016-02-141-22/+27
| | | | classifier also be used for translation. See also :ref:`glossary-directive`.
* Refactor numfig: Move core implementation to std domainTakeshi KOMIYA2016-02-141-2/+2
|
* Override figure directive to apply :name: option to the figure itselfTakeshi KOMIYA2016-02-141-6/+1
|
* fix flake8shimizukawa2016-02-091-1/+1
|
* Merge with stableshimizukawa2016-02-091-86/+7
|\ | | | | | | | | | | | | Conflicts: sphinx/environment.py sphinx/ext/autodoc.py sphinx/writers/latex.py
| * Fix #2287: `sphinx.transforms.Locale` always uses rst parser. Sphinx i18n ↵shimizukawa2016-02-091-78/+5
| | | | | | | | feature should support parsers that specified source_parsers.
| * Use ensuredir() for creating directories within BuildEnvironment.read_docKacper Kowalik (Xarthisius)2016-02-021-4/+2
| |
* | Fix #1944: rst_prolog breaks file-wide metadataTakeshi KOMIYA2016-01-241-2/+3
| |
* | Merge pull request #2207 from tk0miya/baseclass_for_parsersTakeshi KOMIYA2016-01-171-3/+6
|\ \ | | | | | | Add sphinx.parsers.Parser class; a base class for new parsers
| * | Add sphinx.parsers.Parser class; a base class for new parsersTakeshi KOMIYA2016-01-171-3/+6
| | | | | | | | | | | | | | | The class inherits ``docutils.parsers.Parser`` and implements ``set_application()`` in addition. It enables subclasses to read configurations, to access environments and to logging.
* | | Merge branch 'stable'Georg Brandl2016-01-141-3/+10
|\ \ \ | | |/ | |/|
| * | Obligatory copyright update.Georg Brandl2016-01-141-1/+1
| | |
| * | Fix line numbers was not shown on warnings of indeciesTakeshi KOMIYA2016-01-131-2/+9
| | |
* | | merge with stableshimizukawa2016-01-131-1/+1
|\ \ \ | |/ /
| * | Fix #1601, #2220: 'any' role breaks extended domains behavior. Affected ↵shimizukawa2016-01-101-1/+1
| | | | | | | | | | | | extensions doesn't support resolve_any_xref and resolve_xref returns problematic node instead of None. sphinxcontrib-httpdomain is one of them.
* | | Merge branch 'stable'Takeshi KOMIYA2016-01-111-2/+2
|\ \ \ | |/ /