merge with 0.6

This commit is contained in:
Georg Brandl 2009-05-03 10:33:08 +02:00
commit 297ceab686
3 changed files with 15 additions and 1 deletions

View File

@ -8,4 +8,4 @@ sphinx/pycode/Grammar.*pickle
Sphinx.egg-info/
doc/_build/
TAGS
.ropeproject/
\.ropeproject/

View File

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

View File

@ -1271,6 +1271,17 @@ class LaTeXTranslator(nodes.NodeVisitor):
def depart_decoration(self, node):
pass
# docutils-generated elements that we don't support
def visit_header(self, node):
raise nodes.SkipNode
def visit_footer(self, node):
raise nodes.SkipNode
def visit_docinfo(self, node):
raise nodes.SkipNode
# text handling
def encode(self, text):