| Index: third_party/gsutil/boto/docs/source/conf.py
|
| diff --git a/third_party/gsutil/20110627/boto/docs/source/conf.py b/third_party/gsutil/boto/docs/source/conf.py
|
| similarity index 89%
|
| rename from third_party/gsutil/20110627/boto/docs/source/conf.py
|
| rename to third_party/gsutil/boto/docs/source/conf.py
|
| index 459c44fbe5825550b2115cfb48daceacac9ade2c..fa1d0c2442087b06fc9d743b40063cdf97a0eea5 100644
|
| --- a/third_party/gsutil/20110627/boto/docs/source/conf.py
|
| +++ b/third_party/gsutil/boto/docs/source/conf.py
|
| @@ -1,6 +1,7 @@
|
| # -*- coding: utf-8 -*-
|
|
|
| -import sys, os
|
| +import os
|
| +import boto
|
|
|
| extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'sphinx.ext.todo']
|
| autoclass_content="both"
|
| @@ -9,7 +10,7 @@ source_suffix = '.rst'
|
| master_doc = 'index'
|
| project = u'boto'
|
| copyright = u'2009,2010, Mitch Garnaat'
|
| -version = '2.0'
|
| +version = boto.__version__
|
| exclude_trees = []
|
| pygments_style = 'sphinx'
|
| html_theme = 'boto_theme'
|
| @@ -28,4 +29,4 @@ try:
|
| except Exception, e:
|
| print e
|
|
|
| -html_title = "boto v%s (r%s)" % (version, release)
|
| +html_title = "boto v%s" % version
|
|
|