├── .project ├── README.md ├── dcat-ap_version_1.1.pdf ├── dev ├── .gitignore ├── catalog-v001.xml ├── shapeview.app │ ├── Readme.md │ ├── shapeview.ui.ttlx │ └── shapeview.www │ │ ├── css │ │ └── shapeview.css │ │ └── js │ │ └── shapeview.js └── xslt │ ├── dcat-ap.shacl.rdf │ ├── geodcat-ap.shacl.rdf │ └── shacl2html.xsl ├── documentation ├── index.html └── index_files │ ├── OpenAjax.js │ ├── app.js │ ├── bootstrap-tour.js │ ├── bootstrap.js │ ├── chosen.css │ ├── chosen.js │ ├── contextmenu-styles.css │ ├── grid.js │ ├── jquery-deparam.js │ ├── jquery-ui.css │ ├── jquery-ui.js │ ├── jquery.css │ ├── jquery.js │ ├── jquery_002.css │ ├── jquery_002.js │ ├── jquery_003.css │ ├── jquery_003.js │ ├── jquery_004.js │ ├── jquery_005.js │ ├── jquery_006.js │ ├── jquery_007.js │ ├── jquery_008.js │ ├── jqueryui-styles.css │ ├── jstree-styles.css │ ├── jstree.js │ ├── slick.js │ ├── style.css │ ├── swa.css │ ├── swa.js │ ├── swaspin.css │ ├── swaspin.js │ ├── ui.css │ └── user.js ├── resources ├── ADMS_SKOS_v1.00.rdf ├── continents-skos-ap-act.rdf ├── corporatebodies-skos-ap-act.rdf ├── countries-skos-ap-act.rdf ├── data-theme-skos-ap-act.rdf ├── filetypes-skos-ap-act.rdf ├── frequencies-skos-ap-act.rdf ├── languages-skos-ap-act.rdf └── places-skos-ap-act.rdf ├── shacl ├── dcat-ap-mandatory-classes.shapes.ttl ├── dcat-ap-mdr-vocabularies.shapes.ttl └── dcat-ap.shapes.ttl └── test ├── adms-random.test.ttl ├── adms-random.ttl ├── catalogue-1.test.ttl ├── catalogue-1.ttl ├── catalogue-optional.test.ttl ├── catalogue-optional.ttl ├── catalogue.test.ttl ├── catalogue.ttl ├── datatype-disjunction.test.ttl ├── datatype-disjunction.ttl ├── dcat-random.test.ttl ├── dcat-random.ttl ├── mdrcv1.test.ttl └── mdrcv1.ttl /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/.project -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/README.md -------------------------------------------------------------------------------- /dcat-ap_version_1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/dcat-ap_version_1.1.pdf -------------------------------------------------------------------------------- /dev/.gitignore: -------------------------------------------------------------------------------- 1 | /catalog-v001.xml 2 | -------------------------------------------------------------------------------- /dev/catalog-v001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/dev/catalog-v001.xml -------------------------------------------------------------------------------- /dev/shapeview.app/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/dev/shapeview.app/Readme.md -------------------------------------------------------------------------------- /dev/shapeview.app/shapeview.ui.ttlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/dev/shapeview.app/shapeview.ui.ttlx -------------------------------------------------------------------------------- /dev/shapeview.app/shapeview.www/css/shapeview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/dev/shapeview.app/shapeview.www/css/shapeview.css -------------------------------------------------------------------------------- /dev/shapeview.app/shapeview.www/js/shapeview.js: -------------------------------------------------------------------------------- 1 | // JavaScript file of the TopBraid Default Application 2 | 3 | var shapeview = { 4 | }; 5 | -------------------------------------------------------------------------------- /dev/xslt/dcat-ap.shacl.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/dev/xslt/dcat-ap.shacl.rdf -------------------------------------------------------------------------------- /dev/xslt/geodcat-ap.shacl.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/dev/xslt/geodcat-ap.shacl.rdf -------------------------------------------------------------------------------- /dev/xslt/shacl2html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/dev/xslt/shacl2html.xsl -------------------------------------------------------------------------------- /documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index.html -------------------------------------------------------------------------------- /documentation/index_files/OpenAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/OpenAjax.js -------------------------------------------------------------------------------- /documentation/index_files/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/app.js -------------------------------------------------------------------------------- /documentation/index_files/bootstrap-tour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/bootstrap-tour.js -------------------------------------------------------------------------------- /documentation/index_files/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/bootstrap.js -------------------------------------------------------------------------------- /documentation/index_files/chosen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/chosen.css -------------------------------------------------------------------------------- /documentation/index_files/chosen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/chosen.js -------------------------------------------------------------------------------- /documentation/index_files/contextmenu-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/contextmenu-styles.css -------------------------------------------------------------------------------- /documentation/index_files/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/grid.js -------------------------------------------------------------------------------- /documentation/index_files/jquery-deparam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/jquery-deparam.js -------------------------------------------------------------------------------- /documentation/index_files/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/jquery-ui.css -------------------------------------------------------------------------------- /documentation/index_files/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/jquery-ui.js -------------------------------------------------------------------------------- /documentation/index_files/jquery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/jquery.css -------------------------------------------------------------------------------- /documentation/index_files/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/jquery.js -------------------------------------------------------------------------------- /documentation/index_files/jquery_002.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/jquery_002.css -------------------------------------------------------------------------------- /documentation/index_files/jquery_002.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/jquery_002.js -------------------------------------------------------------------------------- /documentation/index_files/jquery_003.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/jquery_003.css -------------------------------------------------------------------------------- /documentation/index_files/jquery_003.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/jquery_003.js -------------------------------------------------------------------------------- /documentation/index_files/jquery_004.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/jquery_004.js -------------------------------------------------------------------------------- /documentation/index_files/jquery_005.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/jquery_005.js -------------------------------------------------------------------------------- /documentation/index_files/jquery_006.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/jquery_006.js -------------------------------------------------------------------------------- /documentation/index_files/jquery_007.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/jquery_007.js -------------------------------------------------------------------------------- /documentation/index_files/jquery_008.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/jquery_008.js -------------------------------------------------------------------------------- /documentation/index_files/jqueryui-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/jqueryui-styles.css -------------------------------------------------------------------------------- /documentation/index_files/jstree-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/jstree-styles.css -------------------------------------------------------------------------------- /documentation/index_files/jstree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/jstree.js -------------------------------------------------------------------------------- /documentation/index_files/slick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/slick.js -------------------------------------------------------------------------------- /documentation/index_files/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/style.css -------------------------------------------------------------------------------- /documentation/index_files/swa.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/swa.css -------------------------------------------------------------------------------- /documentation/index_files/swa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/swa.js -------------------------------------------------------------------------------- /documentation/index_files/swaspin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/swaspin.css -------------------------------------------------------------------------------- /documentation/index_files/swaspin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/swaspin.js -------------------------------------------------------------------------------- /documentation/index_files/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/ui.css -------------------------------------------------------------------------------- /documentation/index_files/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/documentation/index_files/user.js -------------------------------------------------------------------------------- /resources/ADMS_SKOS_v1.00.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/resources/ADMS_SKOS_v1.00.rdf -------------------------------------------------------------------------------- /resources/continents-skos-ap-act.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/resources/continents-skos-ap-act.rdf -------------------------------------------------------------------------------- /resources/corporatebodies-skos-ap-act.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/resources/corporatebodies-skos-ap-act.rdf -------------------------------------------------------------------------------- /resources/countries-skos-ap-act.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/resources/countries-skos-ap-act.rdf -------------------------------------------------------------------------------- /resources/data-theme-skos-ap-act.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/resources/data-theme-skos-ap-act.rdf -------------------------------------------------------------------------------- /resources/filetypes-skos-ap-act.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/resources/filetypes-skos-ap-act.rdf -------------------------------------------------------------------------------- /resources/frequencies-skos-ap-act.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/resources/frequencies-skos-ap-act.rdf -------------------------------------------------------------------------------- /resources/languages-skos-ap-act.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/resources/languages-skos-ap-act.rdf -------------------------------------------------------------------------------- /resources/places-skos-ap-act.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/resources/places-skos-ap-act.rdf -------------------------------------------------------------------------------- /shacl/dcat-ap-mandatory-classes.shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/shacl/dcat-ap-mandatory-classes.shapes.ttl -------------------------------------------------------------------------------- /shacl/dcat-ap-mdr-vocabularies.shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/shacl/dcat-ap-mdr-vocabularies.shapes.ttl -------------------------------------------------------------------------------- /shacl/dcat-ap.shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/shacl/dcat-ap.shapes.ttl -------------------------------------------------------------------------------- /test/adms-random.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/test/adms-random.test.ttl -------------------------------------------------------------------------------- /test/adms-random.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/test/adms-random.ttl -------------------------------------------------------------------------------- /test/catalogue-1.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/test/catalogue-1.test.ttl -------------------------------------------------------------------------------- /test/catalogue-1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/test/catalogue-1.ttl -------------------------------------------------------------------------------- /test/catalogue-optional.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/test/catalogue-optional.test.ttl -------------------------------------------------------------------------------- /test/catalogue-optional.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/test/catalogue-optional.ttl -------------------------------------------------------------------------------- /test/catalogue.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/test/catalogue.test.ttl -------------------------------------------------------------------------------- /test/catalogue.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/test/catalogue.ttl -------------------------------------------------------------------------------- /test/datatype-disjunction.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/test/datatype-disjunction.test.ttl -------------------------------------------------------------------------------- /test/datatype-disjunction.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/test/datatype-disjunction.ttl -------------------------------------------------------------------------------- /test/dcat-random.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/test/dcat-random.test.ttl -------------------------------------------------------------------------------- /test/dcat-random.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/test/dcat-random.ttl -------------------------------------------------------------------------------- /test/mdrcv1.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/test/mdrcv1.test.ttl -------------------------------------------------------------------------------- /test/mdrcv1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEMICeu/dcat-ap_shacl/HEAD/test/mdrcv1.ttl --------------------------------------------------------------------------------