Fix direct graph results
authorBoris Villazon-Terrazas <bvillazon@fi.upm.es>
Fri, 20 Apr 2012 13:09:26 +0200
changeset 86 c2588a3b2836
parent 85 8b381d48f912
child 87 ae5e97f7833d
Fix direct graph results
D001-1table1column1row/directGraph.ttl
D002-1table2columns1row/directGraph.ttl
D003-1table3columns1row/directGraph.ttl
D004-1table2columns1row/directGraph.ttl
D005-1table3columns3rows2duplicates/directGraph.ttl
D006-1table1primarykey1column1row/directGraph.ttl
D006-1table1primarykey1column1row/r2rmla.ttl
D007-1table1primarykey2columns1row/directGraph.ttl
D008-1table1compositeprimarykey3columns1row/directGraph.ttl
D009-2tables1primarykey1foreignkey/directGraph.ttl
D010-1table1primarykey3colums3rows/directGraph.ttl
D011-M2MRelations/directGraph.ttl
D012-2tables2duplicates0nulls/directGraph.ttl
D013-1table1primarykey3columns2rows1nullvalue/directGraph.ttl
D014-3tables1primarykey1foreignkey/directGraph.ttl
D015-1table3columns1composityeprimarykey3rows2languages/directGraph.ttl
D016-1table1primarykey10columns3rowsSQLdatatypes/directGraph.ttl
D017-I18NnoSpecialChars/directGraph.ttl
D018-1table1primarykey2columns3rows/directGraph.ttl
D021-2tables2primarykeys1foreignkeyReferencesAllNulls/directGraph.ttl
D022-2tables1primarykey1foreignkeyReferencesNoPrimaryKey/directGraph.ttl
D024-2tables2primarykeys1foreignkeyToARowWithSomeNulls/directGraph.ttl
D025-3tables3primarykeys3foreignkeys/directGraph.ttl
ts1.zip
--- a/D001-1table1column1row/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D001-1table1column1row/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,2 +1,4 @@
+@base <http://example.com/base/> .
+
 _:a <Student#Name> "Venus".
 _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <Student> .
--- a/D002-1table2columns1row/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D002-1table2columns1row/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,3 +1,5 @@
+@base <http://example.com/base/> .
+
 _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <Student> .
 _:a <Student#ID> "10"^^<http://www.w3.org/2001/XMLSchema#integer> .
 _:a <Student#Name> "Venus" .
\ No newline at end of file
--- a/D003-1table3columns1row/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D003-1table3columns1row/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,3 +1,5 @@
+@base <http://example.com/base/> .
+
 _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <Student> .
 _:a <Student#ID> "10"^^<http://www.w3.org/2001/XMLSchema#integer> .
 _:a <Student#FirstName> "Venus" .
--- a/D004-1table2columns1row/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D004-1table2columns1row/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,3 +1,5 @@
+@base <http://example.com/base/> .
+
 _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <Student_Sport> .
 _:a <Student_Sport#Student> "Venus" .
 _:a <Student_Sport#Sport> "Tennis" .
--- a/D005-1table3columns3rows2duplicates/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D005-1table3columns3rows2duplicates/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,3 +1,5 @@
+@base <http://example.com/base/> .
+
 _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <IOUs> .
 _:a <IOUs#fname> "Bob" .
 _:a <IOUs#lname> "Smith" .
--- a/D006-1table1primarykey1column1row/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D006-1table1primarykey1column1row/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,3 +1,5 @@
+@base <http://example.com/base/> .
+
 <Student/Name-Venus> <Student#Name> "Venus" .
 <Student/Name-Venus> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <Student> .
 
--- a/D006-1table1primarykey1column1row/r2rmla.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D006-1table1primarykey1column1row/r2rmla.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -15,6 +15,6 @@
     rr:predicateObjectMap
     [ 
       rr:predicateMap [ rr:constant ex:description ]; 
-      rr:objectMap    [ rr:constant "Bad Student" ]
+      rr:objectMap    [ rr:constant "Bad Student"; rr:termType rr:Literal; ]
     ]
     .
--- a/D007-1table1primarykey2columns1row/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D007-1table1primarykey2columns1row/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,3 +1,5 @@
+@base <http://example.com/base/> .
+
 <Student/ID-10> <Student#ID> "10"^^<http://www.w3.org/2001/XMLSchema#integer> .
 <Student/ID-10> <Student#Name> "Venus" .
 <Student/ID-10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <Student> .
--- a/D008-1table1compositeprimarykey3columns1row/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D008-1table1compositeprimarykey3columns1row/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,3 +1,5 @@
+@base <http://example.com/base/> .
+
 <Student/ID-10.Name-Venus%20Williams> <Student#ID> "10"^^<http://www.w3.org/2001/XMLSchema#integer> .
 <Student/ID-10.Name-Venus%20Williams> <Student#Name> "Venus Williams" .
 <Student/ID-10.Name-Venus%20Williams> <Student#Sport> "Tennis" .
--- a/D009-2tables1primarykey1foreignkey/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D009-2tables1primarykey1foreignkey/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,3 +1,5 @@
+@base <http://example.com/base/> .
+
 <Student/ID-10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <Student> .
 <Student/ID-10> <Student#ID> "10"^^<http://www.w3.org/2001/XMLSchema#integer> .
 <Student/ID-10> <Student#Name> "Venus Williams" .
--- a/D010-1table1primarykey3colums3rows/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D010-1table1primarykey3colums3rows/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,3 +1,5 @@
+@base <http://example.com/base/> .
+
 <Country%20Info/Country%20Code-1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <Country%20Info> .
 <Country%20Info/Country%20Code-1> <Country%20Info#Country%20Code> "1"^^<http://www.w3.org/2001/XMLSchema#integer>  .
 <Country%20Info/Country%20Code-1> <Country%20Info#Name> "Bolivia, Plurinational State of"  .
--- a/D011-M2MRelations/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D011-M2MRelations/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,3 +1,5 @@
+@base <http://example.com/base/> .
+
 <Student/ID-10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <Student> .
 <Student/ID-10> <Student#FirstName> "Venus".
 <Student/ID-10> <Student#ID> "10"^^<http://www.w3.org/2001/XMLSchema#integer> .
--- a/D012-2tables2duplicates0nulls/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D012-2tables2duplicates0nulls/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,3 +1,5 @@
+@base <http://example.com/base/> .
+
 _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <IOUs> .
 _:a <IOUs#fname> "Bob" .
 _:a <IOUs#lname> "Smith" .
--- a/D013-1table1primarykey3columns2rows1nullvalue/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D013-1table1primarykey3columns2rows1nullvalue/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,3 +1,5 @@
+@base <http://example.com/base/> .
+
 <Person/ID-1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <Person> .
 <Person/ID-1> <Person#ID> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
 <Person/ID-1> <Person#Name> "Alice" .
--- a/D014-3tables1primarykey1foreignkey/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D014-3tables1primarykey1foreignkey/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,3 +1,5 @@
+@base <http://example.com/base/> .
+
 <EMP/empno-7369> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <EMP> .
 <EMP/empno-7369> <EMP#empno> "7369"^^<http://www.w3.org/2001/XMLSchema#integer>  .
 <EMP/empno-7369> <EMP#deptno> "10"^^<http://www.w3.org/2001/XMLSchema#integer>  .
--- a/D015-1table3columns1composityeprimarykey3rows2languages/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D015-1table3columns1composityeprimarykey3rows2languages/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,3 +1,5 @@
+@base <http://example.com/base/> .
+
 <Country/Code-BO.Lan-EN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <Country> .
 <Country/Code-BO.Lan-EN> <Country#Code> "BO" .
 <Country/Code-BO.Lan-EN> <Country#Lan> "EN" .
--- a/D016-1table1primarykey10columns3rowsSQLdatatypes/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D016-1table1primarykey10columns3rowsSQLdatatypes/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,3 +1,5 @@
+@base <http://example.com/base/> .
+
 <Patient/ID-10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <Patient> .
 <Patient/ID-10> <Patient#ID> "10"^^<http://www.w3.org/2001/XMLSchema#integer> .
 <Patient/ID-10> <Patient#FirstName> "Monica" .
--- a/D017-I18NnoSpecialChars/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D017-I18NnoSpecialChars/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,3 +1,5 @@
+@base <http://example.com/base/> .
+
 <植物/名-しそ.使用部-葉> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <植物> .
 <植物/名-しそ.使用部-葉> <植物#使用部> "葉" .       
 <植物/名-しそ.使用部-葉> <植物#名>  "しそ" .
--- a/D018-1table1primarykey2columns3rows/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D018-1table1primarykey2columns3rows/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,3 +1,5 @@
+@base <http://example.com/base/> .
+
 _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <Student> .
 _:a <Student#ID> "10"^^<http://www.w3.org/2001/XMLSchema#integer> .
 _:a <Student#Name> "Venus          " .
--- a/D021-2tables2primarykeys1foreignkeyReferencesAllNulls/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D021-2tables2primarykeys1foreignkeyReferencesAllNulls/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,4 +1,5 @@
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@base <http://example.com/base/> .
 
 <Target/PK-1010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <Target> .
 <Target/PK-1010> <Target#PK> 1010 .
--- a/D022-2tables1primarykey1foreignkeyReferencesNoPrimaryKey/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D022-2tables1primarykey1foreignkeyReferencesNoPrimaryKey/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,4 +1,5 @@
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@base <http://example.com/base/> .
 
 _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <Target> .
 _:a <Target#litattr1> 1010 .
--- a/D024-2tables2primarykeys1foreignkeyToARowWithSomeNulls/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D024-2tables2primarykeys1foreignkeyToARowWithSomeNulls/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,4 +1,5 @@
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@base <http://example.com/base/> .
 
 <Target/PK-1010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <Target> .
 <Target/PK-1010> <Target#PK> 1010 .
--- a/D025-3tables3primarykeys3foreignkeys/directGraph.ttl	Tue Apr 17 17:31:13 2012 +0200
+++ b/D025-3tables3primarykeys3foreignkeys/directGraph.ttl	Fri Apr 20 13:09:26 2012 +0200
@@ -1,4 +1,5 @@
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@base <http://example.com/base/> .
 
 <People/ID-7> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <People> .
 <People/ID-7> <People#ID> 7 .
Binary file ts1.zip has changed