├── .gitignore ├── CLAUDE.md ├── LICENSE ├── README.md ├── demo ├── city-graph │ ├── Makefile │ ├── admin │ │ ├── clear-ontologies.sh │ │ └── model │ │ │ └── add-classes.sh │ ├── create-charts.sh │ ├── create-containers.sh │ ├── files │ │ └── copenhagen │ │ │ ├── bicycle-parkings.csv │ │ │ ├── charging-stations.csv │ │ │ ├── libraries.csv │ │ │ ├── parking-facilities.csv │ │ │ ├── places.csv │ │ │ ├── playgrounds.csv │ │ │ ├── public-toilets.csv │ │ │ ├── schools.csv │ │ │ └── sports-centers.csv │ ├── import-csv.sh │ ├── imports.csv │ ├── install.sh │ ├── queries │ │ ├── charts │ │ │ └── parking-facilities-by-spaces.rq │ │ └── imports │ │ │ └── copenhagen │ │ │ ├── bicycle-parkings.rq │ │ │ ├── charging-stations.rq │ │ │ ├── libraries.rq │ │ │ ├── parking-facilities.rq │ │ │ ├── places.rq │ │ │ ├── playgrounds.rq │ │ │ ├── public-toilets.rq │ │ │ ├── schools.rq │ │ │ └── sports-centers.rq │ ├── root.ttl │ ├── screenshot.png │ └── update-documents.sh ├── northwind-traders │ ├── Makefile │ ├── admin │ │ ├── clear-ontologies.sh │ │ └── model │ │ │ ├── add-imports.sh │ │ │ ├── import-ontologies.sh │ │ │ └── northwind-traders.ttl │ ├── create-charts.sh │ ├── create-containers.sh │ ├── csv2rdf.sh │ ├── files │ │ ├── categories.csv │ │ ├── customers.csv │ │ ├── employee_territories.csv │ │ ├── employees.csv │ │ ├── images │ │ │ ├── categories │ │ │ │ ├── beverages.gif │ │ │ │ ├── cereals.gif │ │ │ │ ├── condiments.gif │ │ │ │ ├── confections.gif │ │ │ │ ├── diary.gif │ │ │ │ ├── meat.gif │ │ │ │ ├── produce.gif │ │ │ │ └── seafood.gif │ │ │ └── employees │ │ │ │ ├── andrew.jpg │ │ │ │ ├── anne.jpg │ │ │ │ ├── janet.jpg │ │ │ │ ├── laura.jpg │ │ │ │ ├── margaret.jpg │ │ │ │ ├── michael.jpg │ │ │ │ ├── nancy.jpg │ │ │ │ ├── robert.jpg │ │ │ │ └── steven.jpg │ │ ├── order_details.csv │ │ ├── orders.csv │ │ ├── products.csv │ │ ├── regions.csv │ │ ├── shippers.csv │ │ ├── suppliers.csv │ │ └── territories.csv │ ├── import-csv.sh │ ├── imports.csv │ ├── install.sh │ ├── queries │ │ ├── charts │ │ │ ├── select-products-by-sales.rq │ │ │ └── select-sales-by-regions-by-year.rq │ │ ├── imports │ │ │ ├── categories.rq │ │ │ ├── customers.rq │ │ │ ├── employee_territories.rq │ │ │ ├── employees.rq │ │ │ ├── order_details.rq │ │ │ ├── orders.rq │ │ │ ├── products.rq │ │ │ ├── regions.rq │ │ │ ├── shippers.rq │ │ │ ├── suppliers.rq │ │ │ └── territories.rq │ │ ├── select-categories.rq │ │ ├── select-customers.rq │ │ ├── select-employees.rq │ │ ├── select-orders.rq │ │ ├── select-products.rq │ │ ├── select-regions.rq │ │ ├── select-shippers.rq │ │ ├── select-suppliers.rq │ │ └── select-territories.rq │ ├── root.ttl │ ├── screenshot.gif │ ├── update-documents.sh │ └── upload-file.sh └── skos │ ├── Makefile │ ├── admin │ ├── acl │ │ └── create-authorizations.sh │ ├── clear-ontologies.sh │ └── model │ │ ├── add-constraints.sh │ │ ├── collection-template.ttl │ │ ├── concept-scheme-template.ttl │ │ ├── concept-template.ttl │ │ ├── import-ontologies.sh │ │ ├── patch-ontology.ru │ │ └── post-class-templates.sh │ ├── create-containers.sh │ ├── files │ ├── bootstrap.min.css │ ├── skos.xsl │ └── unesco-thesaurus.ttl │ ├── import-rdf.sh │ ├── install.sh │ ├── queries │ ├── select-collections.rq │ ├── select-concept-schemes.rq │ ├── select-concepts.rq │ └── skos-import.rq │ ├── root.ttl │ ├── screenshot-edit-mode.png │ ├── screenshot.png │ ├── update-documents.sh │ ├── upload-file.sh │ └── validate-documents.sh └── linkeddatahub └── docs ├── Makefile ├── about.ttl ├── decorate-html.xsl ├── docs.trix ├── files.xml ├── files ├── images │ ├── action.png │ ├── browse-data.png │ ├── change-layout-augment.png │ ├── change-layout-default.png │ ├── change-layout-suppress.png │ ├── contexts.svg │ ├── create context.png │ ├── create edit.png │ ├── navigation bar.png │ ├── ontologies.svg │ ├── reference │ │ ├── data-management │ │ │ └── resources │ │ │ │ ├── chart-block.png │ │ │ │ ├── query-block.png │ │ │ │ └── view-block.png │ │ └── user-interface │ │ │ ├── action-bar.png │ │ │ ├── layout.png │ │ │ └── navigation-bar.png │ ├── request-access1.png │ ├── request-access2.png │ ├── search.png │ ├── signup.png │ └── sparql endpoint.jpg └── videos │ ├── AddData.webm │ ├── Create.webm │ ├── CreateContextDataspace.webm │ ├── Delete.webm │ ├── DocTree.gif │ ├── Download.webm │ ├── Edit.webm │ ├── ParallaxNav.gif │ ├── RequestAccess.mov │ ├── RequestAccess.webm │ ├── Upload.webm │ └── View.webm ├── get-started.ttl ├── get-started ├── get-an-account.ttl ├── request-access.ttl └── setup.ttl ├── install.log ├── install.sh ├── reference.ttl ├── reference ├── administration.ttl ├── administration │ ├── acl.ttl │ └── ontologies.ttl ├── command-line-interface.ttl ├── configuration.ttl ├── data-model.ttl ├── data-model │ ├── blocks.ttl │ ├── blocks │ │ ├── objects.ttl │ │ └── xhtml.ttl │ ├── documents.ttl │ ├── documents │ │ ├── containers.ttl │ │ └── items.ttl │ ├── resources.ttl │ └── resources │ │ ├── charts.ttl │ │ ├── queries.ttl │ │ └── views.ttl ├── dataset.ttl ├── dataspace.ttl ├── http-api.ttl ├── imports.ttl ├── imports │ ├── csv.ttl │ └── rdf.ttl ├── stylesheets.ttl └── user-interface.ttl ├── sha1map-to-xml.sh ├── test.xml ├── trix-to-html.xsl ├── ttl-to-html.sh ├── update-document.sh ├── update-folder.sh ├── upload-file.sh ├── user-guide.ttl ├── user-guide ├── add-data.ttl ├── browse-data.ttl ├── build-apps.ttl ├── change-layout.ttl ├── change-model.ttl ├── change-system-base-uri.ttl ├── create-data.ttl ├── create-data │ ├── create-content.ttl │ ├── create-documents.ttl │ └── create-resources.ttl ├── import-data.ttl ├── import-data │ ├── import-csv-data.ttl │ └── import-rdf-data.ttl ├── manage-dataspaces.ttl ├── navigate-data.ttl ├── query-data.ttl ├── search-data.ttl └── upload-file.ttl └── validate-documents.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/README.md -------------------------------------------------------------------------------- /demo/city-graph/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/Makefile -------------------------------------------------------------------------------- /demo/city-graph/admin/clear-ontologies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/admin/clear-ontologies.sh -------------------------------------------------------------------------------- /demo/city-graph/admin/model/add-classes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/admin/model/add-classes.sh -------------------------------------------------------------------------------- /demo/city-graph/create-charts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/create-charts.sh -------------------------------------------------------------------------------- /demo/city-graph/create-containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/create-containers.sh -------------------------------------------------------------------------------- /demo/city-graph/files/copenhagen/bicycle-parkings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/files/copenhagen/bicycle-parkings.csv -------------------------------------------------------------------------------- /demo/city-graph/files/copenhagen/charging-stations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/files/copenhagen/charging-stations.csv -------------------------------------------------------------------------------- /demo/city-graph/files/copenhagen/libraries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/files/copenhagen/libraries.csv -------------------------------------------------------------------------------- /demo/city-graph/files/copenhagen/parking-facilities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/files/copenhagen/parking-facilities.csv -------------------------------------------------------------------------------- /demo/city-graph/files/copenhagen/places.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/files/copenhagen/places.csv -------------------------------------------------------------------------------- /demo/city-graph/files/copenhagen/playgrounds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/files/copenhagen/playgrounds.csv -------------------------------------------------------------------------------- /demo/city-graph/files/copenhagen/public-toilets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/files/copenhagen/public-toilets.csv -------------------------------------------------------------------------------- /demo/city-graph/files/copenhagen/schools.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/files/copenhagen/schools.csv -------------------------------------------------------------------------------- /demo/city-graph/files/copenhagen/sports-centers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/files/copenhagen/sports-centers.csv -------------------------------------------------------------------------------- /demo/city-graph/import-csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/import-csv.sh -------------------------------------------------------------------------------- /demo/city-graph/imports.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/imports.csv -------------------------------------------------------------------------------- /demo/city-graph/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/install.sh -------------------------------------------------------------------------------- /demo/city-graph/queries/charts/parking-facilities-by-spaces.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/queries/charts/parking-facilities-by-spaces.rq -------------------------------------------------------------------------------- /demo/city-graph/queries/imports/copenhagen/bicycle-parkings.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/queries/imports/copenhagen/bicycle-parkings.rq -------------------------------------------------------------------------------- /demo/city-graph/queries/imports/copenhagen/charging-stations.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/queries/imports/copenhagen/charging-stations.rq -------------------------------------------------------------------------------- /demo/city-graph/queries/imports/copenhagen/libraries.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/queries/imports/copenhagen/libraries.rq -------------------------------------------------------------------------------- /demo/city-graph/queries/imports/copenhagen/parking-facilities.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/queries/imports/copenhagen/parking-facilities.rq -------------------------------------------------------------------------------- /demo/city-graph/queries/imports/copenhagen/places.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/queries/imports/copenhagen/places.rq -------------------------------------------------------------------------------- /demo/city-graph/queries/imports/copenhagen/playgrounds.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/queries/imports/copenhagen/playgrounds.rq -------------------------------------------------------------------------------- /demo/city-graph/queries/imports/copenhagen/public-toilets.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/queries/imports/copenhagen/public-toilets.rq -------------------------------------------------------------------------------- /demo/city-graph/queries/imports/copenhagen/schools.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/queries/imports/copenhagen/schools.rq -------------------------------------------------------------------------------- /demo/city-graph/queries/imports/copenhagen/sports-centers.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/queries/imports/copenhagen/sports-centers.rq -------------------------------------------------------------------------------- /demo/city-graph/root.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/root.ttl -------------------------------------------------------------------------------- /demo/city-graph/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/screenshot.png -------------------------------------------------------------------------------- /demo/city-graph/update-documents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/city-graph/update-documents.sh -------------------------------------------------------------------------------- /demo/northwind-traders/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/Makefile -------------------------------------------------------------------------------- /demo/northwind-traders/admin/clear-ontologies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/admin/clear-ontologies.sh -------------------------------------------------------------------------------- /demo/northwind-traders/admin/model/add-imports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/admin/model/add-imports.sh -------------------------------------------------------------------------------- /demo/northwind-traders/admin/model/import-ontologies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/admin/model/import-ontologies.sh -------------------------------------------------------------------------------- /demo/northwind-traders/admin/model/northwind-traders.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/admin/model/northwind-traders.ttl -------------------------------------------------------------------------------- /demo/northwind-traders/create-charts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/create-charts.sh -------------------------------------------------------------------------------- /demo/northwind-traders/create-containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/create-containers.sh -------------------------------------------------------------------------------- /demo/northwind-traders/csv2rdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/csv2rdf.sh -------------------------------------------------------------------------------- /demo/northwind-traders/files/categories.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/categories.csv -------------------------------------------------------------------------------- /demo/northwind-traders/files/customers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/customers.csv -------------------------------------------------------------------------------- /demo/northwind-traders/files/employee_territories.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/employee_territories.csv -------------------------------------------------------------------------------- /demo/northwind-traders/files/employees.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/employees.csv -------------------------------------------------------------------------------- /demo/northwind-traders/files/images/categories/beverages.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/images/categories/beverages.gif -------------------------------------------------------------------------------- /demo/northwind-traders/files/images/categories/cereals.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/images/categories/cereals.gif -------------------------------------------------------------------------------- /demo/northwind-traders/files/images/categories/condiments.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/images/categories/condiments.gif -------------------------------------------------------------------------------- /demo/northwind-traders/files/images/categories/confections.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/images/categories/confections.gif -------------------------------------------------------------------------------- /demo/northwind-traders/files/images/categories/diary.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/images/categories/diary.gif -------------------------------------------------------------------------------- /demo/northwind-traders/files/images/categories/meat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/images/categories/meat.gif -------------------------------------------------------------------------------- /demo/northwind-traders/files/images/categories/produce.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/images/categories/produce.gif -------------------------------------------------------------------------------- /demo/northwind-traders/files/images/categories/seafood.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/images/categories/seafood.gif -------------------------------------------------------------------------------- /demo/northwind-traders/files/images/employees/andrew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/images/employees/andrew.jpg -------------------------------------------------------------------------------- /demo/northwind-traders/files/images/employees/anne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/images/employees/anne.jpg -------------------------------------------------------------------------------- /demo/northwind-traders/files/images/employees/janet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/images/employees/janet.jpg -------------------------------------------------------------------------------- /demo/northwind-traders/files/images/employees/laura.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/images/employees/laura.jpg -------------------------------------------------------------------------------- /demo/northwind-traders/files/images/employees/margaret.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/images/employees/margaret.jpg -------------------------------------------------------------------------------- /demo/northwind-traders/files/images/employees/michael.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/images/employees/michael.jpg -------------------------------------------------------------------------------- /demo/northwind-traders/files/images/employees/nancy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/images/employees/nancy.jpg -------------------------------------------------------------------------------- /demo/northwind-traders/files/images/employees/robert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/images/employees/robert.jpg -------------------------------------------------------------------------------- /demo/northwind-traders/files/images/employees/steven.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/images/employees/steven.jpg -------------------------------------------------------------------------------- /demo/northwind-traders/files/order_details.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/order_details.csv -------------------------------------------------------------------------------- /demo/northwind-traders/files/orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/orders.csv -------------------------------------------------------------------------------- /demo/northwind-traders/files/products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/products.csv -------------------------------------------------------------------------------- /demo/northwind-traders/files/regions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/regions.csv -------------------------------------------------------------------------------- /demo/northwind-traders/files/shippers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/shippers.csv -------------------------------------------------------------------------------- /demo/northwind-traders/files/suppliers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/suppliers.csv -------------------------------------------------------------------------------- /demo/northwind-traders/files/territories.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/files/territories.csv -------------------------------------------------------------------------------- /demo/northwind-traders/import-csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/import-csv.sh -------------------------------------------------------------------------------- /demo/northwind-traders/imports.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/imports.csv -------------------------------------------------------------------------------- /demo/northwind-traders/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/install.sh -------------------------------------------------------------------------------- /demo/northwind-traders/queries/charts/select-products-by-sales.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/charts/select-products-by-sales.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/charts/select-sales-by-regions-by-year.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/charts/select-sales-by-regions-by-year.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/imports/categories.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/imports/categories.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/imports/customers.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/imports/customers.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/imports/employee_territories.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/imports/employee_territories.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/imports/employees.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/imports/employees.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/imports/order_details.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/imports/order_details.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/imports/orders.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/imports/orders.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/imports/products.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/imports/products.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/imports/regions.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/imports/regions.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/imports/shippers.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/imports/shippers.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/imports/suppliers.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/imports/suppliers.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/imports/territories.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/imports/territories.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/select-categories.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/select-categories.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/select-customers.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/select-customers.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/select-employees.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/select-employees.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/select-orders.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/select-orders.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/select-products.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/select-products.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/select-regions.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/select-regions.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/select-shippers.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/select-shippers.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/select-suppliers.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/select-suppliers.rq -------------------------------------------------------------------------------- /demo/northwind-traders/queries/select-territories.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/queries/select-territories.rq -------------------------------------------------------------------------------- /demo/northwind-traders/root.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/root.ttl -------------------------------------------------------------------------------- /demo/northwind-traders/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/screenshot.gif -------------------------------------------------------------------------------- /demo/northwind-traders/update-documents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/update-documents.sh -------------------------------------------------------------------------------- /demo/northwind-traders/upload-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/northwind-traders/upload-file.sh -------------------------------------------------------------------------------- /demo/skos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/Makefile -------------------------------------------------------------------------------- /demo/skos/admin/acl/create-authorizations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/admin/acl/create-authorizations.sh -------------------------------------------------------------------------------- /demo/skos/admin/clear-ontologies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/admin/clear-ontologies.sh -------------------------------------------------------------------------------- /demo/skos/admin/model/add-constraints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/admin/model/add-constraints.sh -------------------------------------------------------------------------------- /demo/skos/admin/model/collection-template.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/admin/model/collection-template.ttl -------------------------------------------------------------------------------- /demo/skos/admin/model/concept-scheme-template.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/admin/model/concept-scheme-template.ttl -------------------------------------------------------------------------------- /demo/skos/admin/model/concept-template.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/admin/model/concept-template.ttl -------------------------------------------------------------------------------- /demo/skos/admin/model/import-ontologies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/admin/model/import-ontologies.sh -------------------------------------------------------------------------------- /demo/skos/admin/model/patch-ontology.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/admin/model/patch-ontology.ru -------------------------------------------------------------------------------- /demo/skos/admin/model/post-class-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/admin/model/post-class-templates.sh -------------------------------------------------------------------------------- /demo/skos/create-containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/create-containers.sh -------------------------------------------------------------------------------- /demo/skos/files/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/files/bootstrap.min.css -------------------------------------------------------------------------------- /demo/skos/files/skos.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/files/skos.xsl -------------------------------------------------------------------------------- /demo/skos/files/unesco-thesaurus.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/files/unesco-thesaurus.ttl -------------------------------------------------------------------------------- /demo/skos/import-rdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/import-rdf.sh -------------------------------------------------------------------------------- /demo/skos/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/install.sh -------------------------------------------------------------------------------- /demo/skos/queries/select-collections.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/queries/select-collections.rq -------------------------------------------------------------------------------- /demo/skos/queries/select-concept-schemes.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/queries/select-concept-schemes.rq -------------------------------------------------------------------------------- /demo/skos/queries/select-concepts.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/queries/select-concepts.rq -------------------------------------------------------------------------------- /demo/skos/queries/skos-import.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/queries/skos-import.rq -------------------------------------------------------------------------------- /demo/skos/root.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/root.ttl -------------------------------------------------------------------------------- /demo/skos/screenshot-edit-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/screenshot-edit-mode.png -------------------------------------------------------------------------------- /demo/skos/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/screenshot.png -------------------------------------------------------------------------------- /demo/skos/update-documents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/update-documents.sh -------------------------------------------------------------------------------- /demo/skos/upload-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/upload-file.sh -------------------------------------------------------------------------------- /demo/skos/validate-documents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/demo/skos/validate-documents.sh -------------------------------------------------------------------------------- /linkeddatahub/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/Makefile -------------------------------------------------------------------------------- /linkeddatahub/docs/about.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/about.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/decorate-html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/decorate-html.xsl -------------------------------------------------------------------------------- /linkeddatahub/docs/docs.trix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/docs.trix -------------------------------------------------------------------------------- /linkeddatahub/docs/files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files.xml -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/action.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/browse-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/browse-data.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/change-layout-augment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/change-layout-augment.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/change-layout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/change-layout-default.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/change-layout-suppress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/change-layout-suppress.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/contexts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/contexts.svg -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/create context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/create context.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/create edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/create edit.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/navigation bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/navigation bar.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/ontologies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/ontologies.svg -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/reference/data-management/resources/chart-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/reference/data-management/resources/chart-block.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/reference/data-management/resources/query-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/reference/data-management/resources/query-block.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/reference/data-management/resources/view-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/reference/data-management/resources/view-block.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/reference/user-interface/action-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/reference/user-interface/action-bar.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/reference/user-interface/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/reference/user-interface/layout.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/reference/user-interface/navigation-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/reference/user-interface/navigation-bar.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/request-access1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/request-access1.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/request-access2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/request-access2.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/search.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/signup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/signup.png -------------------------------------------------------------------------------- /linkeddatahub/docs/files/images/sparql endpoint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/images/sparql endpoint.jpg -------------------------------------------------------------------------------- /linkeddatahub/docs/files/videos/AddData.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/videos/AddData.webm -------------------------------------------------------------------------------- /linkeddatahub/docs/files/videos/Create.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/videos/Create.webm -------------------------------------------------------------------------------- /linkeddatahub/docs/files/videos/CreateContextDataspace.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/videos/CreateContextDataspace.webm -------------------------------------------------------------------------------- /linkeddatahub/docs/files/videos/Delete.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/videos/Delete.webm -------------------------------------------------------------------------------- /linkeddatahub/docs/files/videos/DocTree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/videos/DocTree.gif -------------------------------------------------------------------------------- /linkeddatahub/docs/files/videos/Download.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/videos/Download.webm -------------------------------------------------------------------------------- /linkeddatahub/docs/files/videos/Edit.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/videos/Edit.webm -------------------------------------------------------------------------------- /linkeddatahub/docs/files/videos/ParallaxNav.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/videos/ParallaxNav.gif -------------------------------------------------------------------------------- /linkeddatahub/docs/files/videos/RequestAccess.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/videos/RequestAccess.mov -------------------------------------------------------------------------------- /linkeddatahub/docs/files/videos/RequestAccess.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/videos/RequestAccess.webm -------------------------------------------------------------------------------- /linkeddatahub/docs/files/videos/Upload.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/videos/Upload.webm -------------------------------------------------------------------------------- /linkeddatahub/docs/files/videos/View.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/files/videos/View.webm -------------------------------------------------------------------------------- /linkeddatahub/docs/get-started.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/get-started.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/get-started/get-an-account.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/get-started/get-an-account.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/get-started/request-access.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/get-started/request-access.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/get-started/setup.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/get-started/setup.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/install.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linkeddatahub/docs/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/install.sh -------------------------------------------------------------------------------- /linkeddatahub/docs/reference.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/administration.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/administration.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/administration/acl.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/administration/acl.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/administration/ontologies.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/administration/ontologies.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/command-line-interface.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/command-line-interface.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/configuration.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/configuration.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/data-model.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/data-model.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/data-model/blocks.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/data-model/blocks.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/data-model/blocks/objects.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/data-model/blocks/objects.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/data-model/blocks/xhtml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/data-model/blocks/xhtml.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/data-model/documents.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/data-model/documents.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/data-model/documents/containers.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/data-model/documents/containers.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/data-model/documents/items.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/data-model/documents/items.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/data-model/resources.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/data-model/resources.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/data-model/resources/charts.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/data-model/resources/charts.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/data-model/resources/queries.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/data-model/resources/queries.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/data-model/resources/views.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/data-model/resources/views.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/dataset.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/dataset.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/dataspace.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/dataspace.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/http-api.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/http-api.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/imports.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/imports.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/imports/csv.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/imports/csv.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/imports/rdf.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/imports/rdf.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/stylesheets.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/stylesheets.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/reference/user-interface.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/reference/user-interface.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/sha1map-to-xml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/sha1map-to-xml.sh -------------------------------------------------------------------------------- /linkeddatahub/docs/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/test.xml -------------------------------------------------------------------------------- /linkeddatahub/docs/trix-to-html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/trix-to-html.xsl -------------------------------------------------------------------------------- /linkeddatahub/docs/ttl-to-html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/ttl-to-html.sh -------------------------------------------------------------------------------- /linkeddatahub/docs/update-document.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/update-document.sh -------------------------------------------------------------------------------- /linkeddatahub/docs/update-folder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/update-folder.sh -------------------------------------------------------------------------------- /linkeddatahub/docs/upload-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/upload-file.sh -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/add-data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/add-data.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/browse-data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/browse-data.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/build-apps.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/build-apps.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/change-layout.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/change-layout.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/change-model.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/change-model.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/change-system-base-uri.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/change-system-base-uri.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/create-data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/create-data.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/create-data/create-content.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/create-data/create-content.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/create-data/create-documents.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/create-data/create-documents.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/create-data/create-resources.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/create-data/create-resources.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/import-data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/import-data.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/import-data/import-csv-data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/import-data/import-csv-data.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/import-data/import-rdf-data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/import-data/import-rdf-data.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/manage-dataspaces.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/manage-dataspaces.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/navigate-data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/navigate-data.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/query-data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/query-data.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/search-data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/search-data.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/user-guide/upload-file.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/user-guide/upload-file.ttl -------------------------------------------------------------------------------- /linkeddatahub/docs/validate-documents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomGraph/LinkedDataHub-Apps/HEAD/linkeddatahub/docs/validate-documents.sh --------------------------------------------------------------------------------