From 011c6f10300beb88ca2765f4552c3bfdcfc01802 Mon Sep 17 00:00:00 2001 From: Enrico Daga Date: Fri, 2 Jun 2023 21:26:20 +0200 Subject: [PATCH] Update content #77 --- _data/repositories.yml | 6 ----- .../_polifonia-project/dashboard/README.md | 6 +++-- .../registry_app/dataset.md | 25 ------------------- .../registry_app/interface.md | 22 ---------------- generate-repo-data.sh | 13 +++++----- 5 files changed, 11 insertions(+), 61 deletions(-) delete mode 100644 content/_polifonia-project/registry_app/dataset.md delete mode 100644 content/_polifonia-project/registry_app/interface.md diff --git a/_data/repositories.yml b/_data/repositories.yml index efea5a89..ec71a7a2 100644 --- a/_data/repositories.yml +++ b/_data/repositories.yml @@ -202,9 +202,3 @@ url: "http://github.com/smashub/choco" link: "http://github.com/smashub/choco/blob/main/" raw_link: "https://raw.githubusercontent.com/smashub/choco/main/" -- repo: "" - type: "" - version: "" - url: "http://github.com/" - link: "http://github.com//blob//" - raw_link: "https://raw.githubusercontent.com///" diff --git a/content/_polifonia-project/dashboard/README.md b/content/_polifonia-project/dashboard/README.md index 42bb9d64..0b377234 100644 --- a/content/_polifonia-project/dashboard/README.md +++ b/content/_polifonia-project/dashboard/README.md @@ -1,5 +1,6 @@ --- -component-id: melody +component-id: melody-software +type: WebApplication name: MELODY description: MELODY is a dashboarding system for designing and publishing data stories based on Linked Open Data. work-package: @@ -12,13 +13,14 @@ release-number: v0.1.1 release-link: https://github.com/polifonia-project/dashboard/releases/latest doi: 10.5281/zenodo.6637345 changelog: https://github.com/polifonia-project/dashboard/releases/latest -licence: +license: - IscLicense contributors: - Marilena Daquino - Giulia Renda --- + # Polifonia Dashboard [![DOI](https://zenodo.org/badge/431529042.svg)](https://zenodo.org/badge/latestdoi/431529042) diff --git a/content/_polifonia-project/registry_app/dataset.md b/content/_polifonia-project/registry_app/dataset.md deleted file mode 100644 index e412af07..00000000 --- a/content/_polifonia-project/registry_app/dataset.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -component-id: musoW -name: musoW -description: musoW is a Linked Open Data registry of music resources available on the web. -type: Dataset -release-date: 2021-10-27 -release-number: latest -work-package: WP1 -keywords: - - crowdsourcing - - linked open data - - registry - - music data -licence: CC0 -release link: https://github.com/polifonia-project/registry_app/releases/latest -demo: https://projects.dharc.unibo.it/musow/ -running-instance: https://projects.dharc.unibo.it/musow/ -credits: Marilena Daquino (UNIBO), Enrico Daga (OU), Albert Merono Penuela (KCL), Paul Mulholland (OU), Simon Holland (OU), Mathieu d'Aquin (NUIG) ---- - -# musoW - -musoW, music data on the web is a Linked Open Data registry of music resources available on the web. It includes extensive descriptions of more that 500 music collections, datasets, digital libraries and software solutions relevant to music. - -See the [online catalogue](https://w3id.org/musow/) diff --git a/content/_polifonia-project/registry_app/interface.md b/content/_polifonia-project/registry_app/interface.md deleted file mode 100644 index 1b3422a4..00000000 --- a/content/_polifonia-project/registry_app/interface.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -component-id: musoW_website -name: musoW website -description: The web interface to explore and contribute to the dataset musoW, music data on the web -type: UserInterface -release-date: 2021-10-27 -release-number: latest -work-package: WP1 -keywords: - - crowdsourcing - - linked open data - - registry - - music data -licence: CC0 -release link: https://github.com/polifonia-project/registry_app/releases/latest -demo: https://projects.dharc.unibo.it/musow/ -running-instance: https://projects.dharc.unibo.it/musow/ -credits: Marilena Daquino (UNIBO) -related-components: - - musoW - - clef ---- diff --git a/generate-repo-data.sh b/generate-repo-data.sh index 2b7a250b..214d545c 100755 --- a/generate-repo-data.sh +++ b/generate-repo-data.sh @@ -2,18 +2,19 @@ rm _data/repositories.yml while IFS= read -r line; do + [ "$line" ] || continue # IN="$line" arrIN=(${IN//:/ }) repo=${arrIN[0]} treetype=${arrIN[1]} version=${arrIN[2]} - echo "Text read from file: $line" - echo "repo: $repo" - echo "type: $treetype" - echo "version: $version" - echo "http://github.com/"$repo"/tree/"$version - echo "https://raw.githubusercontent.com/"$repo"/"$version"/" + echo "Generate repo data: $line" + #echo "repo: $repo" + #echo "type: $treetype" + #echo "version: $version" + #echo "http://github.com/"$repo"/tree/"$version + #echo "https://raw.githubusercontent.com/"$repo"/"$version"/" echo "- repo: \"$repo\"" >> _data/repositories.yml echo " type: \"$treetype\"" >> _data/repositories.yml echo " version: \"$version\"" >> _data/repositories.yml