Skip to content

Commit

Permalink
Merge pull request #135 from Ontotext-AD/gdb-4034-create-shacl-repo-i…
Browse files Browse the repository at this point in the history
…n-workbench

Gdb 4034 create shacl repo in workbench
  • Loading branch information
avataar authored Nov 11, 2019
2 parents ad25f80 + 3ef78c4 commit 8b58cb2
Show file tree
Hide file tree
Showing 5 changed files with 81 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphdb-workbench",
"version": "1.2.0-TR2",
"version": "1.2.0-TR3",
"description": "The web application for GraphDB APIs",
"scripts": {
"build": "webpack --config=webpack.config.prod.js",
Expand Down Expand Up @@ -34,7 +34,7 @@
"url": "https://github.com/Ontotext-AD/graphdb-workbench/issues"
},
"versions": {
"graphdb": "9.0.0"
"graphdb": "9.1.0-TR9"
},
"homepage": "https://github.com/Ontotext-AD/graphdb-workbench#readme",
"devDependencies": {
Expand Down
76 changes: 76 additions & 0 deletions src/pages/repository.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,82 @@ <h1>{{pageTitle}}</h1>
</label>
</div>
</div>
<div class="form-group row">
<div class="checkbox offset-xs-3 offset-md-3">
<label class="col-xs-6 col-md-6"
tooltip="Enables support for SHACL validation"
tooltip-placement="bottom">
<input id="isShacl" ng-disabled="editRepoPage" type="checkbox" ng-true-value="'true'" ng-false-value="'false'" ng-model="repositoryInfo.params.isShacl.value"/>
{{repositoryInfo.params.isShacl.label}}
</label>
</div>
</div>
<div ng-show="repositoryInfo.params.isShacl.value === 'true'">
<div class="form-group row">
<div class="checkbox offset-xs-3 offset-md-3">
<label class="col-xs-3 col-md-3">
<input id="rdfsSubClassReasoning" name="rdfsSubClassReasoning" ng-disabled="editRepoPage" type="checkbox" ng-true-value="'true'" ng-false-value="'false'" ng-model="repositoryInfo.params.rdfsSubClassReasoning.value"/>
{{repositoryInfo.params.rdfsSubClassReasoning.label}}
</label>
</div>
<div class="checkbox offset-xs-3 offset-md-3">
<label class="col-xs-3 col-md-3">
<input id="cacheSelectNodes" name="cacheSelectNodes" ng-disabled="editRepoPage" type="checkbox" ng-true-value="'true'" ng-false-value="'false'" ng-model="repositoryInfo.params.cacheSelectNodes.value"/>
{{repositoryInfo.params.cacheSelectNodes.label}}
</label>
</div>
</div>
<div class="form-group row">
<div class="checkbox offset-xs-3 offset-md-3">
<label class="col-xs-3 col-md-3">
<input id="logValidationPlans" name="logValidationPlans" ng-disabled="editRepoPage" type="checkbox" ng-true-value="'true'" ng-false-value="'false'" ng-model="repositoryInfo.params.logValidationPlans.value"/>
{{repositoryInfo.params.logValidationPlans.label}}
</label>
</div>
<div class="checkbox offset-xs-3 offset-md-3">
<label class="col-xs-3 col-md-3">
<input id="logValidationViolations" name="logValidationViolations" ng-disabled="editRepoPage" type="checkbox" ng-true-value="'true'" ng-false-value="'false'" ng-model="repositoryInfo.params.logValidationViolations.value"/>
{{repositoryInfo.params.logValidationViolations.label}}
</label>
</div>
</div>
<div class="form-group row">
<div class="checkbox offset-xs-3 offset-md-3">
<label class="col-xs-3 col-md-3">
<input id="parallelValidation" name="parallelValidation" ng-disabled="editRepoPage" type="checkbox" ng-true-value="'true'" ng-false-value="'false'" ng-model="repositoryInfo.params.parallelValidation.value"/>
{{repositoryInfo.params.parallelValidation.label}}
</label>
</div>
<div class="checkbox offset-xs-3 offset-md-3">
<label class="col-xs-3 col-md-3">
<input id="globalLogValidationExecution" name="globalLogValidationExecution" ng-disabled="editRepoPage" type="checkbox" ng-true-value="'true'" ng-false-value="'false'" ng-model="repositoryInfo.params.globalLogValidationExecution.value"/>
{{repositoryInfo.params.globalLogValidationExecution.label}}
</label>
</div>
</div>
<div class="form-group row">
<div class="checkbox offset-xs-3 offset-md-3">
<label class="col-xs-3 col-md-3">
<input id="undefinedTargetValidatesAllSubjects" name="undefinedTargetValidatesAllSubjects" ng-disabled="editRepoPage" type="checkbox" ng-true-value="'true'" ng-false-value="'false'" ng-model="repositoryInfo.params.undefinedTargetValidatesAllSubjects.value"/>
{{repositoryInfo.params.undefinedTargetValidatesAllSubjects.label}}
</label>
</div>
<div class="checkbox offset-xs-3 offset-md-3">
<label class="col-xs-3 col-md-3">
<input id="ignoreNoShapesLoadedException" name="ignoreNoShapesLoadedException" ng-disabled="editRepoPage" type="checkbox" ng-true-value="'true'" ng-false-value="'false'" ng-model="repositoryInfo.params.ignoreNoShapesLoadedException.value"/>
{{repositoryInfo.params.ignoreNoShapesLoadedException.label}}
</label>
</div>
</div>
<div class="form-group row">
<div class="checkbox offset-xs-3 offset-md-3">
<label class="col-xs-3 col-md-3">
<input id="performanceLogging" name="performanceLogging" ng-disabled="editRepoPage" type="checkbox" ng-true-value="'true'" ng-false-value="'false'" ng-model="repositoryInfo.params.performanceLogging.value"/>
{{repositoryInfo.params.performanceLogging.label}}
</label>
</div>
</div>
</div>
<div class="form-group row">
<label class="col-xs-3 col-sm-3 col-md-3 col-form-label">{{repositoryInfo.params.baseURL.label}}</label>
<div class="col-xs-4 col-sm-4 col-md-4">
Expand Down
2 changes: 1 addition & 1 deletion test-cypress/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test-cypress/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphdb-workbench-tests",
"version": "1.2.0-TR2",
"version": "1.2.0-TR3",
"description": "Cypress tests for GraphDB workbench",
"scripts": {
"start": "cypress open",
Expand Down

0 comments on commit 8b58cb2

Please sign in to comment.