# nodoctest1# Numerical Sage documentation build configuration file, created by2# sphinx-quickstart on Sat Dec 6 11:08:04 2008.3#4# This file is execfile()d with the current directory set to its containing5# dir.6#7# The contents of this file are pickled, so don't put values in the namespace8# that aren't pickleable (module imports are okay, they're removed9# automatically).10#11# All configuration values have a default; values that are commented out12# serve to show the default.1314from sage_docbuild.conf import release15from sage_docbuild.conf import * # NOQA1617# Add any paths that contain custom static files (such as style sheets),18# relative to this directory to html_static_path. They are copied after the19# builtin static files, so a file named "default.css" will overwrite the20# builtin "default.css". html_common_static_path imported from sage_docbuild.conf21# contains common paths.22html_static_path = [] + html_common_static_path2324# Add small view/edit buttons.25html_theme_options.update({26'source_view_link': os.path.join(source_repository, 'blob/develop/src/doc/de/a_tour_of_sage', '{filename}'),27'source_edit_link': os.path.join(source_repository, 'edit/develop/src/doc/de/a_tour_of_sage', '{filename}'),28})2930# General information about the project.31project = "Ein Rundgang durch Sage"32name = "a_tour_of_sage"33language = 'de'3435# The name for this set of Sphinx documents. Do not include release info.36html_title = project37html_short_title = "Sage Rundgang"3839# Output file base name for HTML help builder.40htmlhelp_basename = name4142# Grouping the document tree into LaTeX files. List of tuples43# (source start file, target name, title, author, document class [howto/manual]).44latex_documents = [45("index", name + ".tex", "Ein Rundgang durch Sage",46"The Sage Development Team", "manual"),47]484950