sphinx/sphinx/config.py
2008-04-27 18:08:55 +00:00

99 lines
2.8 KiB
Python

# -*- coding: utf-8 -*-
"""
sphinx.config
~~~~~~~~~~~~~
Build configuration file handling.
:copyright: 2008 by Georg Brandl.
:license: BSD license.
"""
import os
from os import path
class Config(object):
"""Configuration file abstraction."""
# the values are: (default, needs fresh doctrees if changed)
# If you add a value here, don't forget to include it in the
# quickstart.py file template as well as in the docs!
config_values = dict(
# general substitutions
project = ('Python', True),
copyright = ('', False),
version = ('', True),
release = ('', True),
today = ('', True),
today_fmt = ('%B %d, %Y', True),
# extensibility
templates_path = ([], False),
extensions = ([], True),
# general reading options
master_doc = ('contents', True),
source_suffix = ('.rst', True),
unused_docs = ([], True),
add_function_parentheses = (True, True),
add_module_names = (True, True),
show_authors = (False, True),
pygments_style = ('sphinx', False),
template_bridge = (None, False),
# HTML options
html_title = (None, False),
html_style = ('default.css', False),
html_static_path = ([], False),
html_last_updated_fmt = ('%b %d, %Y', False),
html_use_smartypants = (True, False),
html_translator_class = (None, False),
html_sidebars = ({}, False),
html_additional_pages = ({}, False),
html_use_modindex = (True, False),
html_copy_source = (True, False),
html_use_opensearch = (False, False),
# HTML help options
htmlhelp_basename = ('pydoc', False),
# LaTeX options
latex_paper_size = ('letter', False),
latex_font_size = ('10pt', False),
latex_documents = ([], False),
latex_preamble = ('', False),
latex_appendices = ([], False),
latex_use_modindex = (True, False),
)
def __init__(self, dirname, filename):
self.values = self.config_values.copy()
config = {'__file__': path.join(dirname, filename)}
olddir = os.getcwd()
try:
os.chdir(dirname)
execfile(config['__file__'], config)
finally:
os.chdir(olddir)
self.__dict__.update(config)
def init_defaults(self):
for val in self.values:
if val not in self.__dict__:
self.__dict__[val] = self.values[val][0]
def __getitem__(self, name):
return getattr(self, name)
def __setitem__(self, name, value):
setattr(self, name, value)
def __delitem__(self, name):
delattr(self, name)
def __contains__(self, name):
return hasattr(self, name)