merge with 0.6

This commit is contained in:
Georg Brandl 2009-05-10 20:59:55 +02:00
commit a07daf48cf
7 changed files with 18 additions and 18 deletions

View File

@ -17,6 +17,9 @@ Release 1.0 (in development)
Release 0.6.2 (in development)
==============================
* #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.

View File

@ -9,7 +9,7 @@ all: clean-pyc check test
check:
@$(PYTHON) utils/check_sources.py -i sphinx/style/jquery.js \
-i sphinx/pycode/pgen2 -i sphinx/util/smartypants.py \
-i doc/_build -i ez_setup.py -i tests/path.py .
-i doc/_build -i ez_setup.py -i tests/path.py -i tests/coverage.py .
clean: clean-pyc clean-patchfiles

View File

@ -5,15 +5,6 @@
/* -- main layout ----------------------------------------------------------- */
div.documentwrapper {
float: left;
width: 100%;
}
div.bodywrapper {
margin: 0 0 0 230px;
}
div.clearer {
clear: both;
}

View File

@ -20,6 +20,15 @@ div.document {
background-color: {{ theme_sidebarbgcolor }};
}
div.documentwrapper {
float: left;
width: 100%;
}
div.bodywrapper {
margin: 0 0 0 230px;
}
div.body {
background-color: {{ theme_bgcolor }};
color: {{ theme_textcolor }};

View File

@ -25,10 +25,6 @@ body {
min-width: 740px;
}
div.documentwrapper {
float: none;
}
div.document {
background-color: white;
text-align: left;

View File

@ -472,10 +472,11 @@ class HTMLTranslator(BaseTranslator):
u'title="%s">\u00B6</a>' %
_('Permalink to this headline'))
elif close_tag.startswith('</a></h'):
self.body.append(u'</a><a class="headerlink" href="#%s" ' % aname +
self.body.append(u'</a><a class="headerlink" href="#%s" ' %
aname +
u'title="%s">\u00B6' %
_('Permalink to this headline'))
BaseTranslator.depart_title(self, node)
def unknown_visit(self, node):

View File

@ -111,8 +111,8 @@ def test_inline():
def test_latex_escaping():
# correct escaping in normal mode
yield verify, u'Γ\\\\∞$', None, \
ur'\(\Gamma\)\textbackslash{}\(\infty\)\$'
yield (verify, u'Γ\\\\∞$', None,
ur'\(\Gamma\)\textbackslash{}\(\infty\)\$')
# in verbatim code fragments
yield (verify, u'::\n\n\\∞$[]', None,
u'\\begin{Verbatim}[commandchars=@\\[\\]]\n'