You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2012/10/08 21:20:30 UTC

svn commit: r1395732 - in /jena/trunk/jena-sdb: Notes-testing.txt README.txt sdb.ttl sdb1.ttl

Author: andy
Date: Mon Oct  8 19:20:29 2012
New Revision: 1395732

URL: http://svn.apache.org/viewvc?rev=1395732&view=rev
Log:
dos2unix

Modified:
    jena/trunk/jena-sdb/Notes-testing.txt
    jena/trunk/jena-sdb/README.txt
    jena/trunk/jena-sdb/sdb.ttl
    jena/trunk/jena-sdb/sdb1.ttl

Modified: jena/trunk/jena-sdb/Notes-testing.txt
URL: http://svn.apache.org/viewvc/jena/trunk/jena-sdb/Notes-testing.txt?rev=1395732&r1=1395731&r2=1395732&view=diff
==============================================================================
--- jena/trunk/jena-sdb/Notes-testing.txt (original)
+++ jena/trunk/jena-sdb/Notes-testing.txt Mon Oct  8 19:20:29 2012
@@ -1,5 +1,5 @@
-Testing with derby : create DBs:
-
-sdbconfig --sdb testing/StoreDesc/derby-hash.ttl  --create
-sdbconfig --sdb testing/StoreDesc/derby-index.ttl  --create
+Testing with derby : create DBs:
+
+sdbconfig --sdb testing/StoreDesc/derby-hash.ttl  --create
+sdbconfig --sdb testing/StoreDesc/derby-index.ttl  --create
 sdbconfig --sdb testing/StoreDescSimple/derby-layout1.ttl  --create
\ No newline at end of file

Modified: jena/trunk/jena-sdb/README.txt
URL: http://svn.apache.org/viewvc/jena/trunk/jena-sdb/README.txt?rev=1395732&r1=1395731&r2=1395732&view=diff
==============================================================================
--- jena/trunk/jena-sdb/README.txt (original)
+++ jena/trunk/jena-sdb/README.txt Mon Oct  8 19:20:29 2012
@@ -1,6 +1,6 @@
-SDB - SPARQL Database 
-=====================
-
-A database subsystem for Jena, optimized for SPARQL.
-
-Home page: http://jena.apache.org/documentation/sdb/
+SDB - SPARQL Database 
+=====================
+
+A database subsystem for Jena, optimized for SPARQL.
+
+Home page: http://jena.apache.org/documentation/sdb/

Modified: jena/trunk/jena-sdb/sdb.ttl
URL: http://svn.apache.org/viewvc/jena/trunk/jena-sdb/sdb.ttl?rev=1395732&r1=1395731&r2=1395732&view=diff
==============================================================================
--- jena/trunk/jena-sdb/sdb.ttl (original)
+++ jena/trunk/jena-sdb/sdb.ttl Mon Oct  8 19:20:29 2012
@@ -1,54 +1,53 @@
-# Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0
-
-@prefix rdfs:	  <http://www.w3.org/2000/01/rdf-schema#> .
-@prefix rdf:      <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
-@prefix ja:       <http://jena.hpl.hp.com/2005/11/Assembler#> .
-@prefix sdb:      <http://jena.hpl.hp.com/2007/sdb#> .
-
-# For use with Joseki.
-[] ja:loadClass "com.hp.hpl.jena.sdb.SDB" .
-
-<#dataset> rdf:type sdb:DatasetStore ;
-    sdb:store <#store> .
-
-<#store> rdf:type sdb:Store ;
-##    sdb:layout         "layout2/index" ;
-    sdb:layout         "layout2/hash" ;
-    sdb:connection     <#conn> .
-
-<#conn> rdf:type sdb:SDBConnection ;
-
-##     sdb:sdbType        "h2:mem" ;
-##     sdb:sdbName        "mem" ;
-
-##     sdb:sdbType        "h2:file" ;
-##     sdb:sdbName        "DB/H2" ;
-
-     sdb:sdbHost        "localhost" ;
-     sdb:sdbType        "derby" ;
-     sdb:sdbName        "DB/derby" ;
-
-##     ##    sdb:jdbcURL       "jdbc:mysql://localhost/test2-hash?useUnicode=true&characterEncoding=UTF-8" ;
-##     sdb:sdbType       "MySQL" ;
-##     sdb:sdbHost       "localhost" ;
-##     sdb:sdbName       "SDB" ;
-
-##     sdb:sdbType        "postgresql" ;
-##     sdb:sdbHost        "localhost" ;
-##     sdb:sdbName        "SDB" ;
-
-##     sdb:sdbType        "MSSQLServerExpress" ;
-##     sdb:sdbHost        "localhost" ;
-##     sdb:sdbName        "test2-hash" ;
-
-##     sdb:sdbType        "oracle" ;
-##     sdb:sdbHost        "localhost:1521" ;
-##     sdb:sdbName        "XE" ;       # Oracle SID
-##     sdb:driver         "oracle.jdbc.driver.OracleDriver" ;
-
-##     # With OracleXE, it can be useful to use the user/password
-##     # to give multiple stores in the same installation.
-##     sdb:sdbUser        "SDB" ;
-##     sdb:sdbPassword    "password" ;
-
-    .
+# Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0
+
+@prefix rdfs:	  <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix rdf:      <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix ja:       <http://jena.hpl.hp.com/2005/11/Assembler#> .
+@prefix sdb:      <http://jena.hpl.hp.com/2007/sdb#> .
+
+# For use with Joseki.
+[] ja:loadClass "com.hp.hpl.jena.sdb.SDB" .
+
+<#dataset> rdf:type sdb:DatasetStore ;
+    sdb:store <#store> .
+
+<#store> rdf:type sdb:Store ;
+##    sdb:layout         "layout2/index" ;
+    sdb:layout         "layout2/hash" ;
+    sdb:connection     <#conn> .
+
+<#conn> rdf:type sdb:SDBConnection ;
+##     sdb:sdbType        "h2:mem" ;
+##     sdb:sdbName        "mem" ;
+
+##     sdb:sdbType        "h2:file" ;
+##     sdb:sdbName        "DB/H2" ;
+
+     sdb:sdbHost        "localhost" ;
+     sdb:sdbType        "derby" ;
+     sdb:sdbName        "DB/derby" ;
+
+##     ##    sdb:jdbcURL       "jdbc:mysql://localhost/test2-hash?useUnicode=true&characterEncoding=UTF-8" ;
+##     sdb:sdbType       "MySQL" ;
+##     sdb:sdbHost       "localhost" ;
+##     sdb:sdbName       "SDB" ;
+
+##     sdb:sdbType        "postgresql" ;
+##     sdb:sdbHost        "localhost" ;
+##     sdb:sdbName        "SDB" ;
+
+##     sdb:sdbType        "MSSQLServerExpress" ;
+##     sdb:sdbHost        "localhost" ;
+##     sdb:sdbName        "test2-hash" ;
+
+##     sdb:sdbType        "oracle" ;
+##     sdb:sdbHost        "localhost:1521" ;
+##     sdb:sdbName        "XE" ;       # Oracle SID
+##     sdb:driver         "oracle.jdbc.driver.OracleDriver" ;
+
+##     # With OracleXE, it can be useful to use the user/password
+##     # to give multiple stores in the same installation.
+##     sdb:sdbUser        "SDB" ;
+##     sdb:sdbPassword    "password" ;
+
+    .

Modified: jena/trunk/jena-sdb/sdb1.ttl
URL: http://svn.apache.org/viewvc/jena/trunk/jena-sdb/sdb1.ttl?rev=1395732&r1=1395731&r2=1395732&view=diff
==============================================================================
--- jena/trunk/jena-sdb/sdb1.ttl (original)
+++ jena/trunk/jena-sdb/sdb1.ttl Mon Oct  8 19:20:29 2012
@@ -1,18 +1,18 @@
-# Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0
-@prefix sdb:      <http://jena.hpl.hp.com/2007/sdb#> .
-@prefix rdfs:	  <http://www.w3.org/2000/01/rdf-schema#> .
-@prefix rdf:      <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
-@prefix ja:     <http://jena.hpl.hp.com/2005/11/Assembler#> .
-
-## Layout 1 (simple form)
-
-<#store> rdf:type sdb:Store ;
-    sdb:layout         "layout1" ;
-    sdb:connection     <#conn> ;
-    .
-
-<#conn> rdf:type sdb:SDBConnection ;
-    sdb:sdbType        "derby" ;
-    sdb:sdbName        "DB/SDB1" ;
-    sdb:driver         "org.apache.derby.jdbc.EmbeddedDriver" ;
-    .
+# Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0
+@prefix sdb:      <http://jena.hpl.hp.com/2007/sdb#> .
+@prefix rdfs:	  <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix rdf:      <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix ja:     <http://jena.hpl.hp.com/2005/11/Assembler#> .
+
+## Layout 1 (simple form)
+
+<#store> rdf:type sdb:Store ;
+    sdb:layout         "layout1" ;
+    sdb:connection     <#conn> ;
+    .
+
+<#conn> rdf:type sdb:SDBConnection ;
+    sdb:sdbType        "derby" ;
+    sdb:sdbName        "DB/SDB1" ;
+    sdb:driver         "org.apache.derby.jdbc.EmbeddedDriver" ;
+    .