From a7bf868e2835835da55031d7e84050baffdb0da8 Mon Sep 17 00:00:00 2001 From: wekeo Date: Wed, 26 Apr 2023 09:06:35 +0200 Subject: [PATCH 1/4] removing submodules --- .gitmodules | 4 ---- frameworks | 1 - 2 files changed, 5 deletions(-) delete mode 160000 frameworks diff --git a/.gitmodules b/.gitmodules index af1cd56..e69de29 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +0,0 @@ -[submodule "frameworks"] - path = frameworks - url = https://gitlab.eumetsat.int/eumetlab/oceans/ocean-training/tools/frameworks.git - branch = main diff --git a/frameworks b/frameworks deleted file mode 160000 index 6c1a122..0000000 --- a/frameworks +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 6c1a122b776f0152a0021aec61f31683addd897d From b5a8371e81153506cc8062a7dc945a705330b710 Mon Sep 17 00:00:00 2001 From: wekeo Date: Wed, 26 Apr 2023 09:06:39 +0200 Subject: [PATCH 2/4] adding submodules --- .gitmodules | 6 ++++++ frameworks | 1 + working-with-python | 1 + 3 files changed, 8 insertions(+) create mode 160000 frameworks create mode 160000 working-with-python diff --git a/.gitmodules b/.gitmodules index e69de29..9f76b00 100644 --- a/.gitmodules +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "working-with-python"] + path = working-with-python + url = https://github.com/wekeo/working-with-python.git +[submodule "frameworks"] + path = frameworks + url = https://github.com/wekeo/frameworks.git diff --git a/frameworks b/frameworks new file mode 160000 index 0000000..6c1a122 --- /dev/null +++ b/frameworks @@ -0,0 +1 @@ +Subproject commit 6c1a122b776f0152a0021aec61f31683addd897d diff --git a/working-with-python b/working-with-python new file mode 160000 index 0000000..a7bf868 --- /dev/null +++ b/working-with-python @@ -0,0 +1 @@ +Subproject commit a7bf868e2835835da55031d7e84050baffdb0da8 From 80ab0e02d1bcca027962dc7520a0d09d3b2eb1ee Mon Sep 17 00:00:00 2001 From: wekeo Date: Wed, 26 Apr 2023 09:07:59 +0200 Subject: [PATCH 3/4] remove self-module --- .gitmodules | 3 --- working-with-python | 1 - 2 files changed, 4 deletions(-) delete mode 160000 working-with-python diff --git a/.gitmodules b/.gitmodules index 9f76b00..5a021de 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,3 @@ -[submodule "working-with-python"] - path = working-with-python - url = https://github.com/wekeo/working-with-python.git [submodule "frameworks"] path = frameworks url = https://github.com/wekeo/frameworks.git diff --git a/working-with-python b/working-with-python deleted file mode 160000 index a7bf868..0000000 --- a/working-with-python +++ /dev/null @@ -1 +0,0 @@ -Subproject commit a7bf868e2835835da55031d7e84050baffdb0da8 From 49462fb03911b6f80dce6a34f5978d83772949df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominika=20Leskow-Czy=C5=BCewska?= <58769914+dominikalc@users.noreply.github.com> Date: Fri, 10 Oct 2025 09:11:19 +0200 Subject: [PATCH 4/4] HDA does not require an url in .hdarc anymore --- api_widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api_widgets.py b/api_widgets.py index bf46ccb..836330d 100644 --- a/api_widgets.py +++ b/api_widgets.py @@ -71,7 +71,7 @@ def hda_widget(): def on_button_clicked2(b): with output: - out_string = 'url: https://wekeo-broker.apps.mercator.dpi.wekeo.eu/databroker\nuser: {box1}\npassword: {box2}' + out_string = 'user:{box1}\npassword:{box2}' out_string = out_string.format(box1 = box1.value, box2 = box2.value) out_file = os.path.join(os.path.expanduser("~"), ".hdarc")