aboutsummaryrefslogtreecommitdiffstats
path: root/doc/build/conf.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-01-21 18:38:52 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2012-01-21 18:38:52 -0500
commit8109f791e190dc9c500d7238090db7197220ff58 (patch)
treef3b8e10bd0a5b1c78164d37251955d8f80be369f /doc/build/conf.py
parent3e6981c9754c6813450c55e1c511a84c9bb6766d (diff)
downloadexternal_python_mako-8109f791e190dc9c500d7238090db7197220ff58.tar.gz
external_python_mako-8109f791e190dc9c500d7238090db7197220ff58.tar.bz2
external_python_mako-8109f791e190dc9c500d7238090db7197220ff58.zip
- [feature] Added support for Beaker cache regions
in templates. Usage of regions should be considered as superseding the very obsolete idea of passing in backend options, timeouts, etc. within templates. - rewrite the cache docs again which had a lot of misleading/inaccurate info.
Diffstat (limited to 'doc/build/conf.py')
-rw-r--r--doc/build/conf.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/build/conf.py b/doc/build/conf.py
index 43c29eb..508b316 100644
--- a/doc/build/conf.py
+++ b/doc/build/conf.py
@@ -30,7 +30,7 @@ import mako
#extensions = ['sphinx.ext.autodoc', 'sphinx.ext.viewcode',
# 'sphinx.ext.doctest', 'builder.builders']
-extensions = ['sphinx.ext.autodoc',
+extensions = ['sphinx.ext.autodoc','sphinx.ext.intersphinx',
'sphinx.ext.doctest', 'builder.builders']
# Add any paths that contain templates here, relative to this directory.
@@ -280,3 +280,8 @@ epub_copyright = u'Mako authors'
# Allow duplicate toc entries.
#epub_tocdup = True
+
+intersphinx_mapping = {
+ 'dogpile.cache':('http://dogpilecache.readthedocs.org/en/latest', None),
+ 'beaker':('http://beaker.readthedocs.org/en/latest',None),
+}