From 0ff0a9832d28a486eea6ecdc23f211a88664b0c3 Mon Sep 17 00:00:00 2001 From: Daniel Scheffler Date: Fri, 19 Jul 2019 15:54:43 +0200 Subject: [PATCH 1/2] Updated AUTHORS.rst. Signed-off-by: Daniel Scheffler --- AUTHORS.rst | 6 ++++-- docs/conf.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index c7ff055..1fa5394 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -10,7 +10,9 @@ Karl Segl Contributors ------------ -* Daniel Scheffler (main developer of the EnPT source code) -* Niklas Bohn (main developer of the SICOR atmopsheric correction source code) +* Daniel Scheffler + (main developer of the EnPT source code) +* Niklas Bohn + (main developer of the SICOR atmopsheric correction source code) * André Hollstein * Stéphane Guillaso diff --git a/docs/conf.py b/docs/conf.py index 4507eb0..7d1ed94 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -63,7 +63,7 @@ master_doc = 'index' # General information about the project. project = u'EnPT' -copyright = u"2019, Karl Segl, Daniel Scheffler, André Hollstein, Stéphane Guillaso, Niklas Bohn" +copyright = u"2019, Karl Segl, Daniel Scheffler, Niklas Bohn, André Hollstein, Stéphane Guillaso" # The version info for the project you're documenting, acts as replacement # for |version| and |release|, also used in various other places throughout -- GitLab From 165e6a62b15e02b09aa60b3348d7f5331961eb53 Mon Sep 17 00:00:00 2001 From: Daniel Scheffler Date: Fri, 19 Jul 2019 16:09:36 +0200 Subject: [PATCH 2/2] Increased content width of generated docs. Signed-off-by: Daniel Scheffler --- docs/_static/wider_theme.css | 3 +++ docs/conf.py | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 docs/_static/wider_theme.css diff --git a/docs/_static/wider_theme.css b/docs/_static/wider_theme.css new file mode 100644 index 0000000..1e71926 --- /dev/null +++ b/docs/_static/wider_theme.css @@ -0,0 +1,3 @@ +.wy-nav-content { +max-width: 1200px !important; +} diff --git a/docs/conf.py b/docs/conf.py index 7d1ed94..1ef6989 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -119,6 +119,11 @@ pygments_style = 'sphinx' autoclass_content = 'both' +# Increase content width of generated docs +def setup(app): + app.add_stylesheet('wider_theme.css') + + # -- Options for HTML output ------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for -- GitLab