summaryrefslogtreecommitdiff
path: root/sphinx/builders
Commit message (Collapse)AuthorAgeFilesLines
* Fix memory leak during parallel writing with multiplied warnings.Georg Brandl2014-12-311-1/+3
|
* Fix copy-paste error.Georg Brandl2014-12-311-1/+1
|
* Fix again for fffbcba0b. We should keep original env.update() return value ↵shimizukawa2014-11-271-2/+2
| | | | type as list-of-docnames-that-ordered-in-order-to-read.
* Fix: rebuilding cause crash unexpectedly when source files were added. The ↵shimizukawa2014-11-251-1/+0
| | | | problem appeared at fffbcba0b.
* Closes #1597: Added possibility to return a new template name from ↵Georg Brandl2014-10-232-6/+11
| | | | `html-page-context`.
* Incompatibility. Now :confval:`gettext_uuid` is set False by default. If ↵shimizukawa2014-10-053-1/+9
| | | | False, also levenshtein calculation is disabled. refs #1426
* Fix Builder.imgpath has not been initialized correctlytk0miya2014-10-011-2/+2
|
* Merged in tk0miya/sphinx (pull request #297)Takayuki Shimizukawa2014-09-295-10/+17
|\ | | | | | | Add imgpath property to all builders
| * Refactored; Initialize imagedir at init() methodtk0miya2014-09-292-5/+7
| |
| * Merge with defaulttk0miya2014-09-283-1/+4
| |\
| * | Remove debug printtk0miya2014-09-281-3/+0
| | |
| * | Add imgpath property to all builderstk0miya2014-09-275-11/+19
| | |
* | | add :confval:`gettext_enables` to enable extracting 'index' to gettext ↵shimizukawa2014-09-281-9/+10
| |/ |/| | | | | catalog output / applying translation catalog to generated documentation. Closes #1344
* | Merged in tk0miya/sphinx (pull request #298)Takayuki Shimizukawa2014-09-282-0/+2
|\ \ | | | | | | | | | Add new API: Sphinx.add_latex_package()
| * | Assign figure numbers automaticallytk0miya2014-09-262-0/+2
| |/
* | Add new API: Sphinx.add_latex_package()tk0miya2014-09-271-0/+1
|/ | | | | Sphinx.add_latex_package() allows sphinx extensions to add latex packages. It helps creating extensions for latex (for example, latex-theming)
* remove with_statement feature for py25.shimizukawa2014-09-261-1/+0
|
* Make remaining builtin extensions parallel-read-proof.Georg Brandl2014-09-222-4/+3
|
* Fix default for verbosity option (crashes on Py3).Georg Brandl2014-09-221-2/+1
|
* Fix a memory leak in the parallel impl. ParallelChunked is now unnecessary.Georg Brandl2014-09-221-7/+9
|
* Add a possibility to later execute finishing-up tasks in parallel.Georg Brandl2014-09-222-50/+65
|
* Refactor parallel process into a base class that executes any task, and a ↵Georg Brandl2014-09-222-7/+7
| | | | derived class that executes a batch of the same task.
* Factor out parallel building into a utility class. Better error handlingGeorg Brandl2014-09-221-47/+19
| | | | with traceback of the parallel process saved in the error log.
* [WIP] parallel readGeorg Brandl2014-09-221-17/+18
|
* Move status_iterator to application object.Georg Brandl2014-09-224-51/+18
|
* Fix a few missing Unicode/bytes filename problems.Georg Brandl2014-09-211-0/+3
|
* merge with stableGeorg Brandl2014-09-171-3/+3
|\
| * Exception logs now contain the last 10 messages emitted by Sphinx.Georg Brandl2014-09-171-3/+3
| |
* | Merge with tipshimizukawa2014-08-182-1/+45
|\ \
| * | Automatically compile ``*.mo`` files from ``*.po`` files.shimizukawa2014-08-032-1/+45
| | |
* | | Use config.master_doc insted of "index"tk0miya2014-08-181-1/+1
| | |
* | | Update comment for adhoc changestk0miya2014-08-121-1/+9
| | |
* | | Fix numbering section does not work at singlehtml mode (adhoc)tk0miya2014-08-121-0/+10
| | |
* | | Add app.set_translator() API to register or override a Docutils translator ↵shimizukawa2014-08-053-2/+8
|/ / | | | | | | class like :confval:`html_translator_class`.
* | merge with stableshimizukawa2014-07-1313-89/+79
|\ \ | |/ |/|
| * * fix over 80 chars line and remove unused import.shimizukawa2014-06-151-1/+3
| |
| * merge with stableshimizukawa2014-06-0913-89/+77
| |\
| | * remove unnecessary `list()` wrappers. In some places, I replaced ↵shimizukawa2014-05-251-1/+1
| | | | | | | | | | | | `iterable.sort()` with `sorted(iterable)`.
| | * use b prefix for bytes instead of sphinx.pycompat.b function.shimizukawa2014-05-011-2/+1
| | |
| | * wrap py3 iterators with list() for each places that expect a list object. ↵shimizukawa2014-04-304-4/+4
| | | | | | | | | | | | refs #1350.
| | * replace ur'' prefix with r'' to support py2/py3 in one source. refs #1350shimizukawa2014-04-301-7/+8
| | |
| | * remove 'six' name except importing line.shimizukawa2014-04-302-6/+5
| | |
| | * use six privided functions/classes to support py2/py3 in one source. refs #1350shimizukawa2014-04-301-3/+4
| | |
| | * use six privided text_type() to replace with unicode() to support py2/py3 in ↵shimizukawa2014-04-292-3/+4
| | | | | | | | | | | | one source. refs #1350.
| | * use six privided iteritems(),itervalues() to support py2/py3 in one source. ↵shimizukawa2014-04-295-11/+18
| | | | | | | | | | | | refs #1350.
| | * use six privided functions/classes to support py2/py3 in one source. refs #1350.shimizukawa2014-04-293-8/+9
| | |
| | * Merged in shibu/sphinx/add_stemmer (pull request #214)Georg Brandl2014-03-041-2/+1
| | |\
| | | * merge defaultYoshiki Shibukawa2014-01-224-27/+16
| | | |\
| | | * | Add html_search_* options templates to conf.pyYoshiki Shibukawa2014-01-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Fix encode error when building Add printing search language label when building
| | * | | merge with stableGeorg Brandl2014-03-0211-54/+34
| | |\ \ \