~0x44/nova/bug838466

« back to all changes in this revision

Viewing changes to doc/source/conf.py

  • Committer: Monty Taylor
  • Date: 2010-07-25 01:06:22 UTC
  • mto: This revision was merged to the branch mainline in revision 166.
  • Revision ID: mordred@inaugust.com-20100725010622-ipbt3gkosheln7wg
Updated sphinx layout to a two-dir layout like swift.
Updated a doc string to get rid of a Sphinx warning.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# If extensions (or modules to document with autodoc) are in another directory,
17
17
# add these directories to sys.path here. If the directory is relative to the
18
18
# documentation root, use os.path.abspath to make it absolute, like shown here.
19
 
sys.path.append(os.path.abspath('/Users/jmckenty/Projects/cc'))
20
 
sys.path.append([os.path.abspath('../nova'),os.path.abspath('../'),os.path.abspath('../vendor')])
 
19
sys.path.append([os.path.abspath('../nova'), os.path.abspath('..'), os.path.abspath('../bin')])
21
20
 
22
21
 
23
22
# -- General configuration -----------------------------------------------------
25
24
# Add any Sphinx extension module names here, as strings. They can be extensions
26
25
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
27
26
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.pngmath', 'sphinx.ext.ifconfig']
28
 
#sphinx_to_github = False
29
27
todo_include_todos = True
30
28
 
31
29
# Add any paths that contain templates here, relative to this directory.
68
66
 
69
67
# List of directories, relative to source directory, that shouldn't be searched
70
68
# for source files.
71
 
exclude_trees = ['_build']
 
69
exclude_trees = []
72
70
 
73
71
# The reST default role (used for this markup: `text`) to use for all documents.
74
72
#default_role = None
176
174
# Grouping the document tree into LaTeX files. List of tuples
177
175
# (source start file, target name, title, author, documentclass [howto/manual]).
178
176
latex_documents = [
179
 
  ('index', 'nova.tex', u'nova Documentation',
 
177
  ('index', 'Nova.tex', u'Nova Documentation',
180
178
   u'Anso Labs, LLC', 'manual'),
181
179
]
182
180
 
199
197
 
200
198
 
201
199
# Example configuration for intersphinx: refer to the Python standard library.
202
 
intersphinx_mapping = {'http://docs.python.org/': None}
 
200
intersphinx_mapping = {'python': ('http://docs.python.org/', None),
 
201
                       'swift': ('http://swift.openstack.org', None)}
 
202