Release 0.6.4 (in development) ============================== * #294: do not ignore an explicit ``today`` config value in a LaTeX build. * The ``alt`` text of inheritance diagrams is now much cleaner. * Ignore images in section titles when generating link captions. * #310: support exception messages in the ``testoutput`` blocks of the ``doctest`` extension. * #293: line blocks are styled properly in HTML output. * #285: make the ``locale_dirs`` config value work again. * #303: ``html_context`` values given on the command line via ``-A`` should not override other values given in conf.py. * Fix a bug preventing incremental rebuilds for the ``dirhtml`` builder. * #299: Fix the mangling of quotes in some literal blocks. * #292: Fix path to the search index for the ``dirhtml`` builder. * Fix a Jython compatibility issue: make the dependence on the ``parser`` module optional. * #238: In autodoc, catch all errors that occur on module import, not just ``ImportError``. * Fix the handling of non-data, but non-method descriptors in autodoc. * When copying file times, ignore OSErrors raised by ``os.utime()``. Release 0.6.3 (Sep 03, 2009) ============================ * Properly add C module filenames as dependencies in autodoc. * #253: Ignore graphviz directives without content instead of raising an unhandled exception. * #241: Fix a crash building LaTeX output for documents that contain a todolist directive. * #252: Make it easier to change the build dir in the Makefiles generated by quickstart. * #220: Fix CSS so that displaymath really is centered. * #222: Allow the "Footnotes" header to be translated. * #225: Don't add whitespace in generated HTML after inline tags. * #227: Make ``literalinclude`` work when the document's path name contains non-ASCII characters. * #229: Fix autodoc failures with members that raise errors on ``getattr()``. * #205: When copying files, don't copy full stat info, only modification times. * #232: Support non-ASCII metadata in Qt help builder. * Properly format bullet lists nested in definition lists for LaTeX. * Section titles are now allowed inside ``only`` directives. * #201: Make ``centered`` directive work in LaTeX output. * #206: Refuse to overwrite an existing master document in sphinx-quickstart. * #208: Use MS-sanctioned locale settings, determined by the ``language`` config option, in the HTML help builder. * #210: Fix nesting of HTML tags for displayed math from pngmath extension. * #213: Fix centering of images in LaTeX output. * #211: Fix compatibility with docutils 0.5. Release 0.6.2 (Jun 16, 2009) ============================ * #130: Fix obscure IndexError in doctest extension. * #167: Make glossary sorting case-independent. * #196: Add a warning if an extension module doesn't have a ``setup()`` function. * #158: Allow '..' in template names, and absolute template paths; Jinja 2 by default disables both. * When highlighting Python code, ignore extra indentation before trying to parse it as Python. * #191: Don't escape the tilde in URIs in LaTeX. * Don't consider contents of source comments for the search index. * Set the default encoding to ``utf-8-sig`` to handle files with a UTF-8 BOM correctly. * #178: apply ``add_function_parentheses`` config value to C functions as promised. * #173: Respect the docutils ``title`` directive. * #172: The ``obj`` role now links to modules as promised. * #19: Tables now can have a "longtable" class, in order to get correctly broken into pages in LaTeX output. * Look for Sphinx message catalogs in the system default path before trying ``sphinx/locale``. * Fix the search for methods via "classname.methodname". * #155: Fix Python 2.4 compatibility: exceptions are old-style classes there. * #150: Fix display of the "sphinxdoc" theme on Internet Explorer versions 6 and 7. * #146: Don't fail to generate LaTeX when the user has an active ``.docutils`` configuration. * #29: Don't generate visible "-{-}" in option lists in LaTeX. * Fix cross-reference roles when put into substitutions. * Don't put image "alt" text into table-of-contents entries. * In the LaTeX writer, do not raise an exception on too many section levels, just use the "subparagraph" level for all of them. * #145: Fix autodoc problem with automatic members that refuse to be getattr()'d from their parent. * If specific filenames to build are given on the command line, check that they are within the source directory. * Fix autodoc crash for objects without a ``__name__``. * Fix intersphinx for installations without urllib2.HTTPSHandler. * #134: Fix pending_xref leftover nodes when using the todolist directive from the todo extension. Release 0.6.1 (Mar 26, 2009) ============================ * #135: Fix problems with LaTeX output and the graphviz extension. * #132: Include the autosummary "module" template in the distribution. Release 0.6 (Mar 24, 2009) ========================== New features added ------------------ * Incompatible changes: - Templating now requires the Jinja2 library, which is an enhanced version of the old Jinja1 engine. Since the syntax and semantic is largely the same, very few fixes should be necessary in custom templates. - The "document" div tag has been moved out of the ``layout.html`` template's "document" block, because the closing tag was already outside. If you overwrite this block, you need to remove your "document" div tag as well. - The ``autodoc_skip_member`` event now also gets to decide whether to skip members whose name starts with underscores. Previously, these members were always automatically skipped. Therefore, if you handle this event, add something like this to your event handler to restore the old behavior:: if name.startswith('_'): return True * Theming support, see the new section in the documentation. * Markup: - Due to popular demand, added a ``:doc:`` role which directly links to another document without the need of creating a label to which a ``:ref:`` could link to. - #4: Added a ``:download:`` role that marks a non-document file for inclusion into the HTML output and links to it. - Added an ``only`` directive that can selectively include text 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. - #10: Added HTML section numbers, enabled by giving a ``:numbered:`` flag to the ``toctree`` directive. - #114: Added an ``abbr`` role to markup abbreviations and acronyms. - The ``literalinclude`` directive now supports several more options, to include only parts of a file. - The ``toctree`` directive now supports a ``:hidden:`` flag, which will prevent links from being generated in place of the directive -- this allows you to define your document structure, but place the links yourself. - #123: The ``glossary`` directive now supports a ``:sorted:`` flag that sorts glossary entries alphabetically. - Paths to images, literal include files and download files can now be absolute (like ``/images/foo.png``). They are treated as relative to the top source directory. - #52: There is now a ``hlist`` directive, creating a compact list by placing distributing items into multiple columns. - #77: If a description environment with info field list only contains one ``:param:`` entry, no bullet list is generated. - #6: Don't generate redundant ``