Improved documentation, added a contextmanager for request binding

This commit is contained in:
Armin Ronacher 2010-04-08 19:03:15 +02:00
parent 44b42e0fbd
commit 3b36bef2e6
4 changed files with 198 additions and 28 deletions

View file

@ -25,7 +25,7 @@ import sys, os
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['sphinx.ext.autodoc']
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx']
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
@ -234,3 +234,8 @@ latex_documents = [
# The depth of the table of contents in toc.ncx.
#epub_tocdepth = 3
intersphinx_mapping = {
'http://docs.python.org/dev': None,
'http://werkzeug.pocoo.org/documentation/dev/': None
}