summaryrefslogtreecommitdiff
path: root/sphinx
Commit message (Collapse)AuthorAgeFilesLines
* Update version and release date.0.6.5Georg Brandl2010-03-011-2/+2
|
* In autodoc, fix the omission of some module members explicitly documented ↵Georg Brandl2010-02-281-7/+7
| | | | using documentation comments.
* Fix references to methods without a module.Georg Brandl2010-02-281-0/+2
|
* Revert revision 0530a8aaaa9a; it does not work if dependent files are involved.Georg Brandl2010-02-281-2/+2
|
* #345: Fix cropping of sidebar scroll bar with ``stickysidebar``Georg Brandl2010-02-281-1/+2
| | | | option of the default theme.
* #341: Always generate UNIX newlines in the quickstart Makefile.Georg Brandl2010-02-271-1/+2
|
* mergeGeorg Brandl2010-02-232-2/+7
|\
| * #338: Fix running with ``-C`` under Windows.Georg Brandl2010-02-231-0/+5
| |
| * store actual file modification time instead of now()anatoly techtonik2010-02-231-2/+2
| |
* | In autodoc, allow customizing the signature of an object via ↵Georg Brandl2010-02-211-10/+8
| | | | | | | | autodoc-process-signature where the built-in mechanism fails.
* | #331: Fix output for enumerated lists with start values in LaTeX.Georg Brandl2010-02-191-0/+2
|/
* Allow auto-detecting "docs" as sphinx source dir.Georg Brandl2010-02-071-6/+10
|
* Make the ``start-after`` and ``end-before`` options to the ↵Georg Brandl2010-01-301-2/+2
| | | | ``literalinclude`` directive work correctly if not used together.
* Consistently id-escape all hypertarget names.Georg Brandl2010-01-171-4/+6
|
* Consistent escaping also of docname targets.Georg Brandl2010-01-171-2/+4
|
* #321: Fix link generation in the LaTeX builder -- target names need to be ↵Georg Brandl2010-01-171-2/+4
| | | | escaped in references as well as definitions.
* #288: fix bottom margin of paragraphs in admonitions.Georg Brandl2010-01-171-0/+12
|
* Prepare for release 0.6.4.0.6.4Georg Brandl2010-01-121-2/+2
|
* Remove Python 2.5ism and undefined local access.Georg Brandl2010-01-122-6/+7
|
* Fix typo.Georg Brandl2010-01-121-1/+1
|
* Improve the handling of non-Unicode strings in the configuration:Georg Brandl2010-01-125-3/+39
| | | | | warn about non-ascii bytestrings, and give nicer messages if unicode errors occur.
* #316: catch "broken pipe" OSErrors when communicating with graphviz; get ↵Georg Brandl2010-01-122-6/+18
| | | | stdout/stderr anyway. This happens e.g. when dot does not support the selected output format.
* #315: update bug reporting information.Georg Brandl2010-01-121-3/+6
|
* Fix long line.Georg Brandl2010-01-071-1/+2
|
* Remove unused variable.Georg Brandl2010-01-061-1/+0
|
* Restore compatibility with Pygments >= 1.2.Georg Brandl2010-01-062-6/+11
|
* Remove unused statement.Georg Brandl2010-01-061-1/+0
|
* #295: Fix escaping of hyperref targets in LaTeX output.Georg Brandl2010-01-061-2/+5
|
* #302: Fix links generated by the ``:doc:`` role for LaTeX output.Georg Brandl2010-01-032-9/+10
| | | | | | For that, record the source docname in an xfileref node in node['refdoc']. The LaTeX builder creates one big toctree out of all documents, therefore "fromdocname" in resolve_references refers to the wrong file.
* #286: collect todo nodes after the whole document has been read; this allows ↵Georg Brandl2010-01-031-8/+20
| | | | placing substitution references in todo items.
* #294: do not ignore an explicit ``today`` config value in a LaTeX build.Georg Brandl2010-01-031-2/+5
|
* The ``alt`` text of inheritance diagrams is now much cleaner:Georg Brandl2010-01-032-6/+9
| | | | it's not the graphviz code but a description "Inheritance diagram of ...".
* Ignore images in section titles when generating link captions.Georg Brandl2010-01-032-5/+13
| | | | | (Otherwise, the "alt" text leaks into the caption, and docutils automatically assigns an alt text to images in substitutions.)
* Fix a traceback when the whole module name is stripped by a prefix in ↵Georg Brandl2010-01-031-0/+4
| | | | modindex_common_prefix.
* #287: add better background color for <tt> in warnings and notes.Georg Brandl2010-01-021-0/+8
|
* #310: support exception messages in the ``testoutput`` blocks of the ↵Georg Brandl2010-01-021-0/+7
| | | | | | ``doctest`` extension. Also add minimal test cases for the doctest extension.
* #293: line blocks are styled properly in HTML output.Georg Brandl2010-01-021-0/+12
|
* #285: make the ``locale_dirs`` config value work again.Georg Brandl2010-01-021-1/+1
|
* IE apparently does not like href=""; change this to href="#" which appears ↵Georg Brandl2010-01-022-2/+3
| | | | to work.
* Happy new year!Georg Brandl2010-01-0159-59/+59
|
* #303: ``html_context`` values given on the command line via ``-A``Georg Brandl2009-12-311-3/+1
| | | | should not override other values given in conf.py.
* #308: allow "double" as alias for "pair" in index entries.Georg Brandl2009-12-301-1/+3
|
* Fix a bug preventing incremental rebuilds for the ``dirhtml`` builder -- theGeorg Brandl2009-12-291-2/+1
| | | | target file name wasn't determined portably between HTML builders.
* Fix for commit 41cb9d297064.Georg Brandl2009-12-281-3/+4
|
* Fix bug replacing 2 by its errno constant.Georg Brandl2009-12-281-2/+2
|
* #299: Fix the mangling of quotes in "include:: :literal:" blocks.Georg Brandl2009-12-241-0/+6
|
* #292: Fix path to the search index for the ``dirhtml`` builder.Georg Brandl2009-12-241-1/+1
|
* #301: use errno values from errno module.Georg Brandl2009-12-244-8/+11
|
* #238: In autodoc, catch all errors that occur on module import,Georg Brandl2009-11-081-1/+3
| | | | not just ``ImportError``.
* Change the name of mathbase.setup() so that putting it in extensions doesn't ↵Georg Brandl2009-11-083-3/+3
| | | | fail with an obscure TypeError.