Ejemplo n.º 1
0
if not G.has_key('epub_author'): epub_author = t3author
if not G.has_key('epub_copyright'): epub_copyright = copyright
if not G.has_key('epub_publisher'): epub_publisher = t3author
if not G.has_key('epub_title'): epub_title = project
if not G.has_key('htmlhelp_basename'): htmlhelp_basename = t3shortname

# PART 4: Overrides from 'conf.py'

# Now we set some overrides

exclude_patterns = ['_make']
html_last_updated_fmt = '%b %d, %Y %H:%M'
html_static_path = []
html_theme = 't3SphinxThemeRtd'
html_theme_path = [t3SphinxThemeRtd.get_html_theme_path()]
pygments_style = 'sphinx'
templates_path = []
today_fmt = '%Y-%m-%d %H:%M'

# IMPORTANT SWITCH: Rendering for our server!
html_theme_options['docstypo3org'] = True

# 'published' means in the following context: Available under that
# name in the GlobalContext of Jinja2 templating. Example: if
# 'show_copyright' is in the published it can be used in the Jinja2
# template like:
#     {{ show_copyright }}

# 'html_show_copyright' is published as 'show_copyright'
html_show_copyright = True
Ejemplo n.º 2
0
#keep_warnings = False

# -- Options for HTML output -----------------------------------------------

# The theme to use for HTML and HTML Help pages.  See the documentation for
# a list of builtin themes.
html_theme = 't3SphinxThemeRtd'

# Theme options are theme-specific and customize the look and feel of a theme
# further.  For a list of options available for each theme, see the
# documentation.
#html_theme_options = {}

# Add any paths that contain custom themes here, relative to this directory.
html_theme_path = []
html_theme_path.append(t3SphinxThemeRtd.get_html_theme_path())

# The name for this set of Sphinx documents.  If None, it defaults to
# "<project> v<release> documentation".
#html_title = None

# A shorter title for the navigation bar.  Default is the same as html_title.
#html_short_title = None

# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
#html_logo = None

# The name of an image file (within the static path) to use as favicon of the
# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
# pixels large.
Ejemplo n.º 3
0

# -- Options for HTML output -----------------------------------------------

# The theme to use for HTML and HTML Help pages.  See the documentation for
# a list of builtin themes.
html_theme = 't3SphinxThemeRtd'

# Theme options are theme-specific and customize the look and feel of a theme
# further.  For a list of options available for each theme, see the
# documentation.
#html_theme_options = {}

# Add any paths that contain custom themes here, relative to this directory.
html_theme_path = []
html_theme_path.append(t3SphinxThemeRtd.get_html_theme_path())

# The name for this set of Sphinx documents.  If None, it defaults to
# "<project> v<release> documentation".
#html_title = None

# A shorter title for the navigation bar.  Default is the same as html_title.
#html_short_title = None

# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
#html_logo = None

# The name of an image file (within the static path) to use as favicon of the
# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
# pixels large.
#
#
# (4) User settings from ./Documentation/Settings.cfg
merge_settings_file(settingsabspath, US, notes)
#
#
#
#
# (5) More hardcoded settings in this conf.py file
#
us_general = US['general'] = US.get('general', {})

us_general['exclude_patterns'] = ['_make']
us_general['html_last_updated_fmt'] = '%b %d, %Y %H:%M'
us_general['html_static_path'] = []
us_general['html_theme_path'] = [t3SphinxThemeRtd.get_html_theme_path()]
us_general['templates_path'] = []
us_general['today_fmt'] = '%Y-%m-%d %H:%M'

# 'published' means in the following context: Available under that name in the
# GlobalContext of Jinja2 templating. Example: if 'show_copyright' is said to
# be published it can be used in the Jinja2 template like:
#     {{ show_copyright }}

us_html_theme_options = US['html_theme_options'] = US.get(
    'html_theme_options', {})

# no, not rendering for the server by default
us_html_theme_options['docstypo3org'] = False

# 'html_show_copyright' is published as 'show_copyright'
if not G.has_key('epub_author')      : epub_author    = t3author
if not G.has_key('epub_copyright')   : epub_copyright = copyright
if not G.has_key('epub_publisher')   : epub_publisher = t3author
if not G.has_key('epub_title')       : epub_title     = project
if not G.has_key('htmlhelp_basename'): htmlhelp_basename = t3shortname


# PART 4: Overrides from 'conf.py'

# Now we set some overrides

exclude_patterns = ['_make']
html_last_updated_fmt = '%b %d, %Y %H:%M'
html_static_path = []
html_theme = 't3SphinxThemeRtd'
html_theme_path = [ t3SphinxThemeRtd.get_html_theme_path() ]
pygments_style = 'sphinx'
templates_path = []
today_fmt = '%Y-%m-%d %H:%M'


# IMPORTANT SWITCH: Rendering for our server!
html_theme_options['docstypo3org'] = True


# 'published' means in the following context: Available under that
# name in the GlobalContext of Jinja2 templating. Example: if
# 'show_copyright' is in the published it can be used in the Jinja2
# template like:
#     {{ show_copyright }}
Ejemplo n.º 6
0
#
# (4) User settings from ./Documentation/Settings.cfg
merge_settings_file(settingsabspath, US, notes)
#
#
#
#
# (5) More hardcoded settings in this conf.py file
#
us_general = US['general'] = US.get('general', {})

us_general['exclude_patterns'] = ['_make']
us_general['html_last_updated_fmt'] = '%b %d, %Y %H:%M'
us_general['html_static_path'] = []
us_general['html_theme_path'] = [
    '_themes', t3SphinxThemeRtd.get_html_theme_path()
]
us_general['templates_path'] = []
us_general['today_fmt'] = '%Y-%m-%d %H:%M'

# 'published' means in the following context: Available under that name in the
# GlobalContext of Jinja2 templating. Example: if 'show_copyright' is said to
# be published it can be used in the Jinja2 template like:
#     {{ show_copyright }}

us_html_theme_options = US['html_theme_options'] = US.get(
    'html_theme_options', {})

# no, not rendering for the server by default
us_html_theme_options['docstypo3org'] = False