-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switched validation library to https://github.com/rdf-ext/shacl-engine
- Loading branch information
Showing
5 changed files
with
3,574 additions
and
492 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,12 +6,12 @@ | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title><shacl-form> demo</title> | ||
<link rel="stylesheet" href="./style.css"> | ||
<!-- "@ulb-darmstadt/shacl-form": "https://cdn.jsdelivr.net/npm/@ulb-darmstadt/[email protected].2/dist/" --> | ||
<!-- "@ulb-darmstadt/shacl-form": "https://cdn.jsdelivr.net/npm/@ulb-darmstadt/[email protected].3/dist/" --> | ||
<!-- "@ulb-darmstadt/shacl-form": "./" --> | ||
<script type="importmap"> | ||
{ | ||
"imports": { | ||
"@ulb-darmstadt/shacl-form/": "https://cdn.jsdelivr.net/npm/@ulb-darmstadt/[email protected].2/dist/" | ||
"@ulb-darmstadt/shacl-form/": "https://cdn.jsdelivr.net/npm/@ulb-darmstadt/[email protected].3/dist/" | ||
} | ||
} | ||
</script> | ||
|
@@ -216,8 +216,8 @@ <h1><shacl-form> demo</h1> | |
` | ||
} | ||
}) | ||
const shapesTTL = await fetch("complex-example.ttl").then(resp => resp.text()) | ||
const dataTTL = await fetch("complex-example-data.ttl").then(resp => resp.text()) | ||
const shapesTTL = await fetch("complex-example-thing.ttl").then(resp => resp.text()) | ||
const dataTTL = await fetch("complex-example-thing-data.ttl").then(resp => resp.text()) | ||
shapes.innerText = shapesTTL | ||
data.innerText = dataTTL | ||
form.dataset['shapes'] = shapesTTL | ||
|
Oops, something went wrong.