From: Pieter De Praetere Date: Sun, 17 Jan 2021 15:08:27 +0000 (+0100) Subject: Add first set of stands X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a761af6c78869667f3d2067adcedbe3836925d19;p=stands-website.git Add first set of stands --- diff --git a/.gitmodules b/.gitmodules index b9704ec..db8e79e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,10 +1,10 @@ [submodule "content/stands/checkmk"] -path = content/stands/checkmk -url = https://github.com/tribe29/checkmk-fosdem-content.git + path = content/stands/checkmk + url = https://github.com/tribe29/checkmk-fosdem-content.git [submodule "static/stands/checkmk"] -path = static/stands/checkmk -url = https://github.com/tribe29/checkmk-fosdem-static.git + path = static/stands/checkmk + url = https://github.com/tribe29/checkmk-fosdem-static.git [submodule "content/stands/free_software_foundation_europe"] path = content/stands/free_software_foundation_europe @@ -15,24 +15,24 @@ path = static/stands/free_software_foundation_europe url = https://git.fsfe.org/FSFE/fosdem21-static.git [submodule "content/stands/kiwi_tcms"] -path = content/stands/kiwi_tcms -url = https://github.com/kiwitcms/fosdem-2021-stand-content.git + path = content/stands/kiwi_tcms + url = https://github.com/kiwitcms/fosdem-2021-stand-content.git [submodule "static/stands/kiwi_tcms"] -path = static/stands/kiwi_tcms -url = https://github.com/kiwitcms/fosdem-2021-stand-static.git + path = static/stands/kiwi_tcms + url = https://github.com/kiwitcms/fosdem-2021-stand-static.git [submodule "content/stands/pharo"] -path = content/stands/pharo -url = https://github.com/pharo-divulgation/pharo-fosdem-content.git + path = content/stands/pharo + url = https://github.com/pharo-divulgation/pharo-fosdem-content.git [submodule "static/stands/pharo"] -path = static/stands/pharo -url = https://github.com/pharo-divulgation/pharo-fosdem-static.git + path = static/stands/pharo + url = https://github.com/pharo-divulgation/pharo-fosdem-static.git [submodule "static/stands/postgresql"] -path = static/stands/postgresql -url = https://git.postgresql.org/git/fosdem2021-static.git + path = static/stands/postgresql + url = https://git.postgresql.org/git/fosdem2021-static.git [submodule "content/stands/postgresql"] path = content/stands/postgresql diff --git a/content/stands/.gitkeep b/content/stands/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/content/stands/checkmk b/content/stands/checkmk new file mode 160000 index 0000000..33d3c4b --- /dev/null +++ b/content/stands/checkmk @@ -0,0 +1 @@ +Subproject commit 33d3c4b65f4b36a69c7f18ead2674af2d3eae498 diff --git a/content/stands/kiwi_tcms b/content/stands/kiwi_tcms new file mode 160000 index 0000000..529ca40 --- /dev/null +++ b/content/stands/kiwi_tcms @@ -0,0 +1 @@ +Subproject commit 529ca406a33b4f2845fe1d783ae2aeea035f446b diff --git a/content/stands/pharo b/content/stands/pharo new file mode 160000 index 0000000..3a2612c --- /dev/null +++ b/content/stands/pharo @@ -0,0 +1 @@ +Subproject commit 3a2612c1e3deb44befcbfe288ba876a7ec3cfaac diff --git a/scripts/submodules b/scripts/submodules new file mode 100644 index 0000000..d9e31d1 --- /dev/null +++ b/scripts/submodules @@ -0,0 +1,10 @@ +content/stands/checkmk https://github.com/tribe29/checkmk-fosdem-content.git +static/stands/checkmk https://github.com/tribe29/checkmk-fosdem-static.git +content/stands/free_software_foundation_europe https://git.fsfe.org/FSFE/fosdem21-content.git +static/stands/free_software_foundation_europe https://git.fsfe.org/FSFE/fosdem21-static.git +content/stands/kiwi_tcms https://github.com/kiwitcms/fosdem-2021-stand-content.git +static/stands/kiwi_tcms https://github.com/kiwitcms/fosdem-2021-stand-static.git +content/stands/pharo https://github.com/pharo-divulgation/pharo-fosdem-content.git +static/stands/pharo https://github.com/pharo-divulgation/pharo-fosdem-static.git +static/stands/postgresql https://git.postgresql.org/git/fosdem2021-static.git +content/stands/postgresql https://git.postgresql.org/git/fosdem2021-content.git \ No newline at end of file diff --git a/scripts/submodules.sh b/scripts/submodules.sh new file mode 100755 index 0000000..6437f4d --- /dev/null +++ b/scripts/submodules.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +while read submodule; do + path=$(echo "$submodule" | awk '{print $1}') + url=$(echo "$submodule" | awk '{print $2}') + git submodule add "$url" "$path" +done