summaryrefslogtreecommitdiff
path: root/sphinx/environment.py
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Fix #2197: Slightly cryptic error message for missing index.rst fileTakeshi KOMIYA2016-01-031-2/+2
| | |
* | | Merge with '87998df9cbef2380345d436121e6bca43345d2bd' on stableshimizukawa2016-01-101-48/+25
|\ \ \ | |/ / | | / | |/ |/| Conflicts: tests/test_build_latex.py
| * Fix broken in py3 (for 8a763feb6b92404a4acea0894dc23d4060e9f36e)Takeshi KOMIYA2015-12-271-2/+2
| |
| * Fix flake8 violationTakeshi KOMIYA2015-12-271-1/+1
| |
| * Fix #2189: previous sibling link has broken if previous doc is under nested ↵Takeshi KOMIYA2015-12-261-55/+23
| | | | | | | | toctree
| * Fix #2189: next sibling link has broken if the file was appeared twice or moreTakeshi KOMIYA2015-12-261-3/+10
| |
| * Fix #2189: previous sibling link has broken if the file was appeared twice ↵Takeshi KOMIYA2015-12-211-0/+2
| | | | | | | | or more
* | Merge branch 'stable'shimizukawa2015-09-131-4/+6
|\ \ | |/
| * Fix #1994: More supporting non-standard parser (like recommonmark parser) ↵shimizukawa2015-09-131-4/+6
| | | | | | | | for Translation and WebSupport feature. Now node.rawsource is fall backed to node.astext() during docutils transforming.
* | std domain: make sure that ref and doc references have proper classes setGeorg Brandl2015-07-251-1/+2
|/
* Fixes #1834: compatibility for docutils-0.13: handle_io_errors keyword ↵shimizukawa2015-04-051-2/+0
| | | | | | argument for docutils.io.FileInput cause TypeError. The argument is already deprecated and no effects from docutils-0.10.
* refactoring: move i18n related function from osutil into i18nshimizukawa2015-03-161-1/+2
|
* Fix #1763: Wrong `:numref:` links for `:name:` target on figure, table and ↵shimizukawa2015-03-091-4/+10
| | | | code-block directives.
* pep8 fixesGeorg Brandl2015-03-081-7/+7
|
* Merge branch 'apple-help' of git://github.com/al45tair/sphinxGeorg Brandl2015-03-081-1/+1
|\
| * Added some additional configuration variables for Apple Help.Alastair Houghton2015-01-151-1/+1
| | | | | | | | | | Removed Apple Help from quickstart conf.py. Added support for .lproj directories with pre-localised files for Apple Help.
* | Change the source parsers feature a bit:Georg Brandl2015-03-081-16/+6
| | | | | | | | | | | | | | * parsers -> source_parsers * add docs * require fully qualified name or class * add test for it
* | Merge pull request #1760 from ericholscher/parsersGeorg Brandl2015-03-081-1/+35
|\ \ | | | | | | Parsers
| * | Allow passing a class inEric Holscher2015-02-281-0/+3
| | |
| * | Add support for per-suffix parsersMatthew Woehlke2015-02-281-1/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Override 'read' method in SphinxStandaloneReader to consider the suffix of the file being processed and potentially choose to use a different parser. Add 'parsers' argument to constructor taking a dictionary of suffixes to names of parsers to use for the suffix, as provided by a configuration variable of the same name. This adds the ability to do something like: parsers = {'.md': 'markdown.parsers'} ...to use markdown.parsers.Parser to parse .md files. Note that the custom parser is ONLY used to parse files matching the suffix; otherwise the default (reST) parser is used.
* | | refs #1700: now toctree caption become paragraph block instead of Text under ↵shimizukawa2015-03-081-9/+5
| | | | | | | | | | | | ul element. and add permalink for toctree caption.
* | | rename `name` option for toctree directive to `caption`.shimizukawa2015-03-081-3/+3
| | |
* | | Merge pull request #1700 from ericholscher/toctree-nameTakayuki SHIMIZUKAWA2015-03-081-0/+8
|\ \ \ | |/ / |/| | Add initial ability to name a TOC Tree
| * | Add initial ability to output a nameEric Holscher2015-01-091-0/+8
| |/
* | Merge branch 'source_suffix'shimizukawa2015-02-271-2/+10
|\ \ | | | | | | | | | | | | Conflicts: CHANGES
| * | source_suffix can now be a list.Georg Brandl2015-02-081-2/+10
| | |
* | | versioning_conditions for uuid/i18n uses is_translatable instead of ↵shimizukawa2015-02-221-2/+2
| | | | | | | | | | | | nodes.TextElement directly.
* | | refs #1235: i18n: 'literal-block' node can be translated if 'literal-block' ↵shimizukawa2015-02-221-4/+4
| | | | | | | | | | | | is set to `gettext_additional_targets`.
* | | Fix bug refs #1722. Circler toctree cause infinite loop.shimizukawa2015-02-151-1/+1
| | |
* | | Closes #1722. Restore ``toctree()`` template function behavior that was ↵shimizukawa2015-02-151-1/+16
|/ / | | | | | | changed at 1.3b1.
* | Ensure genindex output is deterministic.Chris Lamb2015-01-311-3/+7
| | | | | | | | | | | | See also <https://github.com/sphinx-doc/sphinx/pull/1694> Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
* | The ``env-updated`` event can now return a value, which is interpreted as an ↵Georg Brandl2015-01-251-2/+6
| | | | | | | | | | | | iterable of additional docnames that need to be rewritten. (reference: #1683)
* | Merge branch 'stable'Georg Brandl2015-01-151-1/+2
|\ \ | |/ |/|
| * Closes #1673: fix crashes with nitpick_ignore and :doc: references.Georg Brandl2015-01-151-1/+2
| |
* | Merge branch 'stable'Georg Brandl2015-01-031-1/+1
|\ \ | |/
| * all: update copyrightGeorg Brandl2015-01-031-1/+1
| |
* | Fix again. Sections which depth are lower than :tocdepth: should not be ↵Takayuki Shimizukawa2014-12-051-23/+25
| | | | | | | | shown on localtoc sidebar. Closes #1251
* | Fix again for fffbcba0b. We should keep original env.update() return value ↵Takayuki Shimizukawa2014-11-271-1/+1
| | | | | | | | type as list-of-docnames-that-ordered-in-order-to-read.
* | Fix: rebuilding cause crash unexpectedly when source files were added. The ↵Takayuki Shimizukawa2014-11-251-1/+1
| | | | | | | | problem appeared at fffbcba0b.
* | merge with stableGeorg Brandl2014-11-171-2/+2
|\ \ | |/
| * Closes #1372: use https URL for PEPs and RFCsGeorg Brandl2014-11-171-2/+2
| |
* | Merged in tk0miya/sphinx (pull request #303)Takayuki Shimizukawa2014-10-091-14/+5
|\ \ | | | | | | | | | Add :numref: role to refer figures, tables and code-blocks by its fignum
| * \ Merge with defaulttk0miya2014-10-061-3/+4
| |\ \
| * | | Fix numfig got error if table without title existstk0miya2014-10-011-1/+1
| | | |
| * | | Add :numref: role to refer figures, tables and code-blocks by its fignumtk0miya2014-10-011-14/+5
| | | |
* | | | Merged in shimizukawa/sphinx (pull request #305)Takayuki Shimizukawa2014-10-091-11/+15
|\ \ \ \ | |_|/ / |/| | | | | | | gettext speed-up. closes #1426
| * | | Incompatibility. Now :confval:`gettext_uuid` is set False by default. If ↵Takayuki Shimizukawa2014-10-051-11/+15
| |/ / | | | | | | | | | False, also levenshtein calculation is disabled. refs #1426
* | | Fix environment handling for the fignum changes.Georg Brandl2014-10-061-3/+4
|/ /
* | Refactor has_child() function (by review)tk0miya2014-09-271-5/+1
| |
* | Fix assign_figure_numbers() raises AttributeError with old environmenttk0miya2014-09-271-1/+1
| |