Commit Graph

403 Commits

Author SHA1 Message Date
Georg Brandl
762741244d #444: Re-escape result of the "striptags" jinja filter. 2010-06-13 19:50:04 +02:00
Georg Brandl
08285e6a50 Prepare for 0.6.7 release. 2010-06-05 18:42:11 +02:00
Georg Brandl
6ab7cd4ab7 #432: Fix UnicodeErrors while building LaTeX in translated locale; do not swallow UnicodeError as a warning. 2010-06-05 18:37:16 +02:00
Georg Brandl
2a8b6f44c7 #428: Add some missing CSS styles for standard docutils classes. 2010-06-05 18:33:04 +02:00
Georg Brandl
b50e09e33e Fix a bug that prevented some references being generated in the LaTeX builder. 2010-06-05 18:30:43 +02:00
Georg Brandl
8c7e288129 #440: Remove usage of a Python >= 2.5 API in the `literalinclude` directive.
CodecInfo is not a namedtuple, so accessing attributes on 2.4 fails.
2010-06-05 18:27:43 +02:00
Georg Brandl
d1bf155cfe Post release update. 2010-05-25 01:13:29 +02:00
Georg Brandl
4a796be021 Prepare for 0.6.6 release. 2010-05-25 00:53:40 +02:00
Georg Brandl
d94b46ad9f Handle raw nodes in the `text` writer. 2010-05-24 15:25:47 +02:00
Georg Brandl
c3c6bba214 Fix a problem the Qt help project generated by the `qthelp` builder that would lead to no content being displayed in the Qt Assistant.
The "namespace" may not contain any non-alphanumeric or non-dot characters, it seems.

Also make the help collection file a bit more pretty.
2010-05-23 16:18:30 +02:00
Georg Brandl
c41f516dda #393: Fix the usage of Unicode characters in mathematic formulas when using the `pngmath` extension. 2010-05-22 14:33:24 +02:00
Georg Brandl
529d3f5329 #404: Make `\and work properly in the author field of the latex_documents` setting. 2010-05-22 14:15:39 +02:00
Georg Brandl
015c1c13a5 #409: Make the `highlight_language` config value work properly in the LaTeX builder. 2010-05-22 11:07:15 +02:00
Georg Brandl
be23bc91da #418: Allow relocation of the translation JavaScript files to the system directory on Unix systems.
Patch by Toshio Kuratomi.
2010-05-22 10:52:53 +02:00
Georg Brandl
cbf309fa65 #414: fix universal newline handling of files included with "literalinclude".
codecs.open() does not support U in the mode argument; use the EncodedFile wrapper instead.
2010-05-22 10:49:42 +02:00
Georg Brandl
f5d52fa4f4 #377: Fix crash in linkcheck builder if all parent nodes have no line number set. 2010-04-18 09:55:38 +02:00
Georg Brandl
2c8e51a17b merge 2010-04-17 12:57:15 +02:00
Georg Brandl
83b57d738d #387: Fix the display of search results in `dirhtml` output. 2010-04-17 12:43:36 +02:00
Georg Brandl
992526def0 #376: In autodoc, fix display of parameter defaults containing backslashes. 2010-04-07 11:45:36 +02:00
Georg Brandl
d66a6c4512 #370: complex arguments in list \item[] need to be enclosed in braces. 2010-04-06 19:06:43 +02:00
Georg Brandl
dea29d0f11 #374: Make the `doctest_path` config value of the doctest extension actually work -- it was used after all tests were run. 2010-04-06 13:22:52 +02:00
Georg Brandl
0ca72d4199 Fix the handling of multiple toctrees when creating the global TOC for the `toctree()` template function.
Fix the handling of hidden toctrees when creating the global TOC for the ``toctree()`` template function.
2010-04-06 09:12:22 +02:00
Georg Brandl
0f76788c57 Fix the handling of nested lists in the text writer.
The list counter needs to be a stack, to be able to handle nested lists.
2010-04-06 08:46:27 +02:00
Georg Brandl
f12991c93e #362: In autodoc, check for the existence of `__self__` on function objects before accessing it. 2010-04-04 18:52:29 +02:00
Georg Brandl
e8fe8584e4 #353: Strip leading and trailing whitespace when extracting search words in the search function. 2010-04-04 18:40:06 +02:00
Georg Brandl
02d6640df3 Update version info for next development. 2010-03-01 23:28:25 +01:00
Georg Brandl
e9fe355ecd Update version and release date. 2010-03-01 23:12:59 +01:00
Georg Brandl
030f4c451b In autodoc, fix the omission of some module members explicitly documented using documentation comments. 2010-02-28 15:20:11 +01:00
Georg Brandl
fbc2c113ee #345: Fix cropping of sidebar scroll bar with `stickysidebar`
option of the default theme.
2010-02-28 09:45:28 +01:00
Georg Brandl
23cec21823 #341: Always generate UNIX newlines in the quickstart Makefile. 2010-02-27 22:54:31 +01:00
Georg Brandl
ee990c87f5 merge 2010-02-23 21:36:07 +01:00
Georg Brandl
b24e6d55e3 #338: Fix running with `-C` under Windows. 2010-02-23 21:35:48 +01:00
Georg Brandl
686824997d In autodoc, allow customizing the signature of an object via autodoc-process-signature where the built-in mechanism fails. 2010-02-21 22:59:53 +01:00
Georg Brandl
b2c79111f8 #331: Fix output for enumerated lists with start values in LaTeX. 2010-02-19 10:45:04 +01:00
Georg Brandl
4688518d8d Make the `start-after and end-before options to the literalinclude` directive work correctly if not used together. 2010-01-30 18:49:42 +01:00
Georg Brandl
8fc4896801 #321: Fix link generation in the LaTeX builder -- target names need to be escaped in references as well as definitions. 2010-01-17 14:17:23 +01:00
Georg Brandl
872062f93b Prepare for release 0.6.4. 2010-01-12 20:55:59 +00:00
Georg Brandl
43d08313a0 Improve the handling of non-Unicode strings in the configuration:
warn about non-ascii bytestrings, and give nicer messages if unicode errors
occur.
2010-01-12 10:45:38 +00:00
Georg Brandl
c8321d3020 #316: catch "broken pipe" OSErrors when communicating with graphviz; get stdout/stderr anyway. This happens e.g. when dot does not support the selected output format. 2010-01-12 09:55:07 +00:00
Georg Brandl
975e0175cc Restore compatibility with Pygments >= 1.2. 2010-01-06 15:42:13 +01:00
Georg Brandl
4c47d2d8e2 #295: Fix escaping of hyperref targets in LaTeX output. 2010-01-06 11:48:25 +01:00
Georg Brandl
9d15d3f654 #302: Fix links generated by the `:doc:` role for LaTeX output.
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.
2010-01-03 16:03:08 +01:00
Georg Brandl
dcabce9f78 #286: collect todo nodes after the whole document has been read; this allows placing substitution references in todo items. 2010-01-03 12:36:21 +01:00
Georg Brandl
7b09f95cfa #294: do not ignore an explicit `today` config value in a LaTeX build. 2010-01-03 12:20:54 +01:00
Georg Brandl
b9294de041 The `alt` text of inheritance diagrams is now much cleaner:
it's not the graphviz code but a description "Inheritance diagram of ...".
2010-01-03 11:47:46 +01:00
Georg Brandl
0b70a32efe Ignore images in section titles when generating link captions.
(Otherwise, the "alt" text leaks into the caption, and docutils automatically
assigns an alt text to images in substitutions.)
2010-01-03 11:42:15 +01:00
Georg Brandl
f4da14806c #310: support exception messages in the `testoutput blocks of the doctest` extension.
Also add minimal test cases for the doctest extension.
2010-01-02 14:59:27 +01:00
Georg Brandl
f7b0d4c9c3 #293: line blocks are styled properly in HTML output. 2010-01-02 00:47:57 +01:00
Georg Brandl
297b2c7663 #285: make the `locale_dirs` config value work again. 2010-01-02 00:39:55 +01:00
Georg Brandl
096725922a #303: `html_context values given on the command line via -A`
should not override other values given in conf.py.
2009-12-31 09:47:56 +01:00