Changeset: 11e2f063b41b for MonetDB URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=11e2f063b41b Added Files: .readthedocs.yml documentation/conf.py Removed Files: documentation/conf.py.in documentation/source/conf.py Branch: Oct2020 Log Message:
Attempt to build on readthedocs diffs (110 lines): diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,14 @@ +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: documentation/conf.py + +# Optionally build your docs in additional formats such as PDF +formats: + - pdf diff --git a/documentation/conf.py.in b/documentation/conf.py rename from documentation/conf.py.in rename to documentation/conf.py --- a/documentation/conf.py.in +++ b/documentation/conf.py @@ -16,7 +16,7 @@ # -- Project information ----------------------------------------------------- -project = 'monetdbe' +project = 'MonetDB' copyright = '2020, MonetDB Solutions' author = '' @@ -48,9 +48,9 @@ master_doc = 'index' # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -#html_theme = 'alabaster' -html_theme = '@SPHINX_THEME@' -html_theme_path = ['@SPHINX_THEME_DIR@'] +html_theme = 'alabaster' +# html_theme = '@SPHINX_THEME@' +# html_theme_path = ['@SPHINX_THEME_DIR@'] # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, @@ -58,3 +58,4 @@ html_theme_path = ['@SPHINX_THEME_DIR@'] #html_static_path = ['_static'] htmlhelp_basename = 'MonetDB' +smartquotes = False diff --git a/documentation/source/conf.py b/documentation/source/conf.py deleted file mode 100644 --- a/documentation/source/conf.py +++ /dev/null @@ -1,54 +0,0 @@ -# Configuration file for the Sphinx documentation builder. -# -# This file only contains a selection of the most common options. For a full -# list see the documentation: -# https://www.sphinx-doc.org/en/master/usage/configuration.html - -# -- Path setup -------------------------------------------------------------- - -# If extensions (or modules to document with autodoc) are in another directory, -# add these directories to sys.path here. If the directory is relative to the -# documentation root, use os.path.abspath to make it absolute, like shown here. -# -# import os -# import sys -# sys.path.insert(0, os.path.abspath('.')) - - -# -- Project information ----------------------------------------------------- - -project = 'MonetDB' -copyright = '2020, MonetDB B.V.' -author = 'Panagiotis Koutsourakis' - - -# -- General configuration --------------------------------------------------- - -# Add any Sphinx extension module names here, as strings. They can be -# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom -# ones. -extensions = [ -] - -# Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] - -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -# This pattern also affects html_static_path and html_extra_path. -exclude_patterns = [] - - -# -- 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 = 'alabaster' - -# Add any paths that contain custom static files (such as style sheets) here, -# relative to this directory. They are copied after the builtin static files, -# so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] - -smartquotes=False _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
