summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Dittberner <jan@dittberner.info>2011-10-29 22:45:43 +0200
committerJan Dittberner <jan@dittberner.info>2011-10-29 22:45:43 +0200
commit3dc1cf28b0e7c589ecf645d08e8941f0107360c1 (patch)
treef58b18a7d3853aca5eb872eaeb85d7b51cb8ee31
parent7013bfad463d125b9182486e5e910ff3053f49d3 (diff)
downloadsqalchemy-migrate-3dc1cf28b0e7c589ecf645d08e8941f0107360c1.tar.gz
update intersphinx configuration, add sphinxcontrib.issuetracker configuration
-rw-r--r--docs/conf.py12
1 files 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
# -----------------------