Author: andy
Date: Fri Sep 13 17:32:06 2013
New Revision: 1523022
URL: http://svn.apache.org/r1523022
Log:
Consolidate bits-and-pieces in one place.
Added:
jena/Scratch/AFS/Dev/trunk/src-dev/dev/Jena383_BadPlanOptionals.java
- copied unchanged from r1523014,
jena/Scratch/AFS/Jena-Dev/trunk/src/dev/Jena383_BadPlanOptionals.java
jena/Scratch/AFS/Dev/trunk/src-dev/dev/Jena384_SubstitueFilterOptimize.java
- copied unchanged from r1523014,
jena/Scratch/AFS/Jena-Dev/trunk/src/dev/Jena384_SubstitueFilterOptimize.java
jena/Scratch/AFS/Dev/trunk/src-dev/dev/JenaNNN_FilterEquality.java
- copied unchanged from r1523014,
jena/Scratch/AFS/Jena-Dev/trunk/src/dev/JenaNNN_FilterEquality.java
jena/Scratch/AFS/Dev/trunk/src-dev/dev/ModelReadCloseTestZip.java
- copied, changed from r1523014,
jena/Scratch/AFS/Jena-Dev/trunk/src/dev/ModelReadCloseTest.java
jena/Scratch/AFS/Dev/trunk/src-dev/dev/RunBase.java
- copied unchanged from r1523014,
jena/Scratch/AFS/Jena-Dev/trunk/src/dev/RunBase.java
jena/Scratch/AFS/Dev/trunk/src-dev/dev/TransformFilterEquality2.java
- copied unchanged from r1523014,
jena/Scratch/AFS/Jena-Dev/trunk/src/dev/TransformFilterEquality2.java
jena/Scratch/AFS/Dev/trunk/src-dev/dsg/
- copied from r1523014, jena/Scratch/AFS/Jena-Dev/trunk/src/dsg/
jena/Scratch/AFS/Dev/trunk/src-dev/element/
- copied from r1523014, jena/Scratch/AFS/Jena-Dev/trunk/src/element/
jena/Scratch/AFS/Dev/trunk/src-dev/opexec/
- copied from r1523014, jena/Scratch/AFS/Jena-Dev/trunk/src/opexec/
jena/Scratch/AFS/Dev/trunk/src-dev/reports/
jena/Scratch/AFS/Dev/trunk/src-dev/reports/archive/
- copied from r1523014,
jena/Scratch/AFS/Jena-Dev/trunk/src/reports/archive/
Modified:
jena/Scratch/AFS/Dev/trunk/.classpath
jena/Scratch/AFS/Dev/trunk/src-dev/dev/DevAFS.java
Modified: jena/Scratch/AFS/Dev/trunk/.classpath
URL:
http://svn.apache.org/viewvc/jena/Scratch/AFS/Dev/trunk/.classpath?rev=1523022&r1=1523021&r2=1523022&view=diff
==============================================================================
--- jena/Scratch/AFS/Dev/trunk/.classpath (original)
+++ jena/Scratch/AFS/Dev/trunk/.classpath Fri Sep 13 17:32:06 2013
@@ -10,7 +10,7 @@
<classpathentry kind="var"
path="M2_REPO/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar"
sourcepath="M2_REPO/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1-sources.jar"/>
<classpathentry kind="var"
path="M2_REPO/org/apache/httpcomponents/httpclient/4.1.2/httpclient-4.1.2.jar"
sourcepath="M2_REPO/org/apache/httpcomponents/httpclient/4.1.2/httpclient-4.1.2-sources.jar"/>
<classpathentry kind="var"
path="M2_REPO/org/apache/httpcomponents/httpcore/4.1.3/httpcore-4.1.3.jar"
sourcepath="M2_REPO/org/apache/httpcomponents/httpcore/4.1.3/httpcore-4.1.3-sources.jar"/>
- <classpathentry kind="var"
path="M2_REPO/org/apache/jena/jena-iri/0.9.7-SNAPSHOT/jena-iri-0.9.7-SNAPSHOT.jar"
sourcepath="M2_REPO/org/apache/jena/jena-iri/0.9.7-SNAPSHOT/jena-iri-0.9.7-SNAPSHOT-sources.jar"/>
+ <classpathentry kind="var"
path="M2_REPO/org/apache/jena/jena-iri/1.0.1-SNAPSHOT/jena-iri-1.0.1-SNAPSHOT.jar"
sourcepath="M2_REPO/org/apache/jena/jena-iri/1.0.1-SNAPSHOT/jena-iri-1.0.1-SNAPSHOT-sources.jar"/>
<classpathentry kind="var"
path="M2_REPO/junit/junit/4.11/junit-4.11.jar"
sourcepath="M2_REPO/junit/junit/4.11/junit-4.11-sources.jar"/>
<classpathentry kind="var"
path="M2_REPO/log4j/log4j/1.2.16/log4j-1.2.16.jar"
sourcepath="M2_REPO/log4j/log4j/1.2.16/log4j-1.2.16-sources.jar"/>
<classpathentry kind="var"
path="M2_REPO/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.jar"
sourcepath="M2_REPO/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4-sources.jar"/>
Modified: jena/Scratch/AFS/Dev/trunk/src-dev/dev/DevAFS.java
URL:
http://svn.apache.org/viewvc/jena/Scratch/AFS/Dev/trunk/src-dev/dev/DevAFS.java?rev=1523022&r1=1523021&r2=1523022&view=diff
==============================================================================
--- jena/Scratch/AFS/Dev/trunk/src-dev/dev/DevAFS.java (original)
+++ jena/Scratch/AFS/Dev/trunk/src-dev/dev/DevAFS.java Fri Sep 13 17:32:06 2013
@@ -21,21 +21,4 @@ package dev;
public class DevAFS
{
// De-mess top level directories.
- // http://www.mongodb.org/display/DOCS/BSON
-
- /* Storage toys
- * + FileHeader can contain quite a lot of info. ==> metafile.
- * + Variable length entries
- *
- * Classes:
- * Fix length for logical-physical.
- * Three files:
- * Data file - raw bytes
- * Offset file - (size, location) slots
- * -size => free
- * Free block file - (id, next) for a singly linked list
- * List starts are firts few blocks where (id = -max size ,
next=start)
- * Or: minimum size for a (fiuxed) chunk includes space for the free chain
to be managed
- */
-
}
Copied: jena/Scratch/AFS/Dev/trunk/src-dev/dev/ModelReadCloseTestZip.java (from
r1523014, jena/Scratch/AFS/Jena-Dev/trunk/src/dev/ModelReadCloseTest.java)
URL:
http://svn.apache.org/viewvc/jena/Scratch/AFS/Dev/trunk/src-dev/dev/ModelReadCloseTestZip.java?p2=jena/Scratch/AFS/Dev/trunk/src-dev/dev/ModelReadCloseTestZip.java&p1=jena/Scratch/AFS/Jena-Dev/trunk/src/dev/ModelReadCloseTest.java&r1=1523014&r2=1523022&rev=1523022&view=diff
==============================================================================
--- jena/Scratch/AFS/Jena-Dev/trunk/src/dev/ModelReadCloseTest.java (original)
+++ jena/Scratch/AFS/Dev/trunk/src-dev/dev/ModelReadCloseTestZip.java Fri Sep
13 17:32:06 2013
@@ -66,7 +66,7 @@ import com.hp.hpl.jena.rdf.model.ModelFa
* NOTE: A work-around is to us an InputStream wrapper that delegates all
* calls except close(), which does nothing.
*/
-public class ModelReadCloseTest
+public class ModelReadCloseTestZip
{
@Test
public void TestJenaReaderNTriples()