~justin-fathomdb/nova/justinsb-openstack-api-volumes

« back to all changes in this revision

Viewing changes to vendor/boto/docs/source/conf.py

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
 
 
3
import sys, os
 
4
 
 
5
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'sphinx.ext.todo']
 
6
templates_path = ['_templates']
 
7
source_suffix = '.rst'
 
8
master_doc = 'index'
 
9
project = u'boto'
 
10
copyright = u'2009,2010, Mitch Garnaat'
 
11
version = '1.9'
 
12
exclude_trees = []
 
13
pygments_style = 'sphinx'
 
14
html_theme = 'boto_theme'
 
15
html_theme_path = ["."]
 
16
html_static_path = ['_static']
 
17
htmlhelp_basename = 'botodoc'
 
18
latex_documents = [
 
19
  ('index', 'boto.tex', u'boto Documentation',
 
20
   u'Mitch Garnaat', 'manual'),
 
21
]
 
22
intersphinx_mapping = {'http://docs.python.org/': None}
 
23
 
 
24
try:
 
25
    release = os.environ.get('SVN_REVISION', 'HEAD')
 
26
    print release
 
27
except Exception, e:
 
28
    print e
 
29
 
 
30
html_title = "boto v%s (r%s)" % (version, release)