summaryrefslogtreecommitdiff
path: root/sphinx/builders/html.py
Commit message (Collapse)AuthorAgeFilesLines
* Closes #1597: Added possibility to return a new template name from ↵Georg Brandl2014-10-231-4/+7
| | | | `html-page-context`.
* Refactored; Initialize imagedir at init() methodtk0miya2014-09-291-1/+3
|
* Merge with defaulttk0miya2014-09-281-1/+2
|\
| * Assign figure numbers automaticallytk0miya2014-09-261-0/+1
| |
* | Add imgpath property to all builderstk0miya2014-09-271-4/+5
|/
* Make remaining builtin extensions parallel-read-proof.Georg Brandl2014-09-221-2/+2
|
* Add a possibility to later execute finishing-up tasks in parallel.Georg Brandl2014-09-221-20/+29
|
* Refactor parallel process into a base class that executes any task, and a ↵Georg Brandl2014-09-221-2/+2
| | | | derived class that executes a batch of the same task.
* Move status_iterator to application object.Georg Brandl2014-09-221-5/+5
|
* 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-051-1/+3
| | | | class like :confval:`html_translator_class`.
* * fix over 80 chars line and remove unused import.shimizukawa2014-06-151-1/+3
|
* use b prefix for bytes instead of sphinx.pycompat.b function.shimizukawa2014-05-011-2/+1
|
* remove 'six' name except importing line.shimizukawa2014-04-301-4/+3
|
* use six privided text_type() to replace with unicode() to support py2/py3 in ↵shimizukawa2014-04-291-2/+2
| | | | one source. refs #1350.
* use six privided iteritems(),itervalues() to support py2/py3 in one source. ↵shimizukawa2014-04-291-5/+6
| | | | refs #1350.
* use six privided functions/classes to support py2/py3 in one source. refs #1350.shimizukawa2014-04-291-3/+4
|
* Merged in shibu/sphinx/add_stemmer (pull request #214)Georg Brandl2014-03-041-2/+1
|\
| * merge defaultYoshiki Shibukawa2014-01-221-17/+8
| |\
| * | 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
* | | Update copyright year.Georg Brandl2014-03-011-17/+6
|\ \ \
| * \ \ MergeDmitry Shachnev2014-01-221-3/+5
| |\ \ \ | | | |/ | | |/|
| | * | merge with stableGeorg Brandl2014-01-201-14/+3
| | |\ \
| * | \ \ MergeDmitry Shachnev2014-01-201-3/+3
| |\ \ \ \ | | |_|/ / | |/| | |
| | * | | Modernize the code now that Python 2.5 is no longer supportedDmitry Shachnev2014-01-191-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Use print function instead of print statement; - Use new exception handling; - Use in operator instead of has_key(); - Do not use tuple arguments in functions; - Other miscellaneous improvements. This is based on output of `futurize --stage1`, with some manual corrections.
| * | | | The deprecated config values ``exclude_trees``, ``exclude_dirnames`` and ↵Georg Brandl2014-01-191-4/+1
| |/ / / | | | | | | | | | | | | ``unused_docs`` have been removed.
| * | | merge headsshimizukawa2014-01-151-1/+4
| |\ \ \ | | | |/ | | |/|
| * | | Drop python-2.5 and remove 2.4,2.5 support codesshimizukawa2013-12-151-10/+2
| | | |
* | | | Update copyright year.Georg Brandl2014-03-011-1/+1
| |_|/ |/| |
* | | updates per Georg Brandl:Viktor Haag2014-01-201-2/+4
| | | | | | | | | | | | | | | - Change alteration to docs to express path relative to "configuration directory" and not "conf.py" - Update block in HTML builder copying favicon to _static to mirror handling of html_logo
* | | address issue #1352 -- make sure to check for the actual file stored in ↵Viktor Haag2014-01-201-2/+2
| |/ |/| | | | | config.html_logo.
* | html builder: add missing "done" outputGeorg Brandl2014-01-111-0/+1
| |
* | Closes #1319: Do not crash if the ``html_logo`` file does not exist.Georg Brandl2014-01-101-1/+3
|/
* Fix new html_extra_path option for singlehtml builder.Georg Brandl2013-09-161-0/+1
|
* Actual implementation.Matthias C. M. Troffaes2013-08-221-0/+12
|
* Support docutils.conf 'writers' and 'html4css1 writer' section by html writer.shimizukawa2013-07-261-1/+2
| | | | latex, manpage and texinfo writers support 'writers' section.
* SingleHtml builder now calls write_doc_serialized(). Closes #1162.Dmitry Shachnev2013-05-051-0/+1
|
* merge with parallel repoGeorg Brandl2013-03-291-5/+17
|\
| * html builder: rename get_object_hash to get_stable hashGeorg Brandl2013-03-291-12/+8
| | | | | | | | Also amend the docstring so that it is easier to understand the need for the function.
| * epub_use_index instead of html_use_index for epub builder (Issue #1106)Roland Meister2013-03-061-2/+2
| | | | | | | | | | | | The change adds the method get_builder_config. This allows use of the option epub_use_index instead of html_use_index for epub output.
| * fix: output all html every time with python3.3.shimizukawa2013-01-151-3/+19
| | | | | | | | | | Sphinx detect config changing by hash(str(cfgdict)). In python3.3, str(dict_instance) retun another string per process.
* | builder: fix parallel build globals problems by splitting write_doc in twoGeorg Brandl2013-01-131-2/+7
| | | | | | | | | | | | | | | | stages: write_doc() and write_doc_serialized(), the latter of which is not called in the parallel processes. This costs speedup, of course: from about 50% we are down to about 30% improvement on my 4-core machine.
* | Set "allow_parallel" to false by default.Georg Brandl2013-01-131-0/+1
|/
* Closes #1067: implement pluggable search scorer and tweak scoring to give ↵Georg Brandl2013-01-041-1/+2
| | | | good results. Patch by Hernan Grecco.
* Merge with birkenfeld/sphinxRoland Meister2013-01-021-0/+2
|\
| * Bug #1047: templating toctree()'s includehidden argumentRoland Meister2012-12-101-0/+2
| | | | | | | | | | Document the includehidden option and give it sane defaults. See bug #1047 for implementation alternatives.
* | Copyright update.Georg Brandl2013-01-011-1/+1
|/
* Create link to full size image if it is scaled with width or height.ms4py2012-03-161-1/+2
|