X-Git-Url: https://scripts.mit.edu/gitweb/wizard.git/blobdiff_plain/cd3bb88429f0020b4d9db0f773d72c9cb64cfbfd..8dde079390e247a0e1084151eafa3d3f356f8d78:/doc/conf.py diff --git a/doc/conf.py b/doc/conf.py index f477c2e..0d1ca14 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -24,7 +24,15 @@ sys.path.append(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.coverage', 'sphinx.ext.doctest'] +extensions = [ + 'sphinx.ext.autodoc', + 'sphinx.ext.coverage', + 'sphinx.ext.doctest', + 'sphinx.ext.graphviz', + 'sphinx.ext.intersphinx', + 'sphinx.ext.todo', + 'wizard.sphinx.supplement', + ] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -40,7 +48,7 @@ master_doc = 'index' # General information about the project. project = u'Wizard' -copyright = u'2009, the Student Information Processing Board' +copyright = u'2009-2010, the Wizard development team' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -89,7 +97,7 @@ pygments_style = 'sphinx' #modindex_common_prefix = [] # Classes to ignore for coverage reporting -coverage_ignore_classes = ['ProductionCopy', 'WorkingCopy'] +coverage_ignore_classes = ['ProductionCopy', 'WorkingCopy', 'Dialog', 'Prompt', 'FailPrompt'] # -- Options for HTML output --------------------------------------------------- @@ -98,6 +106,8 @@ coverage_ignore_classes = ['ProductionCopy', 'WorkingCopy'] # Sphinx are currently 'default' and 'sphinxdoc'. html_theme = 'default' +html_style = 'wizard.css' + # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. @@ -197,3 +207,10 @@ latex_documents = [ # If false, no module index is generated. #latex_use_modindex = True + +intersphinx_mapping = { + 'http://docs.python.org/dev': None, + 'http://www.sqlalchemy.org/docs/05': None, + } + +todo_include_todos = True