forked from jmvanel/semantic_forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:jmvanel/semantic_forms
- Loading branch information
Showing
10 changed files
with
73 additions
and
56 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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
|
||
OLDGRAPH=$1 | ||
NEWGRAPH=$2 | ||
if [ -z $3 ]; then SUBJECT="?S"; else SUBJECT="<$3>"; fi | ||
|
||
echo "change le sujet $SUBJECT dans le graph <$OLDGRAPH> dans le nouveau graph <$NEWGRAPH>" | ||
echo "DELETE { GRAPH <$OLDGRAPH> { $SUBJECT ?P ?O }} INSERT{ GRAPH <$NEWGRAPH> { $SUBJECT ?P ?O }} WHERE {GRAPH <$OLDGRAPH> { $SUBJECT ?P ?O}}" > /tmp/move_subject_graph.rq | ||
|
||
# sbt "runMain tdb.tdbupdate --loc=TDB --verbose --update=/tmp/move_subject_graph.rq" | ||
sbt <<EOF | ||
project forms_play | ||
runMain tdb.tdbupdate --loc=TDB --verbose --update=/tmp/move_subject_graph.rq | ||
EOF | ||
echo "Local SPARQL database in TDB/ : change le sujet $SUBJECT dans le graph <$OLDGRAPH> dans le nouveau graph <$NEWGRAPH>" |
22 changes: 0 additions & 22 deletions
22
scala/web_tests/src/test/scala/deductions/runtime/non_regression/Form_data.scala
This file was deleted.
Oops, something went wrong.
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
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
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