From 3dc1cf28b0e7c589ecf645d08e8941f0107360c1 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Sat, 29 Oct 2011 22:45:43 +0200 Subject: update intersphinx configuration, add sphinxcontrib.issuetracker configuration --- docs/conf.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index c528b2f..47596af 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -28,10 +28,12 @@ sys.path.append(os.path.dirname(os.path.abspath('.'))) # 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.intersphinx'] +extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'sphinxcontrib.issuetracker'] # link to sqlalchemy docs -intersphinx_mapping = {'http://www.sqlalchemy.org/docs/06/': None} +intersphinx_mapping = { + 'sqlalchemy': ('http://www.sqlalchemy.org/docs/', None), + 'python': ('http://docs.python.org/2.7', None)} # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -92,6 +94,12 @@ exclude_trees = ['_build'] # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' +# Options for sphinxcontrib.issuetracker +# -------------------------------------- + +issuetracker = 'google code' +issuetracker_project = 'sqlalchemy-migrate' + # Options for HTML output # ----------------------- -- cgit v1.2.1