~ubuntu-branches/ubuntu/utopic/python-chaco/utopic

« back to all changes in this revision

Viewing changes to docs/source/conf.py

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2011-04-06 19:03:54 UTC
  • mfrom: (7.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110406190354-rwd55l2ezjecfo41
Tags: 3.4.0-2
d/rules: fix pyshared directory path (Closes: #621116)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
extensions = ['sphinx.ext.autodoc', 'traitsdoc']
27
27
 
28
28
# Add any paths that contain templates here, relative to this directory.
29
 
templates_path = ['.templates']
 
29
templates_path = ['_templates']
30
30
 
31
31
# The suffix of source filenames.
32
32
source_suffix = '.rst'
41
41
# The default replacements for |version| and |release|, also used in various
42
42
# other places throughout the built documents.
43
43
#
44
 
# The short X.Y version.
45
 
version = '3.0.0'
46
 
# The full version, including alpha/beta/rc tags.
47
 
release = '3.0.0'
 
44
# Pull from the actual release number in setup_data
 
45
sys.path.insert(0, os.path.join('..', '..'))
 
46
from setup_data import INFO
 
47
version = release = INFO['version']
48
48
 
49
49
# There are two options for replacing |today|: either, you set today to some
50
50
# non-false value, then it is used:
94
94
 
95
95
# The name of an image file (within the static path) to place at the top of
96
96
# the sidebar.
97
 
html_logo = '.static/e-logo-rev.png'
 
97
html_logo = '_static/e-logo-rev.png'
98
98
 
99
99
# The name of an image file (within the static path) to use as favicon of the
100
100
# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
104
104
# Add any paths that contain custom static files (such as style sheets) here,
105
105
# relative to this directory. They are copied after the builtin static files,
106
106
# so a file named "default.css" will overwrite the builtin "default.css".
107
 
html_static_path = ['.static']
 
107
html_static_path = ['_static']
108
108
 
109
109
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
110
110
# using the given strftime format.