Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sage
Path: blob/develop/src/doc/it/faq/conf.py
4086 views
1
# nodoctest
2
# Sage documentation build configuration file, 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
6
# dir.
7
#
8
# The contents of this file are pickled, so don't put values in the namespace
9
# that aren't pickleable (module imports are okay, they're removed
10
# automatically).
11
#
12
# All configuration values have a default; values that are commented out
13
# serve to show the default.
14
15
from sage_docbuild.conf import release
16
from sage_docbuild.conf import *
17
18
# Add any paths that contain custom static files (such as style sheets),
19
# relative to this directory to html_static_path. They are copied after the
20
# builtin static files, so a file named "default.css" will overwrite the
21
# builtin "default.css". html_common_static_path imported from sage_docbuild.conf
22
# contains common paths.
23
html_static_path = [] + html_common_static_path
24
25
# Add small view/edit buttons.
26
html_theme_options.update({
27
'source_view_link': os.path.join(source_repository, 'blob/develop/src/doc/it/faq', '{filename}'),
28
'source_edit_link': os.path.join(source_repository, 'edit/develop/src/doc/it/faq', '{filename}'),
29
})
30
31
# General information about the project.
32
project = "Sage FAQ"
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 = "faq"
40
41
# Grouping the document tree into LaTeX files. List of tuples
42
# (source start file, target name, title, author, document class
43
# [howto/manual]).
44
latex_documents = [
45
("index", "faq.tex", "Sage FAQ",
46
"The Sage Development Team", "manual"),
47
]
48
49