From 62b04e07ec49191484d186babe32709873a09890 Mon Sep 17 00:00:00 2001 From: Tobias Bengfort Date: Wed, 17 Aug 2022 18:38:27 +0200 Subject: [PATCH 1/3] add section on installation we got the feedback that people were searching for this here --- source/overview.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/overview.rst b/source/overview.rst index 654ad57..da4a234 100644 --- a/source/overview.rst +++ b/source/overview.rst @@ -71,3 +71,9 @@ before adding a new feature to Castellum: Rather than applying these questions as strict rules we try to balance them within the process of reaching a decision. + +Installation +------------ + +Full installation instructions are available in the `project repository +`_. -- GitLab From 4affeb33190cb9013d485bfff3a5eccab8a05cfd Mon Sep 17 00:00:00 2001 From: Tobias Bengfort Date: Wed, 17 Aug 2022 18:38:49 +0200 Subject: [PATCH 2/3] add links to other relevant places --- source/overview.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/source/overview.rst b/source/overview.rst index da4a234..5550651 100644 --- a/source/overview.rst +++ b/source/overview.rst @@ -77,3 +77,10 @@ Installation Full installation instructions are available in the `project repository `_. + +Contact +------- + +- Contact: castellum@mpib-berlin.mpg.de +- Source code: https://git.mpib-berlin.mpg.de/castellum/castellum/ +- End-user documentation: https://castellum.mpib.berlin/documentation/en/ -- GitLab From 362445d391c75924981eb9f9a58ae7f00f599988 Mon Sep 17 00:00:00 2001 From: Tobias Bengfort Date: Wed, 17 Aug 2022 18:39:03 +0200 Subject: [PATCH 3/3] add "edit on gitlab" links another way to direct people to our gitlab server --- source/conf.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/source/conf.py b/source/conf.py index d0f9cae..1fadf4b 100644 --- a/source/conf.py +++ b/source/conf.py @@ -66,4 +66,12 @@ html_js_files = [ html_css_files = [ 'custom.css', -] \ No newline at end of file +] + +html_context = { + 'display_gitlab': True, + 'gitlab_host': 'git.mpib-berlin.mpg.de', + 'gitlab_user': 'castellum', + 'gitlab_repo': 'documentation', + 'gitlab_version': 'main/source/', +} -- GitLab