summaryrefslogtreecommitdiff
path: root/sphinx/application.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Fallback for UnicodeErrors without an encoding set.Georg Brandl2009-05-171-2/+2
|
* Work on autodoc: move -g command-line argument to config value, makeGeorg Brandl2009-03-151-3/+3
| | | | directive up to new API.
* Make WARNING the default warning prefix.Georg Brandl2009-03-051-1/+1
|
* Use standard ``file:line: warning: message`` format for warning messages.Georg Brandl2009-03-051-5/+6
|
* #109: fix circular import problems by moving exceptions into their own module.Georg Brandl2009-02-241-38/+5
|
* Allow multiple calls to setup_extension().Georg Brandl2009-02-241-1/+5
|
* merge with 0.5Georg Brandl2009-02-211-4/+7
|\
| * Register custom roles as local, saves system_messages which can cause ↵Georg Brandl2009-02-211-3/+3
| | | | | | | | problems e.g. in .. |abc| replace:: :role:`foo`
* | Fix the serializing and changes builders, and really test them.Georg Brandl2009-02-211-4/+8
| |
* | Fixed another of the isinstance tests that should have been issubclass. This ↵Georg Brandl2009-02-191-1/+5
| | | | | | | | doesn't make me look good...
* | Restore docutils 0.4 compatibility.Georg Brandl2009-02-191-2/+3
| |
* | Fix #106, fix #107: make _special_attrgetters an attribute of AutoDirective, ↵Georg Brandl2009-02-191-0/+4
| | | | | | | | to avoid confusion how it should be overridden in subclasses.
* | Added an ``only`` directive that can selectively include textGeorg Brandl2009-02-191-2/+6
| | | | | | | | | | | | based on enabled "tags". Tags can be given on the command line. Also, the current builder output format (e.g. "html" or "latex") is always a defined tag.
* | The HTML builder now stores a small file named ``.buildinfo`` inGeorg Brandl2009-02-191-2/+4
| | | | | | | | | | | | its output directory. It stores a hash of config values that can be used to determine if a full rebuild needs to be done (e.g. after changing ``html_theme``).
* | Convert builtin directives to classes. Refactor desc_directive so that it ↵Georg Brandl2009-02-181-4/+3
| | | | | | | | is easier to subclass.
* | There is now a ``-W`` option for sphinx-build that turns warnings into errors.Georg Brandl2009-02-171-1/+10
| | | | | | | | ^
* | Refactor autodoc so that it gets easy to add support for custom types of ↵Georg Brandl2009-02-171-5/+17
| | | | | | | | objects.
* | Add support for templated static files.Georg Brandl2009-02-151-2/+9
| |
* | Support theme zipfiles.Georg Brandl2009-02-151-0/+1
| |
* | merge with mainGeorg Brandl2009-02-141-9/+12
|\ \
| * \ merge with 0.5Georg Brandl2009-02-121-8/+11
| |\ \ | | |/
| | * Use better error messages for unsupported markup in LaTeX documents.Georg Brandl2009-02-121-8/+11
| | |
* | | merge with trunkGeorg Brandl2009-01-261-0/+3
|\ \ \ | |/ /
| * | Add add_generic_role().Georg Brandl2009-01-221-0/+3
| | |
* | | Reformat to EOL80.Georg Brandl2009-01-101-11/+20
|/ /
* | Merge in copyright style changes from 0.5.Georg Brandl2009-01-031-2/+1
|\ \ | |/
| * Switch copyright and license tags to single style. Add contributorGeorg Brandl2009-01-031-2/+2
| | | | | | | | | | names in AUTHORS instead, and add the license of etree13 to LICENSE.
* | Explicitly refer to the license in :license: tags.Georg Brandl2008-12-271-1/+1
| |
* | Merge in 0.5 bugfixes.Georg Brandl2008-12-151-4/+11
|\ \ | |/
| * Fix two issues with non-ASCII characters being written to byte streams.Georg Brandl2008-12-151-4/+11
| |
* | Add Sphinx.add_lexer().Georg Brandl2008-11-301-0/+6
| |
* | Move builders and writers into new packages.Georg Brandl2008-11-291-7/+17
|/
* Add env-purge-doc event. Add some examples for event usage.Georg Brandl2008-11-091-0/+1
|
* In linkcheck builder, return status code 1 on error, and emit warnings if -qGeorg Brandl2008-11-081-2/+14
| | | | is given.
* Fix typo.Georg Brandl2008-11-081-1/+1
|
* Use detailed version number in startup message.Georg Brandl2008-11-071-1/+2
|
* Add "source-read" event.Georg Brandl2008-10-161-0/+1
|
* silence some deprecation warningsBenjamin Peterson2008-10-041-3/+4
|
* Add math support to Sphinx.Georg Brandl2008-08-061-4/+31
|
* ``Sphinx.add_node()`` now takes optional visitor methods for the HTML,Georg Brandl2008-08-051-1/+19
| | | | | LaTeX and text translators; this prevents having to manually patch the classes.
* Merged revisions 65529 via svnmerge fromGeorg Brandl2008-08-041-12/+4
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/doctools/branches/0.4.x ........ r65529 | georg.brandl | 2008-08-04 22:19:30 +0000 (Mon, 04 Aug 2008) | 6 lines Revert r65499 which was not well thought out. Instead, put the whole build dir in exclude_trees by default in quickstart. Also, revisit application cleanup and make it consistently use less setup time while still trying to leave to traces. ........
* Merged revisions 65498-65499,65526 via svnmerge fromGeorg Brandl2008-08-041-4/+12
| | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/doctools/branches/0.4.x ........ r65498 | georg.brandl | 2008-08-04 17:07:33 +0000 (Mon, 04 Aug 2008) | 2 lines Absolutize doctreedir when parsing from commandline. ........ r65499 | georg.brandl | 2008-08-04 17:17:49 +0000 (Mon, 04 Aug 2008) | 4 lines If output and/or doctree directory are within the source directory, except them from the search for source files. ........ r65526 | georg.brandl | 2008-08-04 21:46:41 +0000 (Mon, 04 Aug 2008) | 2 lines Let the test suite run the text, linkcheck, and changes builders. ........
* Add tests for between() and cut_lines() and fix them.Georg Brandl2008-08-041-1/+1
| | | | Also fix a bug in the application interface.
* Add missing events.Georg Brandl2008-08-041-2/+4
|
* Add "env-updated" and "missing-reference" events.Georg Brandl2008-08-041-0/+6
| | | | Write inventory file as part of the HTML build.
* Add a test suite skeleton, a first test for sphinx.config, and fix a bug in ↵Georg Brandl2008-06-051-3/+5
| | | | config.
* Fix the handling of extensions' config values.Georg Brandl2008-06-041-7/+6
|
* Add html-page-context event for customizing the template context.Georg Brandl2008-05-311-1/+2
|
* Add html_short_title and html_show_sphinx config values.Georg Brandl2008-05-241-8/+5
|
* Some pylint nits.Georg Brandl2008-05-041-5/+0
|