diff options
| author | Chris McDonough <chrism@plope.com> | 2011-01-21 13:03:29 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-01-21 13:03:29 -0500 |
| commit | 8864e043a683f22f5ec316f17a146fedaa3373da (patch) | |
| tree | d62fafac6e8ea2efee3a4bf01db829eab0ec61bd /docs/conf.py | |
| parent | 57cc8680abf2c2bce3a8bc405277677043ffe007 (diff) | |
| download | pyramid-8864e043a683f22f5ec316f17a146fedaa3373da.tar.gz pyramid-8864e043a683f22f5ec316f17a146fedaa3373da.tar.bz2 pyramid-8864e043a683f22f5ec316f17a146fedaa3373da.zip | |
depend on intersphinx to point at Mako i18n recipe
Diffstat (limited to 'docs/conf.py')
| -rw-r--r-- | docs/conf.py | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py index dce4ef879..e48af3cbc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,8 +57,24 @@ for item in os.listdir(parent): # 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', 'sphinx.ext.doctest', - 'repoze.sphinx.autointerface'] +extensions = [ + 'sphinx.ext.autodoc', + 'sphinx.ext.doctest', + 'repoze.sphinx.autointerface', + 'sphinx.ext.intersphinx' + ] + +# Looks for objects in other Pyramid projects +intersphinx_mapping = { + 'cookbook': + ('http://docs.pylonsproject.org/projects/pyramid_cookbook/dev/', None), + 'handlers': + ('http://docs.pylonsproject.org/projects/pyramid_handlers/dev/', None), + 'zcml': + ('http://docs.pylonsproject.org/projects/pyramid_zcml/dev/', None), + 'jinja2': + ('http://docs.pylonsproject.org/projects/pyramid_jinja2/dev/', None), + } # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] |
