From afab5a384ee18a33fdb8235ca0c52f5a9031b6e3 Mon Sep 17 00:00:00 2001 From: Harshvardhan Pandit Date: Sun, 4 Dec 2022 23:34:27 +0000 Subject: [PATCH] Adds links to published v1 reports Note, the reports aren't published yet, but submitted in PR. Assumption is that the URLs will work correctly when the PR is accepted. --- README.md | 16 ++++++ documentation-generator/open_html_all.sh | 65 +++++++++++++----------- 2 files changed, 51 insertions(+), 30 deletions(-) diff --git a/README.md b/README.md index 2a53ec0c1..8a32a6463 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,22 @@ Releases are provided through the GitHub feature at [https://github.com/w3c/dpv/ - dpv-owl (`dpv-owl.zip`) : DPV serialised using OWL2 semantics - dpv (`dpv.xlsx`) : DPV's terms provided in a spreadsheet +### Final Reports + +The following vocabularies are being published as v1 and final reports of the group: + +- Primer [w3c/cg-reports link](https://www.w3.org/community/reports/dpvcg/CG-FINAL-primer-20221205) +- DPV [w3c/cg-reports link](https://www.w3.org/community/reports/dpvcg/CG-FINAL-dpv-20221205) +- DPV-GDPR [w3c/cg-reports link](https://www.w3.org/community/reports/dpvcg/CG-FINAL-dpv-gdpr-20221205) +- DPV-PD [w3c/cg-reports link](https://www.w3.org/community/reports/dpvcg/CG-FINAL-dpv-pd-20221205) +- DPV-OWL [w3c/cg-reports link](https://www.w3.org/community/reports/dpvcg/CG-FINAL-dpv-owl-20221205) +- DPV-OWL-GDPR [w3c/cg-reports link](https://www.w3.org/community/reports/dpvcg/CG-FINAL-dpv-owl-gdpr-20221205) +- DPV-OWL-PD [w3c/cg-reports link](https://www.w3.org/community/reports/dpvcg/CG-FINAL-dpv-owl-pd-20221205) +- Guide on using DPV in OWL2 [w3c/cg-reports link](https://www.w3.org/community/reports/dpvcg/CG-FINAL-guide-dpv-owl-20221006) +- DPV-SKOS [w3c/cg-reports link](https://www.w3.org/community/reports/dpvcg/CG-FINAL-dpv-skos-20221205) +- DPV-SKOS-GDPR [w3c/cg-reports link](https://www.w3.org/community/reports/dpvcg/CG-FINAL-dpv-skos-gdpr-20221205) +- DPV-SKOS-PD [w3c/cg-reports link](https://www.w3.org/community/reports/dpvcg/CG-FINAL-dpv-skos-pd-20221205) + ## DPV Family of Documents **Core documents:** diff --git a/documentation-generator/open_html_all.sh b/documentation-generator/open_html_all.sh index 59a3a3521..32fcf86e9 100755 --- a/documentation-generator/open_html_all.sh +++ b/documentation-generator/open_html_all.sh @@ -3,8 +3,9 @@ # This script will open all DPV HTML documents in the browser # for a visual inspection of contents. +# It can open the live versions; OR # The script assumes there's a server running on localhost:8000 -# from the root directory +# from the root directory (if not, change the localhost) # The easiest way to do this is using python3 -m http.server if [[ "$OSTYPE" == "linux-gnu"* ]]; then @@ -13,40 +14,44 @@ elif [[ "$OSTYPE" == "darwin"* ]]; then COMMAND=open fi +## Choose Mode for live or local version +# MODE="https://w3id.org/dpv" +MODE="http://localhost:8000" + FILES=( # core specs - "http://localhost:8000/dpv" - "http://localhost:8000/dpv-gdpr" - "http://localhost:8000/dpv-pd" - "http://localhost:8000/dpv-legal" - "http://localhost:8000/dpv-tech" - "http://localhost:8000/risk" - "http://localhost:8000/rights" - "http://localhost:8000/rights/eu" + "$MODE/dpv" + "$MODE/dpv-gdpr" + "$MODE/dpv-pd" + "$MODE/dpv-legal" + "$MODE/dpv-tech" + "$MODE/risk" + "$MODE/rights" + "$MODE/rights/eu" # dpv-skos - "http://localhost:8000/dpv-skos/" - "http://localhost:8000/dpv-skos/dpv-gdpr" - "http://localhost:8000/dpv-skos/dpv-pd" - "http://localhost:8000/dpv-skos/dpv-legal" - "http://localhost:8000/dpv-skos/dpv-tech" - "http://localhost:8000/dpv-skos/risk" - "http://localhost:8000/dpv-skos/rights" - "http://localhost:8000/dpv-skos/rights/eu" + "$MODE/dpv-skos/" + "$MODE/dpv-skos/dpv-gdpr" + "$MODE/dpv-skos/dpv-pd" + "$MODE/dpv-skos/dpv-legal" + "$MODE/dpv-skos/dpv-tech" + "$MODE/dpv-skos/risk" + "$MODE/dpv-skos/rights" + "$MODE/dpv-skos/rights/eu" # dpv-owl - "http://localhost:8000/dpv-owl" - "http://localhost:8000/dpv-owl/dpv-gdpr" - "http://localhost:8000/dpv-owl/dpv-pd" - "http://localhost:8000/dpv-owl/dpv-legal" - "http://localhost:8000/dpv-owl/dpv-tech" - "http://localhost:8000/dpv-owl/risk" - "http://localhost:8000/dpv-owl/rights" - "http://localhost:8000/dpv-owl/rights/eu" + "$MODE/dpv-owl" + "$MODE/dpv-owl/dpv-gdpr" + "$MODE/dpv-owl/dpv-pd" + "$MODE/dpv-owl/dpv-legal" + "$MODE/dpv-owl/dpv-tech" + "$MODE/dpv-owl/risk" + "$MODE/dpv-owl/rights" + "$MODE/dpv-owl/rights/eu" # misc - "http://localhost:8000/primer" - "http://localhost:8000/use-cases" - "http://localhost:8000/examples" - "http://localhost:8000/guides" - "http://localhost:8000/guides/dpv-owl.html" + "$MODE/primer" + "$MODE/use-cases" + "$MODE/examples" + "$MODE/guides" + "$MODE/guides/dpv-owl.html" ) for i in "${!FILES[@]}"