From 81f581fe60f4b1226de6bb69354fec810551304e Mon Sep 17 00:00:00 2001 From: BonaBeavis Date: Wed, 19 May 2021 11:34:46 +0200 Subject: [PATCH 1/3] Fix typo --- config.example.ttl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.example.ttl b/config.example.ttl index bc120ed9..26e6b7d7 100644 --- a/config.example.ttl +++ b/config.example.ttl @@ -31,5 +31,5 @@ conf:default1 a ; conf:aksw a ; quit:prefix "aksw" ; - quit:namespace . + quit:namespace ; quit:graphFile "default.nt" . From 7d8f62132de13f5566acd5561d0d10c42857f71d Mon Sep 17 00:00:00 2001 From: BonaBeavis Date: Wed, 19 May 2021 11:51:49 +0200 Subject: [PATCH 2/3] Update config.example.ttl Updates config example --- config.example.ttl | 48 +++++++++++++++++++--------------------------- 1 file changed, 20 insertions(+), 28 deletions(-) diff --git a/config.example.ttl b/config.example.ttl index 26e6b7d7..7c5c9708 100644 --- a/config.example.ttl +++ b/config.example.ttl @@ -1,35 +1,27 @@ +@base . @prefix conf: . -@prefix quit: . @prefix rdfs: . @prefix xsd: . -conf:exampleStore a quit:QuitStore ; - quit:allowNewGraphs 1 ; - quit:pathOfGitRepo "../store.default" ; - quit:defaultBranch "master" ; - quit:globalFile "global.nt" . +conf:exampleStore a :QuitStore ; + :allowNewGraphs 1 ; + :pathOfGitRepo "../store.default" ; + :defaultBranch "master" ; + # Optional a git repo that will be cloned into dir given in line above on startup. + :origin "git:github.com/your/repository.git" ; + :globalFile "global.nt" . -conf:exampleDBpedia a quit:Graph ; - quit:graphUri ; - quit:isVersioned 1 ; - quit:graphFile "dbpedia.nt" . +conf:exampleDBpedia a :Graph ; + :graphUri ; + :isVersioned 1 ; + :graphFile "dbpedia.nt" . -conf:exampleGraph a quit:Graph ; - quit:graphUri ; - quit:isVersioned 1 ; - quit:graphFile "default.nt" . +conf:default a :Graph ; + :graphUri ; + :isVersioned 1 ; + :graphFile "default.nt" . -conf:default a ; - quit:graphUri ; - quit:isVersioned 1 ; - quit:graphFile "radtke.nt" . - -conf:default1 a ; - quit:graphUri ; - quit:isVersioned 1 ; - quit:graphFile "arndt.nt" . - -conf:aksw a ; - quit:prefix "aksw" ; - quit:namespace ; - quit:graphFile "default.nt" . +conf:aksw a :Binding ; + :prefix "aksw" ; + :namespace ; + :graphFile "binding.nt" . From 5683125d5a49aaba0032472d3b77a7bc4e16ba0b Mon Sep 17 00:00:00 2001 From: BonaBeavis Date: Wed, 19 May 2021 13:00:32 +0200 Subject: [PATCH 3/3] Fixes declaraton for default prefix --- config.example.ttl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.example.ttl b/config.example.ttl index 7c5c9708..ee49ea29 100644 --- a/config.example.ttl +++ b/config.example.ttl @@ -1,4 +1,4 @@ -@base . +@prefix : . @prefix conf: . @prefix rdfs: . @prefix xsd: .