Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(464)

Side by Side Diff: third_party/gsutil/20110627/boto/docs/source/conf.py

Issue 10199002: Upgrade gsutil to 3.4 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed comments Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # -*- coding: utf-8 -*-
2
3 import sys, os
4
5 extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'sphinx.ext.todo']
6 autoclass_content="both"
7 templates_path = ['_templates']
8 source_suffix = '.rst'
9 master_doc = 'index'
10 project = u'boto'
11 copyright = u'2009,2010, Mitch Garnaat'
12 version = '2.0'
13 exclude_trees = []
14 pygments_style = 'sphinx'
15 html_theme = 'boto_theme'
16 html_theme_path = ["."]
17 html_static_path = ['_static']
18 htmlhelp_basename = 'botodoc'
19 latex_documents = [
20 ('index', 'boto.tex', u'boto Documentation',
21 u'Mitch Garnaat', 'manual'),
22 ]
23 intersphinx_mapping = {'http://docs.python.org/': None}
24
25 try:
26 release = os.environ.get('SVN_REVISION', 'HEAD')
27 print release
28 except Exception, e:
29 print e
30
31 html_title = "boto v%s (r%s)" % (version, release)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698