diff --git a/index.rst b/index.rst index 5a3d9cd5fc9fc23e46d5870492cfdb00bf114629..3180fefa62c07a8b726ad99c5b4417a97dcaba28 100644 --- a/index.rst +++ b/index.rst @@ -6,7 +6,7 @@ Welcome to Open Science @KM3NeT! .. toctree:: :maxdepth: 2 - Fair data <pages/FAIR> + pages/FAIR pages/ScienceTargets pages/Infrastructure pages/Detector diff --git a/make_documents.py b/make_documents.py index 9b7402ac797472db92735ec3516aafcb1fff3597..a82437590e3f1fd3d5532ff2830ce8ea053e0551 100644 --- a/make_documents.py +++ b/make_documents.py @@ -6,7 +6,7 @@ def adapt_file(filename): inline = f.readline() while inline: if inline.find("pages/")>-1 and inline.find(".md")>-1: - inline.replace(".md", ".rst") + inline.replace(".md", ".html") newversion += inline inline = f.readline() with open(filename, "w") as f: @@ -22,12 +22,14 @@ def fulltext_from_filelist(filelistname, onlystatus = "", adapt_files = True): with open(infilename, "r") as ftext: addtext = ftext.read() infotext = addtext[addtext.find("---")+3:addtext.find("---", 5)].split("\n") - status, author = "", "" + status, author, reviewer = "", "" for line in infotext: if line.find("status:")> -1: status = line[8:len(line)] if line.find("Author")> -1: author = line[8:len(line)] + f line.find("Reviewer")> -1: + reviewer = line[8:len(line)] takeit = True if onlystatus: takeit = False @@ -38,8 +40,10 @@ def fulltext_from_filelist(filelistname, onlystatus = "", adapt_files = True): fulltext += addtext[addtext.find("---", 5)+3:len(addtext)] + "\n" overview["filename"].append(infilename) overview["author"].append(author) + overview["reviewer"].append(reviewer) overview["status"].append(status) if adapt_files: + print ("Redoing file", infilename) adapt_file(infilename) infilename = f.readline().rstrip("\n") @@ -57,12 +61,13 @@ with open("Deliverable_4-9.md", "w") as f: with open("statuspage.md", "w") as f: status = "## Current page status\n\n" - status += "| Filename | Author | Status |\n" - status += "| -------- | ------ | ------ |\n" + status += "| Filename | Author | Reviewer | Status |\n" + status += "| -------- | ------ | -------- | ------ |\n" for stats in (status1, status2): for i in range(len(stats["filename"])): status += "| " + stats["filename"][i] \ + " | " + stats["author"][i] \ + + " | " + stats["reviewer"][i] \ + " | " + stats["status"][i] + " |\n" f.write(status) diff --git a/pages/Detector.md b/pages/Detector.md index 373e5921b38ef7bc6197fdb979d9300a3551ad50..dda66e1c28bcfa738e608b3541a73f7c620685ba 100644 --- a/pages/Detector.md +++ b/pages/Detector.md @@ -1,7 +1,8 @@ --- Title: Detector and Data Taking Author: Jannik -status: reviewed (Tamas) +status: reviewed +Reviewer: Tamas Comment: Mainly based on LoI --- diff --git a/pages/Infrastructure.md b/pages/Infrastructure.md index 9829e8a021503c5fb7cc3c8ac5e014f49ad9d432..2697ff50d7068fd1d5fb3d472819becbc3ed9973 100644 --- a/pages/Infrastructure.md +++ b/pages/Infrastructure.md @@ -10,7 +10,7 @@ status: review The KM3NeT Open Science System seamlessly integrates with the computing environment of the KM3NeT collaboration, providing data, software and documentation to all relevant parts of the scientific analysis workflow. - + ## Open Science Products diff --git a/pages/ScienceTargets.md b/pages/ScienceTargets.md index 92f76063a6031c2cafaf76f73d02fca78d51a8bf..51d91feaef5e7e060e7d6752b800d6721128bce7 100644 --- a/pages/ScienceTargets.md +++ b/pages/ScienceTargets.md @@ -1,7 +1,8 @@ --- Title: Scientific targets Author: Jannik -status: reviewed (Tamas) +status: reviewed +Reviewer: Tamas Comment: Mainly based on LoI and Infradev Grant Agreement --- diff --git a/pages/Usecase_KM3NeT.md b/pages/Usecase_KM3NeT.md index 04b1f53b842ec139ce4da7013cedbb9bcfb9da19..5d3609c5dce6b8f6708abd8806f32c9aa38a8cc4 100644 --- a/pages/Usecase_KM3NeT.md +++ b/pages/Usecase_KM3NeT.md @@ -5,7 +5,7 @@ Topics: - short description analysis - data description - linking to notebooks & background -status: unedited +status: draft --- # KM3NeT Use Case diff --git a/pages/Using_templates.md b/pages/Using_templates.md index c6ce54939717e639dc8f306495bccda37995c599..ec7ae04a4e68d55cc4b1134dfd67689d101b002d 100644 --- a/pages/Using_templates.md +++ b/pages/Using_templates.md @@ -6,7 +6,8 @@ Topics: - guidelines - git analysis template description - guidelines -status: reviewed (Jannik) +Reviewer: Jannik +status: reviewed --- # Using templates