Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d274f48

Browse files
committedSep 25, 2017
re-generating library
1 parent b18e090 commit d274f48

File tree

8 files changed

+1191
-1152
lines changed

8 files changed

+1191
-1152
lines changed
 

‎dist/shacl.js

+23-12
Large diffs are not rendered by default.

‎gulpfile.js

+5
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,11 @@ gulp.task('generate-vocabularies', function () {
9393
}
9494
});
9595

96+
/**
97+
* We generate rdfquery from the shared library and we add it to the validator code and to the
98+
* list of libraries that must be loaded.
99+
* Dash.js is only added to the list of loaded libraries.
100+
*/
96101
gulp.task('generate-libraries', function () {
97102
var libraries = {
98103
"http://datashapes.org/js/dash.js": "./shared/dash.js",

‎shared/rdfquery.js

+595-578
Large diffs are not rendered by default.

‎src/libraries.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/rdfquery.js

+559-560
Large diffs are not rendered by default.

‎src/vocabularies.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vocabularies/dash.ttl

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# baseURI: http://datashapes.org/dash
2+
# imports: http://topbraid.org/tosh
23
# imports: http://www.w3.org/ns/shacl#
34
# prefix: dash
45

@@ -7,6 +8,7 @@
78
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
89
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
910
@prefix sh: <http://www.w3.org/ns/shacl#> .
11+
@prefix tosh: <http://topbraid.org/tosh#> .
1012
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
1113

1214
<http://datashapes.org/dash>
@@ -15,6 +17,7 @@
1517
1618
DASH is also a SHACL library for frequently needed features and design patterns. All features in this library are 100% standards compliant and will work on any engine that fully supports SHACL.""" ;
1719
rdfs:label "DASH Data Shapes Library" ;
20+
owl:imports <http://topbraid.org/tosh> ;
1821
owl:imports sh: ;
1922
sh:declare [
2023
sh:namespace "http://datashapes.org/dash#"^^xsd:anyURI ;

‎vocabularies/shacl.ttl

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE
2+
## https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
3+
## --------
4+
15
# W3C Shapes Constraint Language (SHACL) Vocabulary
26
# Version from 2017-07-20
37

0 commit comments

Comments
 (0)
Please sign in to comment.