Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sage
Path: blob/develop/src/doc/de/tutorial/conf.py
4086 views
1
# nodoctest
2
# Sage documentation build configuration file, based on that created by
3
# sphinx-quickstart on Thu Aug 21 20:15:55 2008.
4
#
5
# This file is execfile()d with the current directory set to its containing dir.
6
#
7
# The contents of this file are pickled, so don't put values in the namespace
8
# that aren't pickleable (module imports are okay, they're removed automatically).
9
#
10
# All configuration values have a default; values that are commented out
11
# serve to show the default.
12
13
from sage_docbuild.conf import release
14
from sage_docbuild.conf import * # NOQA
15
16
# Add any paths that contain custom static files (such as style sheets),
17
# relative to this directory to html_static_path. They are copied after the
18
# builtin static files, so a file named "default.css" will overwrite the
19
# builtin "default.css". html_common_static_path imported from sage_docbuild.conf
20
# contains common paths.
21
html_static_path = [] + html_common_static_path
22
23
# Add small view/edit buttons.
24
html_theme_options.update({
25
'source_view_link': os.path.join(source_repository, 'blob/develop/src/doc/de/tutorial', '{filename}'),
26
'source_edit_link': os.path.join(source_repository, 'edit/develop/src/doc/de/tutorial', '{filename}'),
27
})
28
29
# General information about the project.
30
project = "Sage Tutorial"
31
name = 'SageTutorial-de'
32
language = "de"
33
34
# The name for this set of Sphinx documents. Do not include release info.
35
html_title = project
36
html_short_title = project
37
38
# Output file base name for HTML help builder.
39
htmlhelp_basename = name
40
41
# Grouping the document tree into LaTeX files. List of tuples
42
# (source start file, target name, title, author, document class [howto/manual]).
43
latex_documents = [
44
('index', name+'.tex', project,
45
'The Sage Group', 'manual'),
46
]
47
48