Merge bugfix from 0.5.

This commit is contained in:
Georg Brandl 2008-12-08 08:57:46 +01:00
commit 1d00f4a487
4 changed files with 11 additions and 5 deletions

View File

@ -24,12 +24,15 @@ New features added
Release 0.5.1 (in development)
==============================
* Fix a bug when including images in sources in subdirectories.
* Fix LaTeX writer output for images with specified height.
* Fix wrong generated image path when including images in sources
in subdirectories.
* Fix the JavaScript search when html_copy_source is off.
* Fix a bug in autodoc when documenting classes with the option.
``autoclass_content = "both"`` set.
* Fix an indentation problem in autodoc when documenting classes
with the option ``autoclass_content = "both"`` set.
* Don't crash on empty index entries, only emit a warning.

View File

@ -750,7 +750,8 @@ class LaTeXTranslator(nodes.NodeVisitor):
include_graphics_options.append('width=%s' % w)
if attrs.has_key('height'):
h = self.latex_image_length(attrs['height'])
include_graphics_options.append('height=%s' % h)
if h:
include_graphics_options.append('height=%s' % h)
if attrs.has_key('align'):
align_prepost = {
# By default latex aligns the top of an image.

View File

@ -9,6 +9,8 @@ Sphinx image handling
.. an image with path name (relative to this directory!)
.. image:: subdir/img.png
:height: 100
:width: 200
.. an image with unspecified extension
.. image:: img.*

View File

@ -28,7 +28,7 @@ latex_warnfile = StringIO()
ENV_WARNINGS = """\
WARNING: %(root)s/images.txt:9: Image file not readable: foo.png
WARNING: %(root)s/images.txt:21: Nonlocal image URI found: http://www.python.org/logo.png
WARNING: %(root)s/images.txt:23: Nonlocal image URI found: http://www.python.org/logo.png
WARNING: %(root)s/includes.txt:: (WARNING/2) Encoding 'utf-8' used for reading included \
file u'wrongenc.inc' seems to be wrong, try giving an :encoding: option
"""